@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: #E2C666;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #CD9F36;
}

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

p {
  margin-bottom: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: #0f0f0f;
  color: #e5e5e5;
  line-height: 1.8;
  min-height: 100vh;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.navbar {
  background-color: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

.navbar-menu li a {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

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

/* Hide mobile auth buttons on desktop */
.navbar-menu li.mobile-auth-buttons {
  display: none;
}

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

.btn-login {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 2px solid #ffffff;
}

.btn-register {
  background-color: var(--accent-primary);
  color: #ffffff;
  border: 2px solid var(--accent-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: #ffffff;
}

.btn-register:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #1a1a1a;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 1200px;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #b8b8b8;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #666;
}

.breadcrumb a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: #b8b8b8;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 60px;
  margin: 40px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  border-radius: 24px;
  border: 2px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(205, 159, 54, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(226, 198, 102, 0.08) 0%, transparent 50%);
  opacity: 0.6;
  z-index: 1;
}

.hero-glow-effect {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(205, 159, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: slide-in-left 0.8s ease-out;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.5px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-main {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.125rem;
  color: #b8b8b8;
  margin-bottom: 32px;
  line-height: 1.85;
  max-width: 95%;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.table-of-contents {
  margin: 40px 0;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 16px;
  border: 1px solid #252525;
}

.toc-container {
  max-width: 900px;
  margin: 0 auto;
}

.toc-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

.toc-list li {
  margin: 0;
}

.toc-list a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e5e5e5;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-left: 50px;
}

.toc-list a::before {
  content: '→';
  position: absolute;
  left: 20px;
  color: var(--accent-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.toc-list a:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  color: #ffffff;
  transform: translateX(5px);
}

.toc-list a:hover::before {
  transform: translateX(3px);
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #d0d0d0;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(205, 159, 54, 0.1);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-2px);
}

.hero-feature-item i {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
  padding: 16px 32px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: #0f0f0f;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(205, 159, 54, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(205, 159, 54, 0.4);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fade-in-right 1s ease-out 0.3s both;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(205, 159, 54, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

.bonus-types {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.bonus-types-header {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-types-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.0625rem;
  color: #b8b8b8;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.85;
}

.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bonus-type-card {
  background: #1a1a1a;
  padding: 35px 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bonus-type-card:hover::before {
  transform: scaleX(1);
}

.bonus-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(205, 159, 54, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bonus-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border-radius: 16px;
  border: 1px solid rgba(205, 159, 54, 0.3);
}

.bonus-type-icon i {
  font-size: 2.5rem;
  color: var(--accent-primary);
}

.bonus-type-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.bonus-type-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin-bottom: 20px;
}

.bonus-type-highlight {
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(205, 159, 54, 0.1);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 10px;
  display: inline-block;
}

.highlight-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-primary);
}

.bonus-promotions {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.bonus-promotions-header {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-promotions-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

.promotion-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(205, 159, 54, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.promotion-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.promotion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.promotion-content {
  padding: 28px;
}

.promotion-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.promotion-content p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin-bottom: 20px;
}

.promotion-link {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: #0f0f0f;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promotion-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(205, 159, 54, 0.3);
  color: #0f0f0f;
}

.vip-advantages {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #151515 100%);
  border-radius: 20px;
  border: 1px solid #252525;
  position: relative;
  overflow: hidden;
}

.vip-advantages::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(205, 159, 54, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.vip-advantages::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 198, 102, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.vip-advantages-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.vip-advantages-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vip-tiers-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.vip-tier-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid #2a2a2a;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vip-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B7355, #CD9F36, #E2C666);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vip-tier-card:hover::before {
  transform: scaleX(1);
}

.vip-tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(205, 159, 54, 0.5);
}

.vip-tier-card.featured {
  border-color: rgba(205, 159, 54, 0.4);
  box-shadow: 0 10px 30px rgba(205, 159, 54, 0.2);
  transform: scale(1.05);
}

.vip-tier-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--accent-primary), var(--primary-color));
}

.vip-tier-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.tier-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: #0f0f0f;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.tier-bronze .tier-icon {
  background: linear-gradient(135deg, rgba(139, 115, 85, 0.3) 0%, rgba(139, 115, 85, 0.15) 100%);
  border: 2px solid rgba(139, 115, 85, 0.5);
}

.tier-silver .tier-icon {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.15) 100%);
  border: 2px solid rgba(192, 192, 192, 0.5);
}

