@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
  --gold-color: #FFD700;
  --gold-dark: #B8860B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(197, 1, 2, 0.3) 100%), 
              url(../images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(197, 1, 2, 0.3);
  border-bottom: 2px solid rgba(197, 1, 2, 0.5);
}

.navbar .logo img {
  height: 50px;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.4);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  box-shadow: 0 6px 25px rgba(197, 1, 2, 0.6);
  transform: translateY(-2px);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(197, 1, 2, 0.8) 0%, rgba(17, 17, 17, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 80px rgba(197, 1, 2, 0.5);
  border: 3px solid #FFD700;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Badge */
.hero-badge-group {
  margin-bottom: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFD700;
  padding: 12px 28px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: #000000;
  font-size: 1.3rem;
}

/* Hero Typography */
.hero-content h1 {
  font-size: 4.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  color: #E0E0E0;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Hero Description Box */
.hero-description-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
  margin-bottom: 30px;
}

.hero-description {
  color: #E8E8E8;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-description:last-child {
  margin-bottom: 0;
}

.hero-cta-text {
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 5px;
  border: 2px solid #FFD700;
  width: fit-content;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: none;
  border-radius: 45px 0 0 45px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-hero-primary i {
  font-size: 1.4rem;
}

.btn-hero-secondary {
  padding: 16px 40px;
  font-size: 1.1rem;
  background: transparent;
  color: #FFD700;
  border: none;
  border-radius: 0 45px 45px 0;
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-hero-secondary i {
  font-size: 1.4rem;
}

/* Hero Features Side */
.hero-features-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInRight 1s ease-out;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hero-feature-card:hover {
  transform: translateX(10px);
  border-color: #FFD700;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hero-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 2px solid #FFD700;
  flex-shrink: 0;
}

.hero-feature-icon i {
  font-size: 1.8rem;
  color: #FFD700;
  display: inline-block;
  line-height: 1;
  font-weight: normal;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-feature-text strong {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
}

.hero-feature-text span {
  font-size: 0.9rem;
  color: #AAAAAA;
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  border-color: rgba(197, 1, 2, 0.3);
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: 10%;
  border-color: rgba(255, 215, 0, 0.2);
  animation-delay: 2s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 15%;
  border-color: rgba(197, 1, 2, 0.2);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translateY(-30px) translateX(20px) rotate(120deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(30px) translateX(-20px) rotate(240deg);
    opacity: 0.5;
  }
}

.welcome-bonus {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.welcome-bonus-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bonus-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.bonus-number-badge {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.bonus-header h2 {
  font-size: 3.5rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bonus-header .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-subtitle {
  font-size: 1.5rem;
  color: #FFD700;
  font-weight: 700;
}

.bonus-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.bonus-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bonus-intro-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 35px;
  border-radius: 20px;
  border-left: 5px solid #FFD700;
}

.bonus-intro-box p {
  font-size: 1.2rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.bonus-features {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.bonus-features h3 {
  font-size: 1.3rem;
  color: #FFD700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-features h3 i {
  font-size: 1.5rem;
}

.bonus-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-features-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.bonus-features-list li:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid #FFD700;
  border-radius: 50%;
}

.feature-icon-box i {
  font-size: 1.8rem;
  color: #FFD700;
}

.feature-text-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-text-box strong {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
}

.feature-text-box span {
  font-size: 1rem;
  color: #AAAAAA;
}

.bonus-value-box {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.bonus-value-box i {
  font-size: 2rem;
  color: #FFD700;
  flex-shrink: 0;
}

.bonus-value-box p {
  font-size: 1.1rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.how-to-claim {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 35px;
  position: sticky;
  top: 100px;
}

.how-to-claim-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.how-to-claim-header i {
  font-size: 2rem;
  color: #FFD700;
}

.how-to-claim-header h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0;
}

.claim-steps {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.claim-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #FFD700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.claim-steps li:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.step-content strong {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 700;
}

.step-content span {
  font-size: 0.95rem;
  color: #AAAAAA;
}

.claim-guarantee {
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.claim-guarantee i {
  font-size: 1.8rem;
  color: #FFD700;
  flex-shrink: 0;
}

.claim-guarantee p {
  font-size: 1rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.no-deposit-bonus {
  margin: 100px 0;
  position: relative;
  padding: 60px 0;
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.no-deposit-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.no-deposit-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.no-deposit-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.no-deposit-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.no-deposit-intro-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 35px;
  border-radius: 20px;
  border-left: 5px solid #FFD700;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.no-deposit-intro-box i {
  font-size: 3rem;
  color: #FFD700;
  flex-shrink: 0;
}

.no-deposit-intro-box p {
  font-size: 1.2rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.no-deposit-benefits {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.no-deposit-benefits h3 {
  font-size: 1.4rem;
  color: #FFD700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.no-deposit-benefits h3 i {
  font-size: 1.6rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border: 3px solid #FFD700;
  border-radius: 50%;
}

.benefit-icon i {
  font-size: 2rem;
  color: #FFD700;
}

.benefit-card h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #AAAAAA;
  line-height: 1.6;
  margin: 0;
}

.no-deposit-alert {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.alert-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid #FFD700;
  border-radius: 50%;
}

.alert-icon i {
  font-size: 2rem;
  color: #FFD700;
}

.alert-content h4 {
  font-size: 1.4rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 10px;
}

.alert-content p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.no-deposit-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
}

.sidebar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border: 3px solid #FFD700;
  border-radius: 50%;
}

.sidebar-icon i {
  font-size: 3rem;
  color: #FFD700;
}

.sidebar-box h3 {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
}

.sidebar-box p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.btn-sidebar {
  width: 100%;
  padding: 18px 35px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-sidebar:hover {
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-sidebar i {
  font-size: 1.5rem;
}

/* Common Section Styles */
.free-spins-section,
.reload-bonus-section,
.cashback-section,
.loyalty-section,
.seasonal-section,
.payment-bonus-section,
.terms-section,
.updates-section,
.responsible-section,
.standout-section {
  margin: 80px 0;
  padding: 50px 0;
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
}

.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.3rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.features-box {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.features-box h3 {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-box h3 i {
  font-size: 1.8rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 3px solid #FFD700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.feature-list li i {
  color: #FFD700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-list li {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
}

.highlights-box {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlights-box p {
  font-size: 1.1rem;
  color: #E8E8E8;
  line-height: 1.8;
  margin: 0;
}

.highlights-box p strong {
  color: #FFD700;
  font-weight: 700;
}

.final-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
  border: 3px solid #FFD700;
  padding: 30px;
}

/* Cashback Workflow */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #FFD700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.workflow-step .step-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.workflow-step p {
  font-size: 1.1rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
}

/* Loyalty Benefits Grid */
.loyalty-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.loyalty-benefit {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.loyalty-benefit:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.loyalty-benefit i {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 12px;
  display: block;
}

.loyalty-benefit p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Terms Grid */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.term-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.term-card:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.term-card i {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 15px;
  display: block;
}

.term-card h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 10px;
}

.term-card p {
  font-size: 0.95rem;
  color: #AAAAAA;
  line-height: 1.6;
  margin: 0;
}

/* Standout Grid */
.standout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.standout-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
}

.standout-card:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.standout-card i {
  font-size: 2.5rem;
  color: #FFD700;
  flex-shrink: 0;
}

.standout-card p {
  font-size: 1.05rem;
  color: #E8E8E8;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.final-thoughts {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 60px 0;
  gap: 20px;
  position: relative;
}

.final-thoughts-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.final-thoughts-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(197, 1, 2, 0.1), transparent);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.final-thoughts-banner:hover::before {
  opacity: 0.3;
}

.final-thoughts-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.final-thoughts-banner:hover img {
  transform: scale(1.05);
}

.final-thoughts-intro {
  flex: 1;
  max-width: 50%;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.final-thoughts-intro h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-thoughts-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.why-choose {
  display: block;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px 0;
}

.why-choose-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  padding: 50px 40px;
  border-radius: 20px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.why-choose-intro h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.why-choose-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.4s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  transition: transform 0.5s ease;
  transform: translate(-50%, -50%) scale(0);
}

.why-choose-card:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.why-choose-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 10px 30px rgba(197, 1, 2, 0.3);
}

.why-choose-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.why-choose-card i {
  display: block;
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--gold-color);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--accent-primary);
}

.games {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 50px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.games-intro {
  text-align: center;
}

.games-intro h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.game-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
  position: relative;
  cursor: pointer;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 40px rgba(197, 1, 2, 0.4);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.game-card:hover img {
  transform: scale(1.1);
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(197, 1, 2, 0.4);
}

.btn-play:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  box-shadow: 0 6px 25px rgba(197, 1, 2, 0.6);
  transform: translateY(-2px);
}

.faq {
  margin: 60px 0;
  padding: 50px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-radius: 15px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
  position: relative;
}

.faq-item::before {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--gold-color);
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-item.active::before {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 5px 20px rgba(197, 1, 2, 0.2);
  transform: translateX(5px);
}

.faq-item.active {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 10px 30px rgba(197, 1, 2, 0.3);
}

.faq-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  padding-right: 40px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  opacity: 0;
  padding: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  padding-top: 15px;
}

.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
  padding: 60px 20px 40px;
  margin-top: 60px;
  border-top: 3px solid rgba(197, 1, 2, 0.5);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  color: var(--gold-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold-color);
  transform: translateX(5px);
}

.footer-column p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-disclaimer {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
  color: var(--text-secondary);
}

.hero-meta-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-meta-info p {
  color: #AAAAAA;
  font-size: 0.9rem;
  margin: 0;
}

.content-source {
  margin-top: 15px;
  padding: 10px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
}

.content-source small {
  color: #AAAAAA;
}

.trust-meta {
  margin-top: 10px;
  text-align: center;
}

.footer-copy a {
  color: var(--gold-color);
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-features-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .welcome-bonus {
    margin: 60px 0;
    padding: 40px 0;
  }

  .bonus-header h2 {
    font-size: 2.5rem;
  }

  .bonus-subtitle {
    font-size: 1.2rem;
  }

  .bonus-content-grid {
    grid-template-columns: 1fr;
  }

  .how-to-claim {
    position: static;
  }

  .free-spins-section,
  .reload-bonus-section,
  .cashback-section,
  .loyalty-section,
  .seasonal-section,
  .payment-bonus-section,
  .terms-section,
  .updates-section,
  .responsible-section,
  .standout-section {
    margin: 60px 0;
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .bonus-subtitle {
    font-size: 1.1rem;
  }

  .intro-text {
    font-size: 1.15rem;
  }

  .features-box {
    padding: 30px;
  }

  .features-box h3 {
    font-size: 1.3rem;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .loyalty-benefits-grid {
    grid-template-columns: 1fr;
  }

  .standout-grid {
    grid-template-columns: 1fr;
  }

  .final-thoughts {
    flex-direction: column;
  }

  .final-thoughts-banner,
  .final-thoughts-intro {
    max-width: 100%;
    border-radius: 20px;
  }

  .final-thoughts-intro {
    padding: 40px 30px;
  }

  .final-thoughts-intro h3 {
    font-size: 2rem;
  }

  .why-choose-details {
    padding: 40px 30px;
  }

  .why-choose-intro h2 {
    font-size: 2.2rem;
  }

  .why-choose-grid {
    flex-direction: column;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games {
    padding: 40px 30px;
  }

  .games-intro h3 {
    font-size: 2.2rem;
  }

  .faq {
    padding: 40px 30px;
  }

  .faq h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar .auth-buttons .btn {
    flex: 1;
    max-width: 200px;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px 0;
    margin: 20px 0;
  }

  .hero-content-wrapper {
    padding: 0 30px;
    gap: 35px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-description-box {
    padding: 25px;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-cta-group {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .btn-hero-primary {
    flex: 1;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 45px 0 0 45px;
  }

  .btn-hero-secondary {
    flex: 1;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 0 45px 45px 0;
  }

  .hero-features-side {
    grid-template-columns: 1fr;
  }

  .hero-feature-card {
    padding: 20px;
  }

  .hero-feature-icon {
    width: 50px;
    height: 50px;
  }

  .hero-feature-icon i {
    font-size: 1.5rem;
  }

  .final-thoughts-intro {
    padding: 30px 20px;
  }

  .final-thoughts-intro h3 {
    font-size: 1.8rem;
  }

  .why-choose-intro h2 {
    font-size: 2rem;
  }

  .why-choose-card {
    min-width: 100%;
  }

  .why-choose-card i {
    font-size: 2.5rem;
  }

  .games {
    padding: 30px 20px;
  }

  .games-intro h3 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .faq {
    padding: 30px 20px;
  }

  .faq h3 {
    font-size: 2rem;
  }

  .faq-item h4 {
    font-size: 1.1rem;
    padding-right: 35px;
  }

  .footer-container {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .navbar-menu li a {
    font-size: 1rem;
    padding: 6px 10px;
  }

  .hero {
    padding: 30px 0;
    margin: 15px 0;
  }

  .hero-content-wrapper {
    padding: 0 20px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .hero-badge i {
    font-size: 1.1rem;
  }

  .hero-description-box {
    padding: 20px 15px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-cta-group {
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 12px;
    width: 100%;
  }

  .btn-hero-primary {
    width: 100%;
    padding: 16px 35px;
    font-size: 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #FFD700;
  }

  .btn-hero-secondary {
    width: 100%;
    padding: 16px 35px;
    font-size: 1rem;
    border-radius: 50px;
    background: transparent;
    border: 3px solid #FFD700;
  }

  .hero-feature-card {
    padding: 18px;
    gap: 15px;
  }

  .hero-feature-icon {
    width: 45px;
    height: 45px;
  }

  .hero-feature-icon i {
    font-size: 1.3rem;
  }

  .hero-feature-text strong {
    font-size: 0.95rem;
  }

  .hero-feature-text span {
    font-size: 0.8rem;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    display: none;
  }

  .welcome-bonus {
    margin: 40px 0;
    padding: 30px 0;
  }

  .bonus-header {
    margin-bottom: 40px;
  }

  .bonus-number-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .bonus-header h2 {
    font-size: 1.8rem;
  }

  .bonus-subtitle {
    font-size: 1.1rem;
  }

  .bonus-content-grid {
    gap: 30px;
  }

  .bonus-intro-box {
    padding: 25px;
  }

  .bonus-intro-box p {
    font-size: 1.05rem;
  }

  .bonus-features {
    padding: 25px;
  }

  .bonus-features h3 {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .bonus-features-list li {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .feature-icon-box {
    margin: 0 auto;
  }

  .feature-text-box {
    text-align: center;
  }

  .how-to-claim {
    padding: 25px;
  }

  .how-to-claim-header {
    flex-direction: column;
    text-align: center;
  }

  .how-to-claim-header h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-content strong {
    font-size: 1rem;
  }

  .step-content span {
    font-size: 0.85rem;
  }

  .claim-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .claim-guarantee p {
    font-size: 0.9rem;
  }

  .bonus-value-box {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .bonus-value-box i {
    margin: 0 auto;
  }

  .final-thoughts-banner img,
  .final-thoughts-intro {
    border-radius: 15px;
  }

  .final-thoughts-intro {
    padding: 25px 15px;
  }

  .free-spins-section,
  .reload-bonus-section,
  .cashback-section,
  .loyalty-section,
  .seasonal-section,
  .payment-bonus-section,
  .terms-section,
  .updates-section,
  .responsible-section,
  .standout-section {
    margin: 40px 0;
    padding: 30px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .bonus-subtitle {
    font-size: 1rem;
  }

  .intro-text {
    font-size: 1.05rem;
  }

  .features-box {
    padding: 25px 20px;
  }

  .features-box h3 {
    font-size: 1.15rem;
    flex-direction: column;
    text-align: center;
  }

  .features-box h3 i {
    font-size: 1.4rem;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-list li {
    padding: 12px;
    font-size: 0.95rem;
  }

  .highlights-box {
    padding: 20px 15px;
  }

  .highlights-box p {
    font-size: 1rem;
  }

  .workflow-steps {
    gap: 15px;
  }

  .workflow-step {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .workflow-step .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .workflow-step p {
    font-size: 1rem;
  }

  .loyalty-benefit {
    padding: 20px 15px;
  }

  .loyalty-benefit i {
    font-size: 2.5rem;
  }

  .loyalty-benefit p {
    font-size: 1rem;
  }

  .term-card {
    padding: 20px 15px;
  }

  .term-card i {
    font-size: 2.5rem;
  }

  .term-card h4 {
    font-size: 1.15rem;
  }

  .term-card p {
    font-size: 0.9rem;
  }

  .standout-card {
    padding: 20px 15px;
    flex-direction: column;
    text-align: center;
  }

  .standout-card i {
    font-size: 2rem;
  }

  .standout-card p {
    font-size: 1rem;
  }

  .final-thoughts-intro h3 {
    font-size: 1.5rem;
  }

  .final-thoughts-intro p {
    font-size: 1rem;
  }

  .why-choose-details {
    padding: 30px 15px;
  }

  .why-choose-intro h2 {
    font-size: 1.8rem;
  }

  .why-choose-intro p {
    font-size: 1.1rem;
  }

  .why-choose-card {
    min-width: 100%;
    padding: 20px 15px;
  }

  .why-choose-card i {
    font-size: 2rem;
  }

  .why-choose-card h4 {
    font-size: 1.1rem;
  }

  .games {
    padding: 25px 15px;
  }

  .games-intro h3 {
    font-size: 1.6rem;
  }

  .games-intro p {
    font-size: 1rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .game-card {
    padding: 15px;
  }

  .faq {
    padding: 25px 15px;
  }

  .faq h3 {
    font-size: 1.6rem;
  }

  .faq-item {
    padding: 20px 15px;
  }

  .faq-item h4 {
    font-size: 1rem;
    padding-right: 30px;
  }

  .faq-item::before {
    right: 15px;
    font-size: 1.5rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }

  .footer {
    padding: 40px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-copy p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
}
