/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #ffd700;
  --accent-color: #00d4aa;
  --background-dark: #0a0a0a;
  --background-darker: #000000;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ffd700);
  --gradient-secondary: linear-gradient(135deg, #00d4aa, #0080ff);
  --shadow-primary: 0 10px 30px rgba(255, 107, 53, 0.3);
  --shadow-secondary: 0 10px 30px rgba(0, 212, 170, 0.2);
}

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

body {
  font-family: 'Sarabun', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 50%, #1a0a00 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23ff6b35" opacity="0.4"/><circle cx="40" cy="80" r="1.5" fill="%2300d4aa" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>') repeat;
  opacity: 0.1;
  animation: twinkle 10s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-dark);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-chip {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-chip-1 {
  background: var(--gradient-primary);
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.floating-chip-2 {
  background: var(--gradient-secondary);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.floating-chip-3 {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  top: 50%;
  right: -10%;
  animation-delay: 4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .floating-chip {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-link i {
  font-size: 2rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoSpin 3s ease-in-out infinite;
}

@keyframes logoSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-highlight {
  color: var(--secondary-color);
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-header-cta i {
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 107, 53, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.mobile-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
  margin-top: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--text-primary);
  padding-left: 30px;
}

.mobile-nav-link i {
  font-size: 1.2rem;
  color: var(--accent-color);
  min-width: 20px;
  text-align: center;
}

.mobile-cta-item {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 15px;
  margin: 20px;
  border: 1px solid var(--primary-color);
  overflow: hidden;
}

.mobile-cta-link {
  background: var(--gradient-primary);
  color: white !important;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  border-radius: 15px;
}

.mobile-cta-link:hover {
  background: var(--gradient-secondary);
  transform: scale(1.02);
  padding-left: 20px;
}

.mobile-cta-link i {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.4rem;
  }
  
  .mobile-nav-link {
    padding: 18px 15px;
    font-size: 1rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
}

/* Ensure body has top padding to account for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* About Platform Section */
.about-platform-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, #1a1a1a 50%, var(--background-darker) 100%);
  position: relative;
}

.about-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about-description {
  margin-bottom: 40px;
}

.about-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.about-description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.inline-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.inline-link:hover {
  color: var(--secondary-color);
}

.inline-link:hover::after {
  width: 100%;
  background: var(--secondary-color);
}

.features-highlight {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.features-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.features-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.features-list .feature-item:last-child {
  border-bottom: none;
}

.features-list .feature-item:hover {
  padding-left: 10px;
  background: rgba(255, 107, 53, 0.05);
}

.features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  min-width: 20px;
  text-align: center;
}

.features-list .feature-item span {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.about-visual {
  animation: slideInRight 1s ease-out 0.3s both;
}

.platform-showcase {
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.05);
}

.trust-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.badge i {
  color: var(--accent-color);
  font-size: 1rem;
}

.badge span {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-platform-section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .features-highlight {
    padding: 20px;
  }
  
  .trust-badges {
    position: static;
    transform: none;
    margin-top: 20px;
    gap: 10px;
  }
  
  .badge {
    padding: 10px 12px;
  }
  
  .badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .features-title {
    font-size: 1.2rem;
  }
  
  .features-list .feature-item {
    gap: 10px;
  }
  
  .features-list .feature-item span {
    font-size: 0.9rem;
  }
  
  .trust-badges {
    gap: 8px;
  }
  
  .badge {
    padding: 8px 10px;
  }
}

/* VIP System Section */
.vip-system-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 30%, #2a1810 70%, var(--background-darker) 100%);
  position: relative;
  overflow: hidden;
}

.vip-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="vip-pattern" patternUnits="userSpaceOnUse" width="200" height="200"><polygon points="100,0 120,30 150,30 130,60 140,90 100,75 60,90 70,60 50,30 80,30" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="150" r="3" fill="%23ff6b35" opacity="0.3"/><circle cx="150" cy="50" r="2" fill="%2300d4aa" opacity="0.4"/></pattern></defs><rect width="100%" height="100%" fill="url(%23vip-pattern)"/></svg>') repeat;
  animation: slowFloat 20s ease-in-out infinite;
}

@keyframes slowFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

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

.vip-main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

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

.vip-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.vip-description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.vip-visual {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.vip-showcase {
  position: relative;
}

.vip-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.vip-benefits-overlay {
  position: absolute;
  top: 20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 53, 0.9));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.benefit-card i {
  font-size: 1.5rem;
  color: var(--background-dark);
  margin-bottom: 8px;
  display: block;
}

.benefit-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--background-dark);
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--background-dark);
  margin: 0;
  opacity: 0.8;
}

