/* CSS Variables for consistent theming */
:root {
  --color-primary: #f5d742;
  --color-primary-dark: #e6c82d;
  --color-secondary: #333333;
  --color-dark: #131313;
  --color-text: #fff;
  --color-text-dark: #333;
  --color-background: #1a1a1a;
  --color-card-bg: #222222;
  --color-accent: #e74c3c;
  --font-main: 'Montserrat', sans-serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --border-radius: 5px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
}

.btn-login {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn-register {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

.btn-bonus {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.btn-cta {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  margin-top: 2rem;
}

.btn-claim {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
}

.btn:hover, .btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
  outline: none;
}

.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Header Styles */
.main-header {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--color-primary);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 4rem;
}

.nav-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Hero Banner */
.hero-banner {
  background-image: url('assets/banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.btn-hero {
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  min-width: 15rem;
}

.btn-hero img {
  width: 2.2rem;
  height: 2.2rem;
}

/* Stats Section */
.stats-section {
  background-color: var(--color-dark);
  padding: 5rem 0;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-value {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.8rem;
  font-weight: 600;
}

/* Section Titles */
.section-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 3px;
  background-color: var(--color-primary);
}

/* Gaming Experience Section */
.gaming-experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(245, 215, 66, 0.3);
}

.experience-card h3 {
    color: #f5d742;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Performance Card */
.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.rating-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #f5d742;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.rating-value {
    color: #f5d742;
    font-size: 1.1rem;
    font-weight: 500;
}

.rating-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(245, 215, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    border: 2px solid #f5d742;
}

.rating-percentage {
    color: #f5d742;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Games Card */
.games-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-item h4 {
    color: #f5d742;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.game-count {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.game-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Payment Card */
.payment-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.payment-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-section h4 {
    color: #f5d742;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.token-list, .method-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.token-list li, .method-list li {
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.token-list li:last-child, .method-list li:last-child {
    border-bottom: none;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.detail-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.detail-value {
    color: #f5d742;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-card h3 {
        font-size: 1.6rem;
    }
    
    .rating-label, .rating-value, .game-count, .game-description,
    .token-list li, .method-list li, .detail-label, .detail-value {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
    }
    
    .experience-card h3 {
        font-size: 1.4rem;
    }
    
    .game-item h4, .payment-section h4 {
        font-size: 1.2rem;
    }
}

/* Game Categories */
.game-categories {
  padding: 6rem 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.category-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.category-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  min-height: 15rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
}

.category-card h3 {
  padding: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

/* Bonus Section */
.bonus-section {
  padding: 6rem 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.bonus-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.bonus-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.bonus-img2 {
  width: 100%;
  height: 60rem;
  object-fit: cover;
}

.bonus-content {
  padding: 2rem;
  text-align: center;
}

.bonus-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.bonus-content p {
  margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
  background-color: var(--color-dark);
  padding: 5rem 0;
  border-top: 2px solid var(--color-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 4rem;
}

.footer-logo-img {
  height: 4rem;
  margin-bottom: 1.5rem;
}

.footer-links h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a:hover {
  color: var(--color-primary);
  padding-left: 0.5rem;
}

/* Accessibility and Focus Styles */
a:focus, button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .features-grid, 
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .main-header .container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .stat-value {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f5d742, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 215, 66, 0.1);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f5d742;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(245, 215, 66, 0.1);
    border-color: rgba(245, 215, 66, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.why-feature:hover::after {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #f5d742;
    transition: all 0.3s ease;
}

.why-feature:hover .why-icon {
    transform: scale(1.1);
    color: #ffd700;
}

.why-feature h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #f5d742;
    transition: all 0.3s ease;
    font-weight: 600;
}

.why-feature:hover h3 {
    color: #ffd700;
}

.why-feature p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.why-feature:hover p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .why-feature {
        padding: 2rem;
        min-height: 300px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-feature h3 {
        font-size: 1.8rem;
    }
    
    .why-feature p {
        font-size: 1.2rem;
    }
}

/* About Section */
.about-section {
  padding: 7rem 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 215, 66, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  width: 100%;
  max-width: 25rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.about-shape {
  position: absolute;
  width: 30rem;
  height: 30rem;
  background: linear-gradient(135deg, rgba(245, 215, 66, 0.2) 0%, rgba(245, 215, 66, 0.05) 100%);
  border-radius: 50%;
  z-index: 1;
}

.about-text {
  color: var(--color-text);
}

.about-text p {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  line-height: 1.8;
}

.about-text p:last-of-type {
  margin-bottom: 3rem;
}

.about-text .btn {
  margin-top: 1rem;
}

@media screen and (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-image {
    margin-bottom: 3rem;
  }
  
  .about-logo {
    max-width: 20rem;
  }
  
  .about-text .btn {
    margin: 0 auto;
    display: table;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .features-grid, 
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(245, 215, 66, 0.15) 0%, transparent 70%);
}

.cta-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 4rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.btn-primary-large {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-size: 2rem;
  padding: 1.5rem 4rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(245, 215, 66, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(245, 215, 66, 0.4);
}

@media screen and (max-width: 768px) {
  .cta-content h2 {
    font-size: 3.2rem;
  }
  
  .btn-primary-large {
    font-size: 1.8rem;
    padding: 1.2rem 3rem;
  }
}

@media screen and (max-width: 576px) {
  .cta-section {
    padding: 6rem 0;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  .cta-content p {
    font-size: 1.6rem;
  }
}

/* Login Page Styles */
.login-section {
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.login-container {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
  background-color: rgba(34, 34, 34, 0.95);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 4rem;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.login-header {
  text-align: center;
  margin-bottom: 3rem;
}

.login-header h1 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.login-header p {
  color: var(--color-text);
  font-size: 1.6rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.6rem;
  color: var(--color-text);
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(245, 215, 66, 0.2);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.password-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.remember-me input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  accent-color: var(--color-primary);
}

.forgot-password {
  color: var(--color-primary);
  font-size: 1.4rem;
  transition: var(--transition);
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.register-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.register-link:hover {
  text-decoration: underline;
}

.login-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.decoration-element {
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 66, 0.08) 0%, transparent 70%);
  top: -20rem;
  right: -20rem;
}

.decoration-element::after {
  content: '';
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 66, 0.08) 0%, transparent 70%);
  bottom: -35rem;
  left: -15rem;
}

@media screen and (max-width: 576px) {
  .login-container {
    padding: 3rem 2rem;
  }
  
  .login-header h1 {
    font-size: 2.5rem;
  }
  
  .password-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Register Page Styles */
.register-section {
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.register-container {
  position: relative;
  z-index: 1;
  max-width: 70rem;
  margin: 0 auto;
  background-color: rgba(34, 34, 34, 0.95);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 4rem;
  border-top: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
}

.register-header {
  text-align: center;
  margin-bottom: 3rem;
}

.register-header h1 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.register-header p {
  color: var(--color-text);
  font-size: 1.6rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.terms-checkbox input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-primary);
}

.terms-checkbox label {
  font-size: 1.4rem;
  line-height: 1.5;
}

.terms-link {
  color: var(--color-primary);
  transition: var(--transition);
}

.terms-link:hover {
  text-decoration: underline;
}

.bonus-offer {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: rgba(245, 215, 66, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  border-left: 3px solid var(--color-primary);
}

.offer-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.offer-content h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.offer-content p {
  font-size: 1.4rem;
  color: var(--color-text);
  line-height: 1.5;
}

.register-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.login-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
}

.login-link:hover {
  text-decoration: underline;
}

.register-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .bonus-offer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .register-container {
    padding: 3rem 2rem;
  }
  
  .register-header h1 {
    font-size: 2.5rem;
  }
}

/* Bonus Page Styles */
.bonus-hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.bonus-hero-content {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
}

.bonus-hero-content h1 {
  font-size: 4.8rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.bonus-hero-content p {
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 3rem;
}

.main-bonuses-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.main-bonuses-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/treasure-bg.png') center/cover no-repeat;
  opacity: 0.05;
  z-index: 1;
}

.main-bonuses-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  color: #f5d742;
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5d742, transparent);
}

/* Featured Bonus Card */
.featured-bonus {
  margin-bottom: 60px;
  transform: scale(1.02);
}

.main-bonus-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.main-bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(245, 215, 66, 0.3);
}

.bonus-card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
}

.bonus-card-header {
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-card-header h3 {
    font-size: 2rem;
    color: #f5d742;
    margin: 0;
    line-height: 1.3;
}

.bonus-description {
    font-size: 1.3rem;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.bonus-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.bonus-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1.2rem;
}

.bonus-features li span {
    color: #f5d742;
    font-weight: 600;
    font-size: 1.2rem;
}

.bonus-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-primary-large {
    background: #f5d742;
    color: #1a1a1a;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid #f5d742;
    text-align: center;
    min-width: 250px;
}

.btn-claim {
    background: #f5d742;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #f5d742;
    text-align: center;
    min-width: 200px;
}

.bonus-terms-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Featured Bonus Specific Styles */
.featured-bonus .bonus-card-content {
    padding: 3rem;
}

.featured-bonus .bonus-card-header h3 {
    font-size: 2.5rem;
}

.featured-bonus .bonus-description {
    font-size: 1.5rem;
}

.featured-bonus .bonus-image {
    height: 400px;
    margin: 0 -3rem;
    width: calc(100% + 6rem);
    border-radius: 0;
}

.featured-bonus .bonus-features li {
    font-size: 1.3rem;
    padding: 1.2rem 1.8rem;
}

.featured-bonus .bonus-features li span {
    font-size: 1.3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bonus-card-content {
        padding: 1.5rem;
    }

    .bonus-card-header h3 {
        font-size: 1.6rem;
    }

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

    .bonus-image {
        height: 200px;
    }

    .bonus-features li {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .bonus-features li span {
        font-size: 1rem;
    }

    .featured-bonus .bonus-card-content {
        padding: 1.5rem;
    }

    .featured-bonus .bonus-card-header h3 {
        font-size: 1.8rem;
    }

    .featured-bonus .bonus-description {
        font-size: 1.2rem;
    }

    .featured-bonus .bonus-image {
        height: 250px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }

    .featured-bonus .bonus-features li {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
    }

    .featured-bonus .bonus-features li span {
        font-size: 1.1rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 200px;
    }

    .btn-claim {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Bonuses Grid */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bonus-card-body {
    grid-template-columns: 1fr;
  }
  
  .bonus-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .main-bonuses-section {
    padding: 60px 0;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .bonus-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .bonus-features {
    grid-template-columns: 1fr;
  }
  
  .bonus-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary-large {
    width: 100%;
  }
}

/* VIP Program Section */
.vip-program-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.vip-info h3 {
    font-size: 3.5rem;
    color: #f5d742;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vip-info p {
    text-align: center;
    font-size: 1.5rem;
    color: #e0e0e0;
    max-width: 1000px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.vip-tiers-container {
    margin: 4rem 0;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 2rem;
}

.vip-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f5d742, #ffd700);
}

.tier-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tier-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.vip-tier h4 {
    font-size: 2.5rem;
    color: #f5d742;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tier-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tier-benefit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.benefit-text {
    color: #fff;
    font-size: 1.4rem;
}

.btn-cta {
    display: block;
    width: fit-content;
    margin: 4rem auto 0;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    background: linear-gradient(45deg, #f5d742, #ffd700);
    color: #1a1a1a;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 215, 66, 0.4);
}

@media (max-width: 768px) {
    .vip-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vip-info h3 {
        font-size: 2.5rem;
    }

    .vip-info p {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .vip-tier {
        padding: 2rem;
    }

    .tier-icon {
        font-size: 3.5rem;
    }

    .vip-tier h4 {
        font-size: 2rem;
    }

    .benefit-text {
        font-size: 1.2rem;
    }

    .btn-cta {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }
}

/* Promotion Terms Section */
.promotion-terms-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.promotion-terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 215, 66, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.terms-content {
    position: relative;
    z-index: 1;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.term-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 215, 66, 0.1);
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5d742, transparent);
}

.term-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.term-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(245, 215, 66, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.term-card:hover .term-icon {
    transform: scale(1.1);
}

.term-card h3 {
    font-size: 1.8rem;
    color: #f5d742;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.term-card a {
    color: #f5d742;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.term-card a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .term-card {
        padding: 2rem;
    }

    .term-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }

    .term-card h3 {
        font-size: 1.6rem;
    }

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

/* Security Section */
.security-section {
  padding: 7rem 0;
  background-color: var(--color-dark);
  position: relative;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.security-content {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin: 0 auto;
}

.security-intro {
  font-size: 1.8rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  border-left: 3px solid var(--color-primary);
}

.security-feature:hover {
  transform: translateY(-5px);
  background-color: rgba(34, 34, 34, 0.9);
}

.security-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 215, 66, 0.1);
  border-radius: 50%;
  padding: 1.2rem;
}

.security-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

.security-text h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.security-text p {
  font-size: 1.6rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* Comparison Table */
.comparison-table-container {
  margin-top: 5rem;
}

.comparison-title {
  font-size: 2.6rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 80rem;
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-weight: 700;
  text-align: left;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  border-top-left-radius: var(--border-radius);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--border-radius);
}

.comparison-table td {
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(odd) {
  background-color: rgba(34, 34, 34, 0.7);
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(34, 34, 34, 0.5);
}

.highlighted-row {
  background-color: rgba(245, 215, 66, 0.1) !important;
}

.rank {
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 1.4rem;
}

.rank-1 {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

.rank-2 {
  background-color: #bdc3c7;
  color: var(--color-text-dark);
}

.rank-3 {
  background-color: #cd7f32;
  color: var(--color-text-dark);
}

.competitors-text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.btn-claim-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-claim-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .security-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .security-icon {
    margin-bottom: 1.5rem;
  }

  .comparison-table-wrapper {
    padding-bottom: 0.5rem;
  }
}

/* Join Adventure Section */
.join-adventure-container {
  margin-top: 6rem;
  padding: 4rem;
  background-color: rgba(245, 215, 66, 0.05);
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  border: 1px solid rgba(245, 215, 66, 0.2);
  overflow: hidden;
}

.join-adventure-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 215, 66, 0.2), transparent 70%);
  z-index: 0;
}

.adventure-title {
  font-size: 3.2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.adventure-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 90rem;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.adventure-cta {
  position: relative;
  z-index: 1;
}

.btn-adventure {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-size: 1.8rem;
  padding: 1.2rem 3.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-adventure:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .join-adventure-container {
    padding: 3rem 2rem;
  }
  
  .adventure-title {
    font-size: 2.8rem;
  }
  
  .adventure-text {
    font-size: 1.6rem;
  }
} 

.games-hero-section {
  padding: 60px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.games-hero-section .games-hero-content h1 {
  font-size: 36px;
  color: #f5d742;
  margin-bottom: 20px;
}

.games-hero-section .games-hero-content p {
  font-size: 16px;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Game Categories */
.game-categories-section {
  background: #0f0f0f;
  padding: 80px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.game-category-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.game-category-card:hover {
  transform: translateY(-4px);
}

.game-category-card img.game-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}

.game-category-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.game-category-card p {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

/* Reuse existing .btn class from your CSS for buttons */

/* RTP Highlight Section */
.rtp-highlight-section {
  background: #161616;
  padding: 80px 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.highlight-card {
  background: #1e1e1e;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #2c2c2c;
  color: #eee;
  transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 0 12px rgba(245, 215, 66, 0.2);
}

.highlight-card h4 {
  color: #f5d742;
  font-size: 16px;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #bbb;
  margin-bottom: 8px;
}

.game-providers-section {
  background-color: #0f0f0f;
  padding: 80px 0;
  text-align: center;
}

.provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 20px;
}

.provider-logos img {
  max-width: 120px;
  height: auto;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.provider-logos img:hover {
  transform: scale(1.05);
}

.provider-description {
  font-size: 14px;
  color: #aaa;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.withdrawal-guide-section {
  background-color: #151515;
  padding: 80px 0;
  text-align: center;
}

.withdrawal-description {
  font-size: 15px;
  color: #ccc;
  max-width: 720px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.withdrawal-steps ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 480px;
  text-align: left;
}

.withdrawal-steps ul li {
  font-size: 14px;
  color: #ddd;
  padding: 10px 0;
  border-bottom: 1px solid #2c2c2c;
}

.withdrawal-steps ul li strong {
  color: #f5d742;
  margin-right: 8px;
}

.join-cta-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

.join-cta-box {
  background: #262626;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.join-cta-box h2 {
  font-size: 24px;
  color: #f5d742;
  margin-bottom: 20px;
}

.join-cta-box p {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 30px;
}

.join-cta-box .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* === VIP Hero Section === */
.vip-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.vip-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/vip-pattern.png') repeat;
    opacity: 0.05;
    animation: patternFloat 20s linear infinite;
}

.vip-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.vip-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f5d742 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(245, 215, 66, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.vip-badge i {
    font-size: 4rem;
    color: #1a1a1a;
}

.vip-hero-content h1 {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vip-hero-content .highlight {
    color: #f5d742;
    position: relative;
    display: inline-block;
}

.vip-hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5d742;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.vip-hero-content:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-subtitle {
    font-size: 2rem;
    color: #f5d742;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.4rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.vip-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #f5d742;
    background: rgba(245, 215, 66, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature:hover i {
    background: #f5d742;
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(245, 215, 66, 0.4);
}

.feature span {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #f5d742 0%, #ffd700 100%);
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 215, 66, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 215, 66, 0.4);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(245, 215, 66, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(245, 215, 66, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(245, 215, 66, 0.3);
    }
}

@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 768px) {
    .vip-hero-section {
        padding: 6rem 0;
    }

    .vip-badge {
        width: 100px;
        height: 100px;
    }

    .vip-badge i {
        font-size: 3rem;
    }

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

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .vip-features {
        flex-direction: column;
        gap: 2rem;
    }

    .feature i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* === Tier Grid === */
.vip-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.vip-tier-card {
    background: #161616;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease;
}

.vip-tier-card:hover {
    transform: translateY(-6px);
}

.vip-tier-card h3 {
    font-size: 22px;
    color: #f2b000;
    margin-bottom: 12px;
}

.vip-tier-card ul {
    list-style: none;
    padding: 0;
    color: #aaa;
}

.vip-tier-card ul li {
    margin: 8px 0;
}

/* === VIP Perks Section === */
.vip-perks-section {
    background: #0d0d0d;
    padding: 60px 20px;
}

.vip-perks-section .highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vip-perks-section .highlight-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 10px;
    color: #ddd;
}

/* === VIP Progress Section === */
.vip-progress-section {
    padding: 60px 20px;
    background: #121212;
    color: #eee;
}

.progress-text {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
}

.progress-steps ul {
    max-width: 600px;
    margin: auto;
    padding-left: 20px;
    list-style-type: decimal;
    color: #bbb;
}

.progress-steps ul li {
    margin: 10px 0;
}

/* === CTA Section === */
.vip-cta-section {
    background: linear-gradient(135deg, #191919, #111);
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.vip-cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.vip-cta-box p {
    font-size: 17px;
    color: #ccc;
    margin-bottom: 30px;
}

.vip-cta-box .cta-buttons a {
    margin: 0 10px;
}

/* === Tournament Hero Section === */
.tournament-hero-section {
  background: linear-gradient(135deg, #1a1a1a, #000);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
}

.tournament-hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.tournament-hero-content p {
  font-size: 18px;
  color: #ccc;
}

/* === Featured Tournament === */
.featured-tournament-card {
  display: flex;
  flex-wrap: wrap;
  background: #161616;
  border-radius: 12px;
  padding: 30px;
  gap: 20px;
  align-items: center;
  border: 1px solid #333;
}

.featured-info {
  flex: 1 1 400px;
  color: #eee;
}

.featured-info h3 {
  color: #f5d742;
  font-size: 24px;
  margin-bottom: 10px;
}

.tournament-details {
  list-style: disc;
  margin: 15px 0 20px 20px;
  color: #aaa;
}

.featured-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* === Tournament Grid === */
.ongoing-tournaments-section {
  padding: 60px 20px;
  background: #101010;
}

.tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tournament-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  color: #ddd;
  text-align: center;
  transition: transform 0.3s ease;
}

.tournament-card:hover {
  transform: translateY(-5px);
}

/* === Leaderboard Section === */
.leaderboard-section {
  background: #0e0e0e;
  padding: 60px 20px;
  color: #eee;
}

.leaderboard-table {
  overflow-x: auto;
  margin-top: 20px;
}

.leaderboard-table table {
  width: 100%;
  border-collapse: collapse;
  background: #1c1c1c;
}

.leaderboard-table th,
.leaderboard-table td {
  border: 1px solid #333;
  padding: 12px 16px;
  text-align: center;
  color: #ccc;
}

.leaderboard-table th {
  background: #222;
  color: #f5d742;
}

.leaderboard-note {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

/* === Rewards Grid === */
.tournament-rewards-section {
  padding: 60px 20px;
  background: #141414;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.reward-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  color: #ccc;
  text-align: center;
}

.reward-box h3 {
  font-size: 20px;
  color: #f5d742;
  margin-bottom: 10px;
}

/* Support Hero Section */
.support-hero-section {
    padding: 80px 20px 40px;
    background: linear-gradient(to right, #2e2e5a, #191929);
    color: #fff;
    text-align: center;
}
.support-hero-section .container {
    max-width: 960px;
    margin: 0 auto;
}
.support-hero-section h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}
.support-hero-section p {
    font-size: 16px;
    color: #ccc;
    max-width: 720px;
    margin: 0 auto;
}

/* Support Channels */
.support-channels-section {
    background: #12121a;
    padding: 60px 20px;
}
.support-channels-section .container {
    max-width: 1000px;
    margin: 0 auto;
}
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.channel-card {
    background: #1d1d2a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s ease;
}
.channel-card:hover {
    background: #29293f;
}
.channel-card img {
    max-width: 60px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(81%) sepia(74%) saturate(519%) hue-rotate(9deg) brightness(104%) contrast(98%);
}
.channel-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
.channel-card p {
    font-size: 14px;
    color: #bbb;
}
.channel-card .btn {
    margin-top: 12px;
}

/* FAQ Accordion */
.faq-section {
    background: #0e0e14;
    padding: 60px 20px;
}
.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-accordion {
    margin-top: 30px;
}
.faq-item {
    border-bottom: 1px solid #2a2a38;
    padding: 15px 0;
}
.faq-question {
    background: none;
    border: none;
    color: #f1f1f1;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    color: #bbb;
    font-size: 14px;
}
.faq-answer p a {
    color: #4dabf7;
    text-decoration: underline;
}
.faq-item.open .faq-answer {
    display: block;
}

/* Contact Section */
.contact-section {
    background: #15151e;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}
.contact-section .container {
    max-width: 900px;
    margin: 0 auto;
}
.contact-section .contact-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}
.contact-methods ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.contact-methods li {
    font-size: 15px;
    color: #eee;
    margin: 6px 0;
}
.contact-methods a {
    color: #4dabf7;
    text-decoration: underline;
}

/* Support CTA Section */
.support-cta-section {
    background: #1b1b28;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}
.support-cta-box {
    max-width: 900px;
    margin: 0 auto;
}
.support-cta-box h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
.support-cta-box p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 25px;
}
.support-cta-box .cta-buttons a {
    margin: 0 10px;
}

.faq-hero-section {
    padding: 60px 0;
    background-color: #111;
    text-align: center;
    color: #fff;
}
.faq-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.faq-hero-content p {
    font-size: 1.5rem;
    color: #ccc;
}

.faq-search-section {
    padding: 40px 0;
    text-align: center;
}
.faq-search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.faq-search-input {
    padding: 12px 20px;
    width: 300px;
    max-width: 100%;
    border: 1px solid #444;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-size: 1.5rem;
}
.faq-search-input::placeholder {
    color: #888;
}

.faq-categories-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}
.faq-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.faq-category-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    transition: background 0.3s;
}
.faq-category-card:hover {
    background-color: #2a2a2a;
}
.faq-category-card h3 {
    font-size: 1.5rem;
    color: #f5d742;
    margin-bottom: 10px;
}
.faq-category-card ul {
    list-style: none;
    padding-left: 0;
}
.faq-category-card li {
    margin-bottom: 8px;
}
.faq-category-card a {
    color: #eee;
    text-decoration: underline;
}
.faq-category-card a:hover {
    color: #f5d742;
}

.faq-detailed-section {
    padding: 60px 0;
    background-color: #111;
}
.faq-item {
    background-color: #1c1c1c;
    border: 1px solid #333;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5d742;
    background-color: #222;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.faq-question:hover {
    background-color: #2a2a2a;
}
.faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #191919;
    color: #eee;
    font-size: 1.3rem;
    border-top: 1px solid #333;
}
.faq-answer a {
    color: #f5d742;
    text-decoration: underline;
}
.faq-answer.show {
    display: block;
}
.faq-cta-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    text-align: center;
}
.faq-cta-box {
    background-color: #222;
    padding: 40px 20px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
}
.faq-cta-box h2 {
    font-size: 2rem;
    color: #f5d742;
    margin-bottom: 20px;
}
.faq-cta-box p {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
}
.faq-cta-box a {
    margin: 0 10px;
}

/* Terms Hero Section */
.terms-hero-section {
    background: linear-gradient(to right, #1e1e1e, #292929);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.terms-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.terms-hero-content p {
    font-size: 1.5rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Text */
.terms-intro-section {
    background-color: #0f0f0f;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
}
.terms-intro-section p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Main Section Blocks */
.terms-main-section {
    background-color: #121212;
    padding: 50px 20px;
}
.terms-main-section .section-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.terms-main-section .terms-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 40px;
}
.terms-main-section .terms-list li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1.7;
}
.terms-main-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Call to Action Section */
.terms-cta-section {
    background-color: #1a1a1a;
    padding: 50px 20px;
    text-align: center;
}
.terms-cta-box {
    max-width: 700px;
    margin: 0 auto;
}
.terms-cta-box h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}
.terms-cta-box p {
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.terms-cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Privacy Hero Section */
.privacy-hero-section {
    background: linear-gradient(to right, #1a1a1a, #2c2c2c);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.privacy-hero-content h1 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.privacy-hero-content p {
    font-size: 1.5rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Intro Section */
.privacy-intro-section {
    background-color: #111;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
}
.privacy-intro-section p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Privacy Details Section */
.privacy-details-section,
.privacy-rights-section {
    background-color: #181818;
    padding: 50px 20px;
}
.privacy-details-section .section-title,
.privacy-rights-section .section-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.privacy-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 40px;
}
.privacy-list li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 1.5rem;
    line-height: 1.7;
}
.privacy-details-section a,
.privacy-rights-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Call to Action */
.privacy-cta-section {
    background-color: #1d1d1d;
    padding: 50px 20px;
    text-align: center;
}
.privacy-cta-box {
    max-width: 700px;
    margin: 0 auto;
}
.privacy-cta-box h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}
.privacy-cta-box p {
    color: #ccc;
    font-size: 1.5rem;
    margin-bottom: 25px;
}
.privacy-cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.promotion-terms-section .section-title {
    font-size: 3.5rem;
    color: #f5d742;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promotion-terms-section .section-description {
    text-align: center;
    font-size: 1.4rem;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .promotion-terms-section .section-title {
        font-size: 2.5rem;
    }

    .promotion-terms-section .section-description {
        font-size: 1.2rem;
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }
}

.vip-tiers-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.vip-tiers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/vip-pattern.png') repeat;
    opacity: 0.05;
    animation: patternFloat 20s linear infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header p {
    font-size: 1.4rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 215, 66, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5d742, transparent);
    transition: height 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(245, 215, 66, 0.1);
}

.tier-card:hover::before {
    height: 6px;
}

.tier-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f5d742 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(245, 215, 66, 0.3);
    transition: all 0.3s ease;
}

.tier-badge i {
    font-size: 3rem;
    color: #1a1a1a;
}

.tier-card:hover .tier-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(245, 215, 66, 0.4);
}

.tier-card h3 {
    font-size: 2.8rem;
    color: #f5d742;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tier-benefits {
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.benefit i {
    font-size: 1.8rem;
    color: #f5d742;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 215, 66, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.benefit:hover i {
    background: #f5d742;
    color: #1a1a1a;
}

.benefit span {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
}

.tier-requirements {
    margin-bottom: 2.5rem;
    text-align: left;
}

.tier-requirements p {
    color: #f5d742;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tier-requirements ul {
    list-style: none;
    padding: 0;
}

.tier-requirements li {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tier-requirements li::before {
    content: '•';
    color: #f5d742;
    position: absolute;
    left: 0;
}

.tier-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #f5d742 0%, #ffd700 100%);
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 215, 66, 0.3);
}

.tier-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 215, 66, 0.4);
}

/* Tier-specific styles */
.tier-card.bronze .tier-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.tier-card.silver .tier-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #a9a9a9 100%);
}

.tier-card.gold .tier-badge {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
}

.tier-card.diamond .tier-badge {
    background: linear-gradient(135deg, #b9f2ff 0%, #89cff0 100%);
}

@media (max-width: 768px) {
    .vip-tiers-section {
        padding: 6rem 0;
    }

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

    .section-header p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .tiers-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .tier-card {
        padding: 2.5rem 1.5rem;
    }

    .tier-badge {
        width: 80px;
        height: 80px;
    }

    .tier-badge i {
        font-size: 2.5rem;
    }

    .tier-card h3 {
        font-size: 2.4rem;
    }

    .benefit {
        padding: 0.8rem;
    }

    .benefit i {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .benefit span {
        font-size: 1.3rem;
    }

    .tier-cta {
        padding: 1rem 2rem;
        font-size: 1.3rem;
    }
}
