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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

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

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(5px);
}

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 20px;
}

.feature-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  }
}

.hero-badge i {
  color: #1a1a2e;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-features {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 300px;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(10, 10, 26, 0.98);
  border-bottom-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo .logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header-logo .logo-link:hover {
  transform: translateY(-2px);
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #ff6b35;
  font-weight: 600;
  margin-top: -2px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffd700;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::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;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  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 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  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.2);
  color: #ff6b35;
}

.mobile-nav {
  padding: 30px;
}

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

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateX(5px);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.mobile-cta-btn::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;
}

.mobile-cta-btn:hover::before {
  left: 100%;
}

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

/* Body padding to prevent content hiding behind fixed header */
body {
  padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .desktop-nav {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  body {
    padding-top: 70px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    max-width: 300px;
  }
  
  .mobile-menu-header {
    padding: 20px 25px;
  }
  
  .mobile-nav {
    padding: 25px;
  }
  
  .mobile-nav-list {
    margin-bottom: 30px;
  }
  
  .mobile-nav-list li {
    margin-bottom: 15px;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 65px;
  }
  
  body {
    padding-top: 65px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .mobile-menu {
    max-width: 280px;
  }
  
  .mobile-menu-header {
    padding: 18px 20px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 20px;
  }
  
  .mobile-nav-list {
    margin-bottom: 25px;
  }
  
  .mobile-nav-link {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-description p {
  margin-bottom: 20px;
}

.about-description strong {
  color: #ffd700;
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.about-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 66, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .about-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.overlay-content span {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Game Types */
.game-types {
  margin-bottom: 80px;
  text-align: center;
}

.game-types-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.game-types-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
  border-radius: 3px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.game-card:hover .game-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.game-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.game-card p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Platform Features */
.platform-features {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.features-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
}

.features-description::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: #ffd700;
  font-family: serif;
}

.features-description strong {
  color: #ffd700;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-content {
    margin-bottom: 60px;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .game-types {
    margin-bottom: 60px;
  }
  
  .game-types-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .game-card {
    padding: 30px 25px;
  }
  
  .game-icon {
    width: 70px;
    height: 70px;
  }
  
  .game-icon i {
    font-size: 1.8rem;
  }
  
  .game-card h4 {
    font-size: 1.2rem;
  }
  
  .features-description {
    padding: 30px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .about-description {
    font-size: 0.95rem;
  }
  
  .game-types-title {
    font-size: 1.5rem;
  }
  
  .game-card {
    padding: 25px 20px;
  }
  
  .game-icon {
    width: 60px;
    height: 60px;
  }
  
  .game-icon i {
    font-size: 1.5rem;
  }
  
  .game-card h4 {
    font-size: 1.1rem;
  }
  
  .game-card p {
    font-size: 0.9rem;
  }
  
  .features-description {
    padding: 25px 20px;
    font-size: 0.95rem;
  }
}

/* Guide Section */
.guide-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center right, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.guide-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin: 0 auto;
}

.guide-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.guide-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.guide-description p {
  margin-bottom: 25px;
}

.guide-description strong {
  color: #ffd700;
  font-weight: 700;
}

.guide-description a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.guide-description a:hover {
  color: #ffd700;
}

.guide-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.guide-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.guide-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.guide-badge i {
  font-size: 1rem;
}

/* Techniques Section */
.techniques-section {
  margin-bottom: 80px;
  text-align: center;
}

.techniques-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.techniques-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #ffd700, #667eea);
  border-radius: 3px;
}

.techniques-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.techniques-intro strong {
  color: #ffd700;
  font-weight: 700;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.technique-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.technique-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s;
}

.technique-card:hover::before {
  left: 100%;
}

.technique-card:hover {
  transform: translateY(-10px);
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.technique-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.technique-card:hover .technique-icon {
  transform: scale(1.1) rotate(-5deg);
}

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

.technique-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.technique-card p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

.technique-card p strong {
  color: #ffd700;
  font-weight: 700;
}

/* Pro Strategy Section */
.pro-strategy {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 60px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pro-strategy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.strategy-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.strategy-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
}

.strategy-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.strategy-text strong {
  color: #ffd700;
  font-weight: 700;
}

.strategy-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .guide-title {
    font-size: 2.4rem;
  }
  
  .techniques-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .strategy-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .strategy-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 80px 0;
  }
  
  .guide-container {
    padding: 0 15px;
  }
  
  .guide-header {
    margin-bottom: 50px;
  }
  
  .guide-title {
    font-size: 2rem;
  }
  
  .guide-content {
    margin-bottom: 60px;
  }
  
  .guide-description {
    font-size: 1rem;
  }
  
  .techniques-section {
    margin-bottom: 60px;
  }
  
  .techniques-title {
    font-size: 2rem;
  }
  
  .techniques-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .technique-card {
    padding: 30px 25px;
  }
  
  .technique-icon {
    width: 70px;
    height: 70px;
  }
  
  .technique-icon i {
    font-size: 1.8rem;
  }
  
  .technique-card h4 {
    font-size: 1.2rem;
  }
  
  .pro-strategy {
    padding: 40px 30px;
  }
  
  .strategy-text h3 {
    font-size: 1.8rem;
  }
  
  .strategy-text p {
    font-size: 1rem;
  }
  
  .strategy-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    padding: 25px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .guide-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .guide-description {
    font-size: 0.95rem;
  }
  
  .techniques-title {
    font-size: 1.6rem;
  }
  
  .techniques-intro {
    font-size: 0.95rem;
  }
  
  .technique-card {
    padding: 25px 20px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.5rem;
  }
  
  .technique-card h4 {
    font-size: 1.1rem;
  }
  
  .technique-card p {
    font-size: 0.9rem;
  }
  
  .pro-strategy {
    padding: 30px 20px;
  }
  
  .strategy-text h3 {
    font-size: 1.5rem;
  }
  
  .strategy-text p {
    font-size: 0.95rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Premium Section */
.premium-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center left, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.premium-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin: 0 auto;
}

.premium-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.premium-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.premium-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.premium-image:hover .premium-img {
  transform: scale(1.08);
}

.premium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.7), rgba(255, 215, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-image:hover .premium-overlay {
  opacity: 1;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: transform 0.3s ease 0.2s;
}

.premium-image:hover .overlay-badge {
  transform: scale(1);
}

.overlay-badge i {
  color: #ffd700;
  font-size: 1.2rem;
}

.premium-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.premium-description p {
  margin-bottom: 25px;
}

.premium-description strong {
  color: #ffd700;
  font-weight: 700;
}

/* Room Types */
.room-types {
  margin-bottom: 80px;
}

.room-types-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.room-types-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
  border-radius: 3px;
}

.rooms-list {
  display: grid;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.room-item {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 25px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.room-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s;
}

.room-item:hover::before {
  left: 100%;
}

.room-item:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.room-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.room-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.room-content p {
  color: #b0b0b0;
  font-size: 1rem;
}

.room-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.room-item:hover .room-icon {
  transform: rotate(15deg) scale(1.1);
}

.room-icon i {
  font-size: 1.2rem;
  color: #ffd700;
}

/* Dealer Quality */
.dealer-quality {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 60px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.dealer-quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.quality-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.quality-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
}

.quality-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.quality-text strong {
  color: #ffd700;
  font-weight: 700;
}

.quality-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

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

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

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.feature-box p {
  color: #b0b0b0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .premium-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .premium-title {
    font-size: 2.4rem;
  }
  
  .quality-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .quality-features {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .premium-section {
    padding: 80px 0;
  }
  
  .premium-container {
    padding: 0 15px;
  }
  
  .premium-header {
    margin-bottom: 50px;
  }
  
  .premium-title {
    font-size: 2rem;
  }
  
  .premium-content {
    margin-bottom: 60px;
  }
  
  .premium-description {
    font-size: 1rem;
  }
  
  .room-types {
    margin-bottom: 60px;
  }
  
  .room-types-title {
    font-size: 2rem;
  }
  
  .room-item {
    grid-template-columns: 50px 1fr 50px;
    gap: 15px;
    padding: 20px 25px;
  }
  
  .room-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .room-content h4 {
    font-size: 1.2rem;
  }
  
  .room-content p {
    font-size: 0.9rem;
  }
  
  .room-icon {
    width: 35px;
    height: 35px;
  }
  
  .room-icon i {
    font-size: 1.1rem;
  }
  
  .dealer-quality {
    padding: 40px 30px;
  }
  
  .quality-text h3 {
    font-size: 1.8rem;
  }
  
  .quality-text p {
    font-size: 1rem;
  }
  
  .quality-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-box {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .premium-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .premium-description {
    font-size: 0.95rem;
  }
  
  .room-types-title {
    font-size: 1.6rem;
  }
  
  .room-item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }
  
  .room-number {
    margin: 0 auto;
  }
  
  .room-icon {
    margin: 0 auto;
  }
  
  .dealer-quality {
    padding: 30px 20px;
  }
  
  .quality-text h3 {
    font-size: 1.5rem;
  }
  
  .quality-text p {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-box h4 {
    font-size: 1rem;
  }
  
  .feature-box p {
    font-size: 0.85rem;
  }
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom center, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.comparison-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.comparison-intro strong {
  color: #ffd700;
  font-weight: 700;
}

.comparison-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.comparison-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.comparison-description p {
  margin-bottom: 25px;
}

.comparison-description strong {
  color: #ffd700;
  font-weight: 700;
}

.comparison-description a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.comparison-description a:hover {
  color: #ffd700;
}

.comparison-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.comparison-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

.comparison-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 140, 66, 0.9));
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.badge-item i {
  font-size: 0.9rem;
}

/* Features Comparison */
.features-comparison {
  margin-bottom: 80px;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
  border-radius: 3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

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

.feature-header {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-header i {
  font-size: 1.8rem;
  color: white;
}

.feature-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.feature-content {
  padding: 30px;
}

.feature-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.feature-content strong {
  color: #ffd700;
  font-weight: 700;
}

/* Comparison Stats */
.comparison-stats {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.comparison-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(102, 126, 234, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .comparison-title {
    font-size: 2.4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
  
  .comparison-container {
    padding: 0 15px;
  }
  
  .comparison-header {
    margin-bottom: 40px;
  }
  
  .comparison-title {
    font-size: 2rem;
  }
  
  .comparison-intro {
    margin-bottom: 50px;
  }
  
  .comparison-intro p {
    font-size: 1rem;
  }
  
  .comparison-content {
    margin-bottom: 60px;
  }
  
  .comparison-description {
    font-size: 1rem;
  }
  
  .comparison-badges {
    top: 15px;
    right: 15px;
  }
  
  .features-comparison {
    margin-bottom: 60px;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-header {
    padding: 20px 25px;
  }
  
  .feature-header i {
    font-size: 1.5rem;
  }
  
  .feature-header h4 {
    font-size: 1.2rem;
  }
  
  .feature-content {
    padding: 25px;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .comparison-stats {
    padding: 40px 30px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 25px 20px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .comparison-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .comparison-intro p {
    font-size: 0.95rem;
  }
  
  .comparison-description {
    font-size: 0.95rem;
  }
  
  .badge-item {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .feature-header {
    padding: 18px 20px;
    gap: 12px;
  }
  
  .feature-header i {
    font-size: 1.3rem;
  }
  
  .feature-header h4 {
    font-size: 1.1rem;
  }
  
  .feature-content {
    padding: 20px;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .comparison-stats {
    padding: 30px 20px;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 15px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon i {
    font-size: 1.4rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Strategies Section */
.strategies-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.strategies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.strategies-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1000px;
  margin: 0 auto;
}

.strategies-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.strategies-description {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.strategies-description p {
  margin-bottom: 25px;
}

.strategies-description strong {
  color: #ffd700;
  font-weight: 700;
}

.strategies-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.strategies-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.strategies-image:hover .strategies-img {
  transform: scale(1.08);
}

.strategies-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.strategies-badge i {
  font-size: 1rem;
}

/* Techniques List */
.techniques-list {
  margin-bottom: 80px;
}

.techniques-list-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.techniques-list-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #ffd700, #667eea);
  border-radius: 3px;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.technique-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.technique-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s;
}

.technique-box:hover::before {
  left: 100%;
}

.technique-box:hover {
  transform: translateY(-8px);
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.technique-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.technique-box:hover .technique-icon {
  transform: scale(1.1) rotate(-5deg);
}

.technique-icon i {
  font-size: 1.8rem;
  color: white;
}

.technique-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.technique-box p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Money Management */
.money-management {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 60px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.money-management::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.management-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.management-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 30px;
}

.management-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.management-text strong {
  color: #ffd700;
  font-weight: 700;
}

.management-text a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.management-text a:hover {
  color: #ffd700;
}

.management-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.stat-circle {
  position: relative;
}

.circle-progress {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    #ff6b35 0deg,
    #ff8c42 90deg,
    rgba(255, 255, 255, 0.1) 90deg,
    rgba(255, 255, 255, 0.1) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle-inner {
  width: 90px;
  height: 90px;
  background: #1a1a2e;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circle-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
  font-family: 'Prompt', sans-serif;
}

.circle-label {
  font-size: 0.7rem;
  color: #b0b0b0;
  font-weight: 600;
  line-height: 1.2;
}

/* Success Guarantee */
.success-guarantee {
  margin-bottom: 60px;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
}

.guarantee-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.8s;
}

.guarantee-content:hover::before {
  left: 100%;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.guarantee-icon i {
  font-size: 2.5rem;
  color: #1a1a2e;
}

.guarantee-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.guarantee-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.guarantee-text strong {
  color: #ffd700;
  font-weight: 700;
}

/* Final Advice */
.final-advice {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.advice-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.advice-content strong {
  color: #ffd700;
  font-weight: 700;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button i {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .strategies-title {
    font-size: 2.4rem;
  }
  
  .techniques-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .management-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .management-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 80px 0;
  }
  
  .strategies-container {
    padding: 0 15px;
  }
  
  .strategies-header {
    margin-bottom: 50px;
  }
  
  .strategies-title {
    font-size: 2rem;
  }
  
  .strategies-content {
    margin-bottom: 60px;
  }
  
  .strategies-description {
    font-size: 1rem;
  }
  
  .techniques-list {
    margin-bottom: 60px;
  }
  
  .techniques-list-title {
    font-size: 2rem;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .technique-box {
    padding: 25px 20px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.5rem;
  }
  
  .technique-box h4 {
    font-size: 1.2rem;
  }
  
  .technique-box p {
    font-size: 0.95rem;
  }
  
  .money-management {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .management-text h3 {
    font-size: 1.8rem;
  }
  
  .management-text p {
    font-size: 1rem;
  }
  
  .management-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .circle-progress {
    width: 100px;
    height: 100px;
  }
  
  .circle-inner {
    width: 75px;
    height: 75px;
  }
  
  .circle-number {
    font-size: 1.3rem;
  }
  
  .circle-label {
    font-size: 0.65rem;
  }
  
  .guarantee-content {
    padding: 30px 25px;
  }
  
  .guarantee-icon {
    width: 70px;
    height: 70px;
  }
  
  .guarantee-icon i {
    font-size: 2rem;
  }
  
  .guarantee-text h3 {
    font-size: 1.7rem;
  }
  
  .guarantee-text p {
    font-size: 1rem;
  }
  
  .final-advice {
    padding: 40px 30px;
  }
  
  .advice-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .cta-button i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .strategies-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .strategies-description {
    font-size: 0.95rem;
  }
  
  .techniques-list-title {
    font-size: 1.6rem;
  }
  
  .technique-box {
    padding: 20px 15px;
  }
  
  .technique-icon {
    width: 55px;
    height: 55px;
  }
  
  .technique-icon i {
    font-size: 1.3rem;
  }
  
  .technique-box h4 {
    font-size: 1.1rem;
  }
  
  .technique-box p {
    font-size: 0.9rem;
  }
  
  .money-management {
    padding: 30px 20px;
  }
  
  .management-text h3 {
    font-size: 1.5rem;
  }
  
  .management-text p {
    font-size: 0.95rem;
  }
  
  .circle-progress {
    width: 90px;
    height: 90px;
  }
  
  .circle-inner {
    width: 65px;
    height: 65px;
  }
  
  .circle-number {
    font-size: 1.1rem;
  }
  
  .circle-label {
    font-size: 0.6rem;
  }
  
  .guarantee-content {
    padding: 25px 20px;
  }
  
  .guarantee-icon {
    width: 60px;
    height: 60px;
  }
  
  .guarantee-icon i {
    font-size: 1.8rem;
  }
  
  .guarantee-text h3 {
    font-size: 1.4rem;
  }
  
  .guarantee-text p {
    font-size: 0.95rem;
  }
  
  .final-advice {
    padding: 30px 20px;
  }
  
  .advice-content p {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-button i {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0a0a1a 0%, #16213e 50%, #1a1a2e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

/* Footer Brand Section */
.footer-brand {
  max-width: 100%;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}

.footer-logo-tagline {
  font-size: 0.8rem;
  color: #ff6b35;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.footer-description {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.contact-item i {
  color: #ffd700;
  width: 16px;
  font-size: 1rem;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

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

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(5px);
}

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

/* Security Badges */
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.security-badge i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-desc {
  color: #b0b0b0;
  font-size: 0.75rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

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

.legal-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ffd700;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.copyright p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.disclaimer {
  font-size: 0.8rem !important;
  color: #888 !important;
  max-width: 600px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
  }
  
  .footer-games {
    grid-column: span 2;
  }
  
  .footer-security {
    grid-column: span 2;
  }
  
  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .security-badge {
    flex: 1;
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 50px 0 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-security {
    grid-column: span 2;
  }
  
  .security-badges {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .security-badge {
    flex: 1;
    min-width: 120px;
    padding: 10px 12px;
  }
  
  .badge-title {
    font-size: 0.8rem;
  }
  
  .badge-desc {
    font-size: 0.7rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .legal-links {
    gap: 20px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.75rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .security-badge {
    min-width: auto;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-legal {
    gap: 15px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer {
    font-size: 0.75rem !important;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 -4px 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;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sticky-btn:hover::before {
  transform: translateX(100%);
}

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}

/* Individual button styles */
.sticky-btn-login {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #0e8078, #2dd865);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 153, 142, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  animation: pulse-bonus 2s infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #e55a2b, #e57a30);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: none;
}

@keyframes pulse-bonus {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
    font-size: 0.8rem;
  }
  
  .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;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

/* Login Section */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a 0%, #16213e 50%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

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

.login-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.login-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.login-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.login-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

/* Error Message */
.error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 15px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

/* Form Styles */
.login-form {
  position: relative;
  z-index: 1;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-label i {
  width: 16px;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #888;
  opacity: 1;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.05);
}

.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #ffd700;
}

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 10px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #b0b0b0;
  position: relative;
}

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

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffd700;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.forgot-password {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #ffd700;
}

/* Buttons */
.login-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.login-btn::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;
}

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

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

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

.login-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-loader {
  display: none;
}

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

.login-btn.loading .btn-loader {
  display: block;
  position: absolute;
}

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

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  background: rgba(26, 26, 46, 1);
  color: #888;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.register-btn::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;
}

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Login Footer */
.login-footer {
  text-align: center;
  position: relative;
  z-index: 1;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888;
  font-size: 0.8rem;
}

.security-info i {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 70px;
  }
  
  .login-box {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .login-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 10px 60px;
  }
  
  .login-box {
    padding: 25px 20px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 16px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.75rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a 0%, #16213e 50%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

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

.register-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.register-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.register-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.register-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

.register-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.register-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  padding: 15px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.success-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

/* Error Message */
.error-message {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 15px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

/* Form Styles */
.register-form {
  position: relative;
  z-index: 1;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-label i {
  width: 16px;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #888;
  opacity: 1;
}

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(220, 53, 69, 0.05);
}

.form-input.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.05);
}

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.input-error.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #888;
  font-size: 0.8rem;
}

.input-help i {
  font-size: 0.75rem;
  color: #ffd700;
}

/* Terms Wrapper */
.terms-wrapper {
  margin-bottom: 25px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
}

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

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffd700;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}

.checkbox-text {
  flex: 1;
}

.terms-link {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Buttons */
.register-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.register-btn::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;
}

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

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

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

.register-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-loader {
  display: none;
}

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

.register-btn.loading .btn-loader {
  display: block;
  position: absolute;
}

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

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  background: rgba(26, 26, 46, 1);
  color: #888;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  width: 100%;
  padding: 16px 30px;
  background: transparent;
  border: 2px solid #667eea;
  border-radius: 15px;
  color: #667eea;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.login-btn:hover {
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Register Footer */
.register-footer {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-info,
.age-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888;
  font-size: 0.8rem;
}

.security-info i,
.age-notice i {
  color: #ffd700;
}

.age-notice {
  color: #ff6b35;
  font-weight: 600;
}

.age-notice i {
  color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 70px;
  }
  
  .register-box {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .register-btn {
    padding: 16px 25px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 10px 60px;
  }
  
  .register-box {
    padding: 25px 20px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 16px;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .register-footer {
    gap: 8px;
  }
  
  .security-info,
  .age-notice {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a1a 0%, #16213e 50%, #1a1a2e 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(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta-btn::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;
}

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

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

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

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

.promotion-section:nth-child(even) {
  background: linear-gradient(180deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.promotion-section.alt {
  background: linear-gradient(180deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.promotion-section.alt::before {
  background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.08) 0%, transparent 60%);
}

.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

.promotion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Promotion Header */
.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.promotion-card:hover .promotion-icon {
  transform: scale(1.1) rotate(5deg);
}

.promotion-icon i {
  font-size: 2.2rem;
  color: white;
}

.promotion-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Promotion Content */
.promotion-content {
  position: relative;
  z-index: 1;
}

.promotion-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 30px;
}

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

.promotion-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #ffffff;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.promotion-features li:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.promotion-features li i {
  color: #28a745;
  font-size: 1.2rem;
  width: 20px;
}

.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.promotion-cta-btn::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;
}

.promotion-cta-btn:hover::before {
  left: 100%;
}

.promotion-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.promotion-cta-btn i {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta-btn {
    font-size: 1.2rem;
    padding: 18px 35px;
  }
  
  .promotion-card {
    padding: 40px;
  }
  
  .promotion-header {
    gap: 15px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-description {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .promotion-features {
    margin-bottom: 35px;
  }
  
  .promotion-features li {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .promotion-cta-btn {
    font-size: 1.1rem;
    padding: 16px 30px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 14px 25px;
  }
  
  .hero-cta-btn i {
    font-size: 1.2rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.6rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .promotion-description {
    font-size: 1rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    padding: 8px 12px;
  }
  
  .promotion-features li i {
    font-size: 1.1rem;
  }
  
  .promotion-cta-btn {
    font-size: 1rem;
    padding: 14px 25px;
  }
  
  .promotion-cta-btn i {
    font-size: 1.2rem;
  }
}