.vip-features {
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

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

.feature-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.vip-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 25px;
  padding: 50px 30px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.vip-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.btn-vip, .btn-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-vip {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  color: var(--background-dark);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-vip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6);
}

.btn-credit {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-secondary);
}

.btn-credit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vip-system-section {
    padding: 60px 0;
  }
  
  .vip-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vip-benefits-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .vip-cta {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-vip, .btn-credit {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vip-description p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 12px 16px;
  }
  
  .benefit-card h4 {
    font-size: 0.8rem;
  }
  
  .benefit-card p {
    font-size: 0.7rem;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .btn-vip, .btn-credit {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Direct Web Section */
.direct-web-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, #0f0f0f 50%, var(--background-darker) 100%);
  position: relative;
  overflow: hidden;
}

.direct-web-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

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

.main-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

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

.description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.advantages {
  margin-top: 40px;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  position: relative;
}

.advantages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 20px 20px 0 0;
}

.advantages-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.advantage-item:last-child {
  border-bottom: none;
}

.advantage-item:hover {
  padding-left: 15px;
  background: rgba(0, 212, 170, 0.05);
}

.advantage-item i {
  color: var(--accent-color);
  font-size: 1.3rem;
  min-width: 20px;
  text-align: center;
}

.advantage-item span {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.visual-content {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.direct-web-showcase {
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.02) rotateY(5deg);
}

.security-features {
  position: absolute;
  top: -15px;
  left: -15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-badge {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 170, 0.2) 100%);
  border: 1px solid var(--accent-color);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
  }
  to {
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.6);
  }
}

.security-badge:hover {
  transform: translateX(5px);
  border-color: var(--secondary-color);
}

.security-badge i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.badge-content h5 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px 0;
}

.badge-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.wallet-system {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  animation: slideInUp 1s ease-out 0.8s both;
}

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

.wallet-system::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 25px 25px 0 0;
}

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

.wallet-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wallet-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