.tier-gold .tier-icon {
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.3) 0%, rgba(226, 198, 102, 0.2) 100%);
  border: 2px solid rgba(205, 159, 54, 0.6);
}

.tier-platinum .tier-icon {
  background: linear-gradient(135deg, rgba(229, 228, 226, 0.3) 0%, rgba(229, 228, 226, 0.15) 100%);
  border: 2px solid rgba(229, 228, 226, 0.5);
}

.tier-diamond .tier-icon {
  background: linear-gradient(135deg, rgba(185, 242, 255, 0.3) 0%, rgba(185, 242, 255, 0.15) 100%);
  border: 2px solid rgba(185, 242, 255, 0.5);
}

.tier-icon i {
  font-size: 2rem;
}

.tier-bronze .tier-icon i {
  color: #8B7355;
}

.tier-silver .tier-icon i {
  color: #C0C0C0;
}

.tier-gold .tier-icon i {
  color: var(--accent-primary);
}

.tier-platinum .tier-icon i {
  color: #E5E4E2;
}

.tier-diamond .tier-icon i {
  color: #B9F2FF;
}

.tier-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.tier-subtitle {
  font-size: 0.85rem;
  color: #b8b8b8;
  font-weight: 500;
  margin: 0;
}

.tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.tier-benefit-item i {
  color: var(--accent-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.vip-exclusive-features {
  position: relative;
  z-index: 1;
  margin: 50px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

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

.vip-features-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.vip-features-header p {
  font-size: 1rem;
  color: #b8b8b8;
  margin: 0;
}

.vip-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.vip-feature-item {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vip-feature-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border-radius: 16px;
  border: 1px solid rgba(205, 159, 54, 0.3);
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.vip-feature-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.vip-feature-item p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.vip-cta-section {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.15) 0%, rgba(226, 198, 102, 0.1) 100%);
  border: 2px solid rgba(205, 159, 54, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.vip-cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.3) 0%, rgba(226, 198, 102, 0.2) 100%);
  border-radius: 20px;
  border: 2px solid rgba(205, 159, 54, 0.4);
}

.vip-cta-icon i {
  font-size: 2.5rem;
  color: var(--accent-primary);
}

.vip-cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.vip-cta-content > p {
  font-size: 1.0625rem;
  color: #d0d0d0;
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto 32px;
}

.btn-vip-primary {
  padding: 16px 36px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--primary-color) 100%);
  color: #0f0f0f;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(205, 159, 54, 0.3);
  transition: all 0.3s ease;
}

.btn-vip-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(205, 159, 54, 0.4);
  color: #0f0f0f;
}

.btn-vip-primary i {
  transition: transform 0.3s ease;
}

.btn-vip-primary:hover i {
  transform: translateX(4px);
}

.bonus-terms {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.bonus-terms-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.bonus-terms-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.term-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.term-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateX(5px);
}

.term-item i {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--accent-primary);
  margin-top: 4px;
}

.term-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.term-details p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.bonus-terms-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

.bonus-terms-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.bonus-terms-image:hover img {
  transform: scale(1.05);
}

.bonus-maximization {
  margin: 60px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%);
  border-radius: 20px;
  border: 1px solid #252525;
}

.bonus-maximization-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.bonus-maximization-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.maximization-strategies {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.strategy-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.strategy-item:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateX(5px);
}

.strategy-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.strategy-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.strategy-content p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.75;
  margin: 0;
}

.bonus-maximization-image {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

.bonus-maximization-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}

.bonus-maximization-image:hover img {
  transform: scale(1.05);
}

.bonus-transparency {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.bonus-transparency-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.bonus-transparency-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.transparency-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.transparency-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.transparency-feature:hover {
  background: rgba(205, 159, 54, 0.08);
  border-color: rgba(205, 159, 54, 0.3);
  transform: translateY(-3px);
}

.transparency-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(205, 159, 54, 0.2) 0%, rgba(226, 198, 102, 0.15) 100%);
  border-radius: 12px;
  border: 1px solid rgba(205, 159, 54, 0.3);
}

