/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f79256;
  --accent-color: #fdb462;
  --bg-dark: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #232323;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #333333;
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f79256 100%);
  --gradient-secondary: linear-gradient(135deg, #fdb462 0%, #ff6b35 100%);
  --shadow-light: 0 4px 15px rgba(255, 107, 53, 0.2);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Button Styles */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, var(--bg-dark) 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/casino-pattern.svg') repeat;
  opacity: 0.03;
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

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

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

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

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 20px;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

/* Logo */
.header-logo .logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

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

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.nav-link i {
  font-size: 0.9rem;
}

/* CTA Button */
.header-cta {
  display: flex;
  align-items: center;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  border: none;
  cursor: pointer;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

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

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-color);
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

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

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

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

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

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* Mobile Navigation */
.mobile-nav {
  padding: 20px 0;
}

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

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

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

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

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::before {
  width: 4px;
}

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

.mobile-nav-link i {
  font-size: 1.1rem;
  min-width: 20px;
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
  border: none;
  padding: 0 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

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

/* Body padding for fixed header */
body {
  padding-top: 70px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .header-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-content {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  body {
    padding-top: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .mobile-menu-content {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 18px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%), linear-gradient(-45deg, rgba(247, 146, 86, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

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

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

.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.5s ease;
}

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

.feature-card:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-light);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

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

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description {
    margin-bottom: 40px;
  }
  
  .about-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
}

/* Wallet System Section */
.wallet-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(247, 146, 86, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.wallet-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

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

.wallet-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

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

.wallet-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

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

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

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

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

.wallet-feature:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.feature-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.wallet-actions {
  display: flex;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-content {
    gap: 60px;
  }
  
  .wallet-title {
    font-size: 2.2rem;
  }
  
  .wallet-description p {
    font-size: 1rem;
  }
  
  .wallet-features {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 0;
  }
  
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .wallet-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .wallet-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .wallet-feature {
    padding: 25px 20px;
  }
  
  .feature-number {
    font-size: 2.2rem;
  }
  
  .wallet-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wallet-container {
    padding: 0 15px;
  }
  
  .wallet-title {
    font-size: 1.8rem;
  }
  
  .wallet-description {
    margin-bottom: 30px;
  }
  
  .wallet-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .wallet-features {
    margin-bottom: 30px;
    gap: 15px;
  }
  
  .wallet-feature {
    padding: 20px 15px;
  }
  
  .feature-number {
    font-size: 2rem;
  }
  
  .feature-unit {
    font-size: 0.8rem;
  }
  
  .feature-desc {
    font-size: 0.9rem;
  }
  
  .wallet-actions {
    width: 100%;
  }
  
  .wallet-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Registration Section */
.registration-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center left, rgba(253, 180, 98, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.registration-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.registration-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

.steps-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.steps-list {
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: var(--bg-dark);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.registration-info {
  margin-bottom: 40px;
}

.registration-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.registration-info strong {
  color: var(--primary-color);
  font-weight: 700;
}

.registration-info a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.registration-info a:hover {
  color: var(--secondary-color);
}

.registration-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.registration-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-content {
    gap: 60px;
  }
  
  .registration-title {
    font-size: 2.2rem;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 80px 0;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .registration-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .registration-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-title {
    font-size: 1.8rem;
  }
  
  .registration-description {
    margin-bottom: 30px;
  }
  
  .registration-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .steps-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .steps-list {
    margin-bottom: 30px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .step-number {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .registration-info {
    margin-bottom: 30px;
  }
  
  .registration-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .registration-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .registration-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Strategies Section */
.strategies-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.strategies-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.strategies-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: flex-start;
}

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

.strategies-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
  transition: transform 0.3s ease;
}

.strategies-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.strategies-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

.strategies-description a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.strategies-description a:hover {
  color: var(--secondary-color);
}

.strategies-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.tip-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tip-item:hover::before {
  transform: scaleY(1);
}

.tip-item:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.tip-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.tip-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.tip-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.strategies-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategies-content {
    gap: 60px;
  }
  
  .strategies-title {
    font-size: 2.2rem;
  }
  
  .strategies-description p {
    font-size: 0.95rem;
  }
  
  .strategies-tips {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 80px 0;
  }
  
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .strategies-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .strategies-tips {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tip-item {
    padding: 15px;
    gap: 12px;
  }
  
  .tip-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .tip-content h4 {
    font-size: 0.95rem;
  }
  
  .tip-content p {
    font-size: 0.8rem;
  }
  
  .strategies-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .strategies-container {
    padding: 0 15px;
  }
  
  .strategies-title {
    font-size: 1.8rem;
  }
  
  .strategies-description {
    margin-bottom: 30px;
  }
  
  .strategies-description p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .strategies-tips {
    margin-bottom: 30px;
  }
  
  .tip-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .tip-icon {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .strategies-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .strategies-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Comparison Section */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center left, rgba(253, 180, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.comparison-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.comparison-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

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

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

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

.comparison-description a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.comparison-description a:hover {
  color: var(--secondary-color);
}

.highlights-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.highlights-list {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--bg-dark);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.highlight-item strong {
  color: var(--primary-color);
}

.comparison-conclusion {
  margin-bottom: 40px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
}

.comparison-conclusion p {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  font-weight: 600;
}

.comparison-conclusion strong {
  color: var(--primary-color);
}

.comparison-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.comparison-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.comparison-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.comparison-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-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.5s ease;
}

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

.stat-card:hover {
  background: var(--bg-dark);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: -5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .comparison-content {
    gap: 60px;
  }
  
  .comparison-title {
    font-size: 2.2rem;
  }
  
  .comparison-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
  
  .comparison-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .comparison-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .highlights-title {
    font-size: 1.3rem;
  }
  
  .highlight-item {
    padding: 12px;
    gap: 12px;
  }
  
  .highlight-item i {
    font-size: 1.1rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .comparison-conclusion {
    padding: 20px;
  }
  
  .comparison-conclusion p {
    font-size: 1rem;
  }
  
  .comparison-actions {
    justify-content: center;
  }
  
  .comparison-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-card {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    gap: 10px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-unit {
    font-size: 0.75rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .comparison-container {
    padding: 0 15px;
  }
  
  .comparison-title {
    font-size: 1.8rem;
  }
  
  .comparison-description {
    margin-bottom: 30px;
  }
  
  .comparison-description p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .highlights-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .highlights-list {
    margin-bottom: 25px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .highlight-item i {
    margin-bottom: 5px;
  }
  
  .comparison-conclusion {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .comparison-conclusion p {
    font-size: 0.95rem;
  }
  
  .comparison-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .comparison-actions a {
    width: 100%;
    justify-content: center;
  }
  
  .comparison-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-card {
    justify-content: center;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

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

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

/* Footer Main Content */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.footer-logo-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

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

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

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

.contact-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
  min-width: 16px;
}

/* Footer Sections */
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

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

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

.footer-link i {
  font-size: 0.8rem;
  min-width: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-link:hover i {
  opacity: 1;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-copyright {
  flex: 1;
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  opacity: 0.8;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 15px;
}

.payment-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.payment-icon:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-info {
    grid-column: 1 / -1;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-highlight {
    justify-content: center;
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-payment {
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-icons {
    gap: 10px;
  }
  
  .payment-icon {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

/* Button Variants */
.sticky-btn-login {
  background: rgba(52, 152, 219, 0.1);
}

.sticky-btn-login:hover {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

.sticky-btn-login:hover::before {
  background: #3498db;
}

.sticky-btn-login i {
  color: #3498db;
}

.sticky-btn-register {
  background: rgba(46, 204, 113, 0.1);
}

.sticky-btn-register:hover {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.sticky-btn-register:hover::before {
  background: #2ecc71;
}

.sticky-btn-register i {
  color: #2ecc71;
}

.sticky-btn-bonus {
  background: rgba(255, 107, 53, 0.1);
  border-left: 1px solid var(--border-color);
}

.sticky-btn-bonus:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary-color);
}

.sticky-btn-bonus:hover::before {
  background: var(--primary-color);
}

.sticky-btn-bonus i {
  color: var(--primary-color);
  animation: pulse 2s infinite;
}

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

/* Active/Touch States */
.sticky-btn:active {
  transform: scale(0.95);
}

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

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

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.65rem;
  }
  
  .sticky-btn i {
    font-size: 0.85rem;
  }
}

/* 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: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, var(--bg-dark) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%), linear-gradient(-45deg, rgba(247, 146, 86, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

/* Logo Section */
.login-logo {
  text-align: center;
  margin-bottom: 35px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1.3;
}

.login-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

/* Form Styles */
.login-form {
  margin-bottom: 30px;
}

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

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

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
  min-width: 16px;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

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

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

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-input.success {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

/* Password Input */
.password-input-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

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

/* Form Errors */
.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
  font-weight: 500;
}

.general-error {
  text-align: center;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  display: none;
}

.general-error.show {
  display: block;
}

/* Buttons */
.login-btn {
  width: 100%;
  padding: 15px 20px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

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

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

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

.login-btn .btn-text {
  transition: opacity 0.3s ease;
}

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

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

/* Form Divider */
.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.form-divider span {
  background: var(--bg-card);
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
}

.register-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Features */
.login-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 70px 15px 30px;
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  .register-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .login-features {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 10px 20px;
  }
  
  .login-container {
    max-width: 350px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .login-subtitle {
    font-size: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    width: 30px;
    height: 30px;
    right: 10px;
  }
  
  .login-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .register-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 40px;
  }
  
  .feature-item {
    font-size: 0.75rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, var(--bg-dark) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%), linear-gradient(-45deg, rgba(247, 146, 86, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

/* Logo Section */
.register-logo {
  text-align: center;
  margin-bottom: 35px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.register-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.register-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

/* Form Styles */
.register-form {
  margin-bottom: 30px;
}

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

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

.form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
  min-width: 16px;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

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

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

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-input.success {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

/* Form Errors */
.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
  font-weight: 500;
}

.general-error {
  text-align: center;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  display: none;
}

.general-error.show {
  display: block;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 15px 20px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

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

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

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

.register-btn .btn-text {
  transition: opacity 0.3s ease;
}

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

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

/* Form Divider */
.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.form-divider span {
  background: var(--bg-card);
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Login Button (Outline Style) */
.login-btn {
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
}

.login-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Features */
.register-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px;
  background: var(--bg-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  color: var(--text-primary);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
  min-width: 16px;
}

/* Success Message */
.success-message {
  text-align: center;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

.success-message h3 {
  color: #27ae60;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 70px 15px 30px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 60px 10px 20px;
  }
  
  .register-container {
    max-width: 350px;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.3rem;
  }
  
  .register-subtitle {
    font-size: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .login-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 40px;
  }
  
  .feature-item {
    font-size: 0.75rem;
    padding: 6px;
  }
  
  .feature-item i {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, var(--bg-dark) 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%), linear-gradient(-45deg, rgba(247, 146, 86, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

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

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

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 600;
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-cta i {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

/* Promotion Sections */
.promo-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.promo-section:nth-child(even) {
  background: var(--bg-dark);
}

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

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

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

.promo-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-light);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.promo-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.promo-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-badge.secondary {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.promo-badge.tertiary {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.promo-badge.quaternary {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.promo-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.promo-content {
  max-width: 700px;
  margin: 0 auto;
}

.promo-list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: rgba(255, 107, 53, 0.02);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.promo-list li:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(5px);
}

.promo-list li i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  padding: 18px 30px;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.promo-cta.secondary {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.promo-cta.secondary:hover {
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
}

.promo-cta.tertiary {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
  box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
}

.promo-cta.tertiary:hover {
  box-shadow: 0 12px 35px rgba(142, 68, 173, 0.4);
}

.promo-cta.quaternary {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.promo-cta.quaternary:hover {
  box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.promo-cta i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 30px;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .hero-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 50px 0;
  }
  
  .promo-card {
    padding: 30px 25px;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-list li {
    padding: 12px 15px;
  }
  
  .promo-cta {
    font-size: 1rem;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promo-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .hero-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promo-card {
    padding: 25px 20px;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list li {
    flex-direction: column;
    text-align: left;
    gap: 10px;
  }
  
  .promo-list li i {
    align-self: flex-start;
  }
  
  .promo-cta {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}