.wallet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.wallet-feature {
  text-align: center;
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(255, 107, 53, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.wallet-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 15px;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.wallet-feature:hover::before {
  opacity: 0.1;
}

.wallet-feature:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.wallet-feature > * {
  position: relative;
  z-index: 2;
}

.wallet-feature .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.wallet-feature:hover .feature-icon {
  transform: scale(1.1) rotate(360deg);
}

.wallet-feature .feature-icon i {
  font-size: 1.3rem;
  color: white;
}

.feature-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.feature-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .direct-web-section {
    padding: 60px 0;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .advantages {
    padding: 25px 20px;
  }
  
  .security-features {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .wallet-system {
    padding: 30px 20px;
  }
  
  .wallet-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .wallet-feature {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .description p {
    font-size: 1rem;
  }
  
  .advantages-title {
    font-size: 1.2rem;
  }
  
  .advantage-item {
    gap: 10px;
    padding: 12px 0;
  }
  
  .advantage-item span {
    font-size: 0.9rem;
  }
  
  .security-badge {
    padding: 12px;
    gap: 8px;
  }
  
  .badge-content h5 {
    font-size: 0.8rem;
  }
  
  .badge-content p {
    font-size: 0.7rem;
  }
  
  .wallet-title {
    font-size: 1.4rem;
  }
  
  .wallet-subtitle {
    font-size: 1rem;
  }
  
  .wallet-features {
    grid-template-columns: 1fr;
  }
  
  .wallet-feature {
    padding: 18px 12px;
  }
  
  .feature-name {
    font-size: 1rem;
  }
  
  .feature-detail {
    font-size: 0.85rem;
  }
}

/* Lucky Games Section */
.lucky-games-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 40%, #1a0a1a 70%, var(--background-darker) 100%);
  position: relative;
  overflow: hidden;
}

.lucky-games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="game-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="2" fill="%23ffd700" opacity="0.4"/><rect x="70" y="10" width="4" height="4" fill="%23ff6b35" opacity="0.3" rx="1"/><polygon points="50,70 55,80 45,80" fill="%2300d4aa" opacity="0.3"/><circle cx="80" cy="80" r="1.5" fill="%23ffd700" opacity="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23game-pattern)"/></svg>') repeat;
  animation: gameFloat 15s ease-in-out infinite;
}

@keyframes gameFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

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

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

.main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

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

.description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.content-right {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.game-showcase {
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

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

.game-features {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-badge {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.2) 100%);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.feature-badge:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

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

.feature-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.game-types {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.game-types-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.game-type {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-type::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 4s linear infinite;
}

.game-type:hover::before {
  opacity: 0.1;
}

.game-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
  border-color: var(--accent-color);
}

.game-type > * {
  position: relative;
  z-index: 2;
}

.game-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.game-type:hover .game-icon {
  transform: scale(1.15) rotate(360deg);
}

.game-icon i {
  font-size: 1.5rem;
  color: white;
}

.game-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.game-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.app-download {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 170, 0.1) 100%);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  animation: slideInUp 1s ease-out 0.9s both;
}

.app-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 25px 25px 0 0;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 40px;
  align-items: center;
}

.download-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.download-features {
  margin-bottom: 30px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.download-feature:last-child {
  margin-bottom: 0;
}

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

.download-feature span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.btn-download i {
  font-size: 1.2rem;
}

.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 120px;
  height: 200px;
  background: var(--gradient-secondary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.3);
  animation: phoneFloat 3s ease-in-out infinite;
  position: relative;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.phone-mockup i {
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .lucky-games-section {
    padding: 60px 0;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .game-features {
    position: static;
    transform: none;
    margin-top: 20px;
  }
  
  .types-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .game-type {
    padding: 25px 20px;
  }
  
  .app-download {
    padding: 40px 30px;
  }
  
  .download-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .phone-mockup {
    width: 100px;
    height: 160px;
  }
  
  .phone-mockup i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .description p {
    font-size: 1rem;
  }
  
  .game-types-title {
    font-size: 1.5rem;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
  }
  
  .game-type {
    padding: 20px 15px;
  }
  
  .game-name {
    font-size: 1.1rem;
  }
  
  .game-desc {
    font-size: 0.9rem;
  }
  
  .app-download {
    padding: 30px 20px;
  }
  
  .download-title {
    font-size: 1.5rem;
  }
  
  .download-subtitle {
    font-size: 1rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-download {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .phone-mockup {
    width: 80px;
    height: 130px;
  }
  
  .phone-mockup i {
    font-size: 2rem;
  }
}

/* Strategies Tips Section */
.strategies-tips-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, #1a0f0a 40%, var(--background-darker) 80%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.strategies-tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="strategy-pattern" patternUnits="userSpaceOnUse" width="150" height="150"><circle cx="30" cy="30" r="2" fill="%23ffd700" opacity="0.3"/><path d="M70 20 L80 35 L70 50 L60 35 Z" fill="%23ff6b35" opacity="0.2"/><rect x="110" y="70" width="6" height="6" fill="%2300d4aa" opacity="0.4" rx="1"/><polygon points="40,110 50,120 40,130 30,120" fill="%23ffd700" opacity="0.3"/><circle cx="120" cy="40" r="1.5" fill="%2300d4aa" opacity="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23strategy-pattern)"/></svg>') repeat;
  animation: strategicMove 12s ease-in-out infinite;
}

@keyframes strategicMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(5px) translateY(-5px); }
  50% { transform: translateX(-3px) translateY(5px); }
  75% { transform: translateX(3px) translateY(-3px); }
}

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

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

.main-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

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

.description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
}

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