.transparency-icon i {
  font-size: 1.8rem;
  color: var(--accent-primary);
}

.transparency-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.transparency-details p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.transparency-commitment {
  margin-top: 40px;
}

.commitment-box {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(205, 159, 54, 0.1);
  border: 1px solid rgba(205, 159, 54, 0.3);
  border-radius: 16px;
}

.commitment-box i {
  flex-shrink: 0;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-top: 4px;
}

.commitment-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.commitment-text p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin: 0;
}

.bonus-transparency-image {
  position: sticky;
  top: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

.bonus-transparency-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}

.bonus-transparency-image:hover img {
  transform: scale(1.05);
}

.faq {
  margin: 60px 0;
  padding: 60px 40px;
  background-color: #151515;
  border-radius: 20px;
  border: 1px solid #252525;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid #2a2a2a;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  margin-bottom: 4px;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-color: #3a3a3a;
}

.faq-item h4 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.faq-item p {
  color: #b8b8b8;
  font-size: 1.0625rem;
  line-height: 1.85;
  margin: 0;
}

.footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid #1a1a1a;
}

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

.footer-logo img {
  height: 50px;
}

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

.footer-links a {
  color: #cccccc;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-copy p {
  font-size: 0.85rem;
  color: #cccccc;
  text-align: center;
}

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

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

  .hero {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 40px;
  }

  .hero-title-main {
    font-size: 2.2rem;
  }

  .hero-title-accent {
    font-size: 1.4rem;
  }

  .bonus-terms-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bonus-maximization-content,
  .bonus-transparency-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vip-tiers-showcase {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .vip-tier-card.featured {
    transform: scale(1);
  }

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

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

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

  .bonus-maximization-image,
  .bonus-transparency-image {
    position: relative;
    top: 0;
  }

  .bonus-types-grid,
  .promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid #1a1a1a;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid #1a1a1a;
  }

  .navbar-menu li a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #e5e5e5;
  }

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

  .navbar .auth-buttons {
    display: none;
  }

  /* Mobile Auth Buttons - Show on mobile only */
  .navbar-menu li.mobile-auth-buttons {
    display: block;
    border-bottom: none;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 2px solid #1a1a1a;
  }

  .navbar-menu li.mobile-auth-buttons a {
    display: inline-block;
    width: calc(50% - 5px);
    margin: 0;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .navbar-menu li.mobile-auth-buttons a:first-child {
    margin-right: 10px;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-login:hover {
    background-color: transparent;
    color: #ffffff;
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register {
    background-color: var(--accent-primary);
    color: #ffffff;
    border: 2px solid var(--accent-primary);
  }

  .navbar-menu li.mobile-auth-buttons a.btn-register:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }

  /* Mobile menu overlay */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-title-main {
    font-size: 1.8rem;
  }

  .hero-title-accent {
    font-size: 1.2rem;
  }

  .hero-features {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .bonus-types,
  .bonus-promotions,
  .vip-advantages,
  .bonus-terms,
  .bonus-maximization,
  .bonus-transparency,
  .faq {
    padding: 40px 20px;
  }

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

  .vip-tiers-showcase {
    grid-template-columns: 1fr;
  }

  .vip-tier-card.featured {
    transform: scale(1);
  }

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

  .vip-cta-content h3 {
    font-size: 1.6rem;
  }

  .vip-cta-section {
    padding: 40px 20px;
  }

  .bonus-maximization-text h2,
  .bonus-transparency-text h2 {
    font-size: 1.8rem;
  }

  .transparency-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-types-header h2,
  .bonus-promotions-header h2,
  .bonus-terms-text h2,
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .bonus-types-grid,
  .promotions-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-title-main {
    font-size: 1.5rem;
  }

  .bonus-types,
  .bonus-promotions,
  .bonus-terms,
  .faq {
    padding: 30px 15px;
  }

  .footer {
    padding: 30px 15px;
  }

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