.description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.visual-content {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.strategy-showcase {
  position: relative;
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.showcase-image:hover {
  transform: scale(1.03) rotate(1deg);
}

.strategy-overlay {
  position: absolute;
  top: 20px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-tip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 107, 53, 0.9));
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  animation: tipFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.strategy-tip:nth-child(2) {
  animation-delay: 1s;
}

.strategy-tip:nth-child(3) {
  animation-delay: 2s;
}

@keyframes tipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.strategy-tip i {
  font-size: 1.1rem;
  color: var(--background-dark);
}

.strategy-tip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--background-dark);
  white-space: nowrap;
}

.strategies-list {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.strategies-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.strategy-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.strategy-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.strategy-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-icon {
  transform: rotate(360deg) scale(1.2);
}

.strategy-icon i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.strategy-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-right: 50px;
}

.strategy-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding-right: 50px;
}

.login-systems {
  margin-bottom: 60px;
  animation: slideInUp 1s ease-out 0.8s both;
}

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

.systems-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.systems-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.system-feature {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 170, 0.05) 100%);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.system-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.system-feature:hover::before {
  transform: scaleX(1);
}

.system-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 212, 170, 0.15);
  border-color: var(--accent-color);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.feature-header i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.feature-header h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.system-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.system-feature strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.final-cta {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-radius: 25px;
  padding: 50px 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideInUp 1s ease-out 1s both;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
  animation: ctaRotate 8s linear infinite;
}

@keyframes ctaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.cta-subtitle strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.cta-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

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

.btn-register, .btn-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-register {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-register:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.btn-login {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-secondary);
}

.btn-login:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 170, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .strategies-tips-section {
    padding: 60px 0;
  }
  
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .strategy-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .strategies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .strategy-card {
    padding: 25px 20px;
  }
  
  .systems-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .system-feature {
    padding: 20px;
  }
  
  .final-cta {
    padding: 40px 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-register, .btn-login {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .description p {
    font-size: 1rem;
  }
  
  .strategies-title {
    font-size: 1.5rem;
  }
  
  .strategies-grid {
    grid-template-columns: 1fr;
  }
  
  .strategy-card {
    padding: 20px 15px;
  }
  
  .strategy-name {
    font-size: 1.1rem;
    padding-right: 40px;
  }
  
  .strategy-desc {
    font-size: 0.9rem;
    padding-right: 40px;
  }
  
  .strategy-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .strategy-icon {
    width: 35px;
    height: 35px;
  }
  
  .systems-grid {
    grid-template-columns: 1fr;
  }
  
  .systems-title {
    font-size: 1.4rem;
  }
  
  .final-cta {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
  
  .btn-register, .btn-login {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, var(--background-darker) 0%, #000000 50%, var(--background-dark) 100%);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="80" cy="80" r="0.8" fill="%23ff6b35" opacity="0.15"/><rect x="50" y="10" width="2" height="2" fill="%2300d4aa" opacity="0.1" rx="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footer-pattern)"/></svg>') repeat;
  pointer-events: none;
}

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

.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-section {
  animation: fadeInUp 1s ease-out;
}

.footer-about {
  animation-delay: 0.1s;
}

.footer-links {
  animation-delay: 0.2s;
}

.footer-games {
  animation-delay: 0.3s;
}

.footer-contact {
  animation-delay: 0.4s;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo .logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo .logo-highlight {
  color: var(--secondary-color);
}

.footer-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-feature i {
  color: var(--accent-color);
  font-size: 1rem;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-link:hover {
  color: var(--text-primary);
  padding-left: 10px;
}

.footer-link i {
  color: var(--accent-color);
  font-size: 0.9rem;
  min-width: 16px;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  min-width: 18px;
  text-align: center;
}

.footer-cta {
  margin-top: 10px;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-footer-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
}

.btn-footer-cta i {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--text-secondary);
}

.separator {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright {
  text-align: center;
}

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

.footer-security {
  display: flex;
  justify-content: flex-end;
}

.security-badges {
  display: flex;
  gap: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.8rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(0, 212, 170, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.security-badge i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: decorationFloat 8s ease-in-out infinite;
}

.decoration-1 {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.decoration-2 {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  bottom: 15%;
  left: 8%;
  animation-delay: 3s;
}

.decoration-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes decorationFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 0 30px;
  }
  
  .footer-about {
    grid-column: auto;
    text-align: center;
  }
  
  .footer-features {
    justify-content: center;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal,
  .footer-security {
    justify-content: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    margin-top: 60px;
  }
  
  .footer-main {
    padding: 40px 0 25px;
    gap: 30px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo .logo-text {
    font-size: 1.5rem;
  }
  
  .footer-logo i {
    font-size: 1.6rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    text-align: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .footer-cta {
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 5px;
  }
  
  .separator {
    display: none;
  }
  
  .security-badges {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: linear-gradient(135deg, var(--background-darker) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sticky-btn > * {
  position: relative;
  z-index: 2;
}

.sticky-btn-login {
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 212, 170, 0.1) 100%);
  color: var(--accent-color);
  border-right: 1px solid var(--border-color);
}

.sticky-btn-login::before {
  background: var(--gradient-secondary);
}

.sticky-btn-login:hover {
  color: white;
}

.sticky-btn-login:hover::before {
  opacity: 1;
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  color: var(--primary-color);
  border-right: 1px solid var(--border-color);
}

.sticky-btn-register::before {
  background: var(--gradient-primary);
}

.sticky-btn-register:hover {
  color: white;
}

.sticky-btn-register:hover::before {
  opacity: 1;
}

.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  color: var(--secondary-color);
}

.sticky-btn-credit::before {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
}

.sticky-btn-credit:hover {
  color: var(--background-dark);
}

.sticky-btn-credit:hover::before {
  opacity: 1;
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  display: block;
  transition: transform 0.3s ease;
}

.sticky-btn:hover i {
  transform: scale(1.1) translateY(-2px);
}

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sticky-btn:active {
  transform: scale(0.98);
}

/* Animation for sticky buttons */
@keyframes stickySlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-buttons {
  animation: stickySlideUp 0.5s ease-out;
}

/* Pulsing animation for credit button */
@keyframes creditPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
}

.sticky-btn-credit {
  animation: creditPulse 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

/* Ensure content doesn't overlap with sticky buttons */
body {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 55px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 50px;
  }
}

/* Hover effects for better UX */
.sticky-btn:hover {
  transform: translateY(-2px);
}

.sticky-btn:hover i {
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0) scale(1.1);
  }
  40% {
    transform: translateY(-4px) scale(1.2);
  }
  80% {
    transform: translateY(-2px) scale(1.15);
  }
}

/* Login Section Styles */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 30%, #1a0a00 70%, var(--background-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.login-wrapper {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  animation: slideInUp 0.8s ease-out;
}

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

.login-container {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 25px 25px 0 0;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo {
  margin-bottom: 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(5deg);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.error-message {
  display: none;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #dc3545;
  font-size: 0.9rem;
  animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

.login-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-label i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-wrapper input:checked + .checkmark {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
}

.checkbox-wrapper input:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-password {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-color);
}

.btn-login {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-login:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-login:active:not(:disabled) {
  transform: translateY(0);
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-login.loading .btn-text {
  opacity: 0;
}

.btn-login.loading .btn-spinner {
  display: block;
}

.form-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.form-divider span {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.btn-register {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: var(--secondary-color);
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.login-footer {
  text-align: center;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.security-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.support-info {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.support-info p {
  margin: 0 0 8px 0;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .btn-login {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .btn-register {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 30%, #001a0a 70%, var(--background-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.register-wrapper {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  animation: slideInUp 0.8s ease-out;
}

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

.register-container {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.register-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 25px 25px 0 0;
}

.register-header {
  text-align: center;
  margin-bottom: 30px;
}

.register-logo {
  margin-bottom: 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(-5deg);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.success-message {
  display: none;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #28a745;
  font-size: 0.9rem;
  animation: successSlideIn 0.3s ease-out;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message {
  display: none;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 20px;
  color: #dc3545;
  font-size: 0.9rem;
  animation: errorSlideIn 0.3s ease-out;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message i,
.success-message i {
  font-size: 1rem;
  flex-shrink: 0;
}

.register-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-label i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-terms {
  margin-bottom: 25px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  line-height: 1.4;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkbox-wrapper input:checked + .checkmark {
  background: var(--gradient-secondary);
  border-color: var(--accent-color);
}

.checkbox-wrapper input:checked + .checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  flex: 1;
}

.terms-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.btn-register {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-secondary);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.btn-register:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.btn-register:active:not(:disabled) {
  transform: translateY(0);
}

.btn-register:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-register.loading .btn-text {
  opacity: 0;
}

.btn-register.loading .btn-spinner {
  display: block;
}

.form-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.form-divider span {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 0 20px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.btn-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.register-footer {
  text-align: center;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.security-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.support-info {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.support-info p {
  margin: 0 0 8px 0;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 30px 25px;
    margin: 0 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .btn-register {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .btn-login {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .checkbox-wrapper {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 30%, #2a1810 70%, var(--background-darker) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 20px;
}

.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  color: var(--background-dark);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-hero-main:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 60px 0;
  position: relative;
}

.promotion-section:nth-child(even) {
  background: rgba(255, 107, 53, 0.02);
}

.promotion-section:nth-child(odd) {
  background: rgba(0, 212, 170, 0.02);
}

.promotion-vip {
  background: rgba(255, 215, 0, 0.05) !important;
}

.promotion-daily {
  background: rgba(0, 212, 170, 0.05) !important;
}

.promotion-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: slideInUp 1s ease-out;
  transition: transform 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 25px 25px 0 0;
}

.promotion-vip .promotion-card::before {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
}

.promotion-daily .promotion-card::before {
  background: var(--gradient-secondary);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.promo-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

.promotion-vip .promo-icon {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
}

.promotion-daily .promo-icon {
  background: var(--gradient-secondary);
}

.promo-icon i {
  font-size: 2rem;
  color: white;
}

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

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

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

.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.promo-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
}

.promotion-vip .promo-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
}

.promotion-daily .promo-item:hover {
  background: rgba(0, 212, 170, 0.05);
  border-color: rgba(0, 212, 170, 0.2);
}

.promo-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promotion-vip .promo-item i {
  color: var(--secondary-color);
}

.promo-item span {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1;
}

.promo-cta {
  text-align: center;
  margin-top: 10px;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-promo::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-promo:hover::before {
  left: 100%;
}

.btn-promo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.promotion-vip .btn-promo {
  background: linear-gradient(135deg, var(--secondary-color), #ffed4e);
  color: var(--background-dark);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.promotion-vip .btn-promo:hover {
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.promotion-daily .btn-promo {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.promotion-daily .btn-promo:hover {
  box-shadow: 0 15px 40px rgba(0, 212, 170, 0.5);
}

.btn-promo i {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.btn-promo span {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero-main {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 1.8rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .promo-item {
    padding: 12px;
  }
  
  .promo-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero-main {
    padding: 14px 25px;
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-item {
    padding: 10px;
    gap: 12px;
  }
  
  .promo-item i {
    font-size: 1.1rem;
  }
  
  .promo-item span {
    font-size: 0.95rem;
  }
  
  .btn-promo {
    padding: 14px 24px;
    font-size: 1rem;
  }
}