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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

a:hover {
  color: #ffed4e;
  text-decoration: none;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #0e1b2e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

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

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

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #e0e0e0;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.feature-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #1a1a2e;
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  color: #ffd700;
}

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

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

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

.hero-overlay {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 215, 0, 0.95);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: #1a1a2e;
}

.stat-item i {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #0f3460;
}

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 5px 0;
}

.stat-item p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .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: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    padding: 10px 16px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .stats-grid {
    gap: 15px;
  }
  
  .stat-item h3 {
    font-size: 1.3rem;
  }
  
  .hero-overlay {
    bottom: -15px;
    left: 15px;
    right: 15px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

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

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

.header-logo a {
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

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

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

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

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

.cta-button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  color: #1a1a2e;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  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;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

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

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

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

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ffed4e;
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.mobile-cta-item {
  margin-top: 20px;
}

.mobile-cta-button {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #1a1a2e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-header {
    padding: 15px 5px;
  }
  
  .mobile-logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-button {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
}

/* Body Padding for Fixed Header */
body {
  padding-top: 80px;
}

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

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
}

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

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

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

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

.about-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

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

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

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

.trust-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateX(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.trust-badge i {
  font-size: 1.1rem;
}

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

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

.about-description {
  margin-bottom: 3rem;
}

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

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

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 3rem;
}

.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 215, 0, 0.08);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.features-list .feature-item:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.features-list .feature-item i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.feature-content p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

.closing-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  padding: 25px;
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid #ffd700;
  border-radius: 10px;
}

.closing-text strong {
  color: #ffd700;
  font-weight: 600;
}

.about-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 18px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-platform-section {
    padding: 80px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .trust-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .trust-badge {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .features-list .feature-item {
    text-align: left;
  }
  
  .closing-text {
    text-align: left;
    padding: 20px;
    font-size: 1rem;
  }
  
  .about-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.9rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .features-list .feature-item {
    padding: 16px;
  }
  
  .features-list .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .closing-text {
    padding: 16px;
    font-size: 0.95rem;
  }
  
  .about-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Government Lottery Section */
.government-lottery-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.lottery-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lottery-description {
  margin-bottom: 2rem;
}

.lottery-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.lottery-description strong {
  color: #ffd700;
  font-weight: 600;
}

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

.lottery-description a:hover {
  color: #ffed4e;
}

.lottery-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

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

.payout-rates {
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.payout-card {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.payout-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 215, 0, 0.4);
}

.payout-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0f3460;
}

.payout-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.payout-card .rate {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 8px 0;
  color: #0f3460;
}

.payout-card span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Platforms Grid */
.platforms-grid {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.platforms-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 215, 0, 0.08);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.platform-item:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.platform-item i {
  color: #ffd700;
  font-size: 2rem;
  flex-shrink: 0;
}

.platform-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.platform-content p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* CTA Section */
.lottery-cta {
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  padding: 50px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 2;
}

.lottery-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
}

.lottery-cta p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

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

/* Responsive Design for Government Lottery Section */
@media (max-width: 1024px) {
  .lottery-container {
    padding: 0 18px;
  }
  
  .lottery-content {
    gap: 60px;
  }
  
  .lottery-title {
    font-size: 2.4rem;
  }
  
  .platforms-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .government-lottery-section {
    padding: 80px 0;
  }
  
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .lottery-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .lottery-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .payout-rates {
    position: static;
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .payout-card {
    padding: 18px;
  }
  
  .platforms-title {
    font-size: 1.9rem;
  }
  
  .platform-item {
    padding: 20px;
    text-align: left;
  }
  
  .lottery-cta {
    padding: 40px 25px;
  }
  
  .lottery-cta h3 {
    font-size: 1.7rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lottery-title {
    font-size: 1.9rem;
  }
  
  .lottery-description p {
    font-size: 0.95rem;
  }
  
  .platforms-title {
    font-size: 1.6rem;
  }
  
  .platform-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .platform-item i {
    font-size: 1.8rem;
  }
  
  .platform-content h4 {
    font-size: 1.1rem;
  }
  
  .platform-content p {
    font-size: 0.9rem;
  }
  
  .lottery-cta {
    padding: 35px 20px;
  }
  
  .lottery-cta h3 {
    font-size: 1.5rem;
  }
  
  .lottery-cta p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

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

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

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

.international-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

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

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

.time-badges {
  position: absolute;
  top: -25px;
  left: -25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.time-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.time-badge:hover {
  transform: translateX(5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.time-badge i {
  font-size: 1.1rem;
}

.international-text {
  animation: fadeInRight 1s ease-out;
}

.international-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.international-description {
  margin-bottom: 3rem;
}

.international-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.international-description strong {
  color: #ffd700;
  font-weight: 600;
}

.platforms-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.platform-showcase-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 215, 0, 0.08);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.platform-showcase-item:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.platform-showcase-item i {
  color: #ffd700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.showcase-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.showcase-content p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* Service Features */
.service-features {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.service-feature {
  background: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.feature-icon i {
  font-size: 2rem;
  color: #1a1a2e;
}

.service-feature h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

.service-feature p strong {
  color: #ffd700;
  font-weight: 600;
}

/* International CTA */
.international-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

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

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

.international-cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.international-cta p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

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

/* Responsive Design for International Lottery Section */
@media (max-width: 1024px) {
  .international-container {
    padding: 0 18px;
  }
  
  .international-content {
    gap: 60px;
  }
  
  .international-title {
    font-size: 2.4rem;
  }
  
  .platforms-showcase {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .international-lottery-section {
    padding: 80px 0;
  }
  
  .international-container {
    padding: 0 15px;
  }
  
  .international-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .time-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .time-badge {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .international-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .international-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-showcase-item {
    text-align: left;
  }
  
  .features-title {
    font-size: 1.9rem;
  }
  
  .service-feature {
    padding: 25px;
  }
  
  .international-cta {
    padding: 40px 25px;
  }
  
  .international-cta h3 {
    font-size: 1.9rem;
  }
  
  .international-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .international-title {
    font-size: 1.9rem;
  }
  
  .international-description p {
    font-size: 0.95rem;
  }
  
  .time-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .time-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .platform-showcase-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .platform-showcase-item i {
    font-size: 1.3rem;
  }
  
  .showcase-content h4 {
    font-size: 1rem;
  }
  
  .showcase-content p {
    font-size: 0.9rem;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .service-feature {
    padding: 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon i {
    font-size: 1.8rem;
  }
  
  .service-feature h4 {
    font-size: 1.2rem;
  }
  
  .service-feature p {
    font-size: 0.95rem;
  }
  
  .international-cta {
    padding: 30px 20px;
  }
  
  .international-cta h3 {
    font-size: 1.6rem;
  }
  
  .international-cta p {
    font-size: 1.1rem;
  }
  
  .international-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Stock Lottery Section */
.stock-lottery-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stock-lottery-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.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.stock-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stock-description {
  margin-bottom: 2rem;
}

.stock-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.stock-description strong {
  color: #ffd700;
  font-weight: 600;
}

.stock-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

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

.quick-stats {
  position: absolute;
  bottom: -25px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quick-stat {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 15px 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.quick-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.quick-stat i {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #0f3460;
}

.quick-stat .stat-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.quick-stat .stat-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Platforms Section */
.platforms-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.platforms-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.platforms-grid-stock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

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

.platform-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 2;
}

.platform-icon i {
  font-size: 2rem;
  color: #1a1a2e;
}

.platform-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.platform-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.platform-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.feature-tag {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-tag i {
  font-size: 0.8rem;
}

/* Performance Section */
.performance-section {
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.performance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.performance-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.performance-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.performance-text p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.performance-text a:hover {
  color: #ffed4e;
}

.performance-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.perf-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.perf-feature i {
  font-size: 1.8rem;
  color: #ffd700;
  flex-shrink: 0;
}

.perf-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.perf-feature p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* Stock CTA Section */
.stock-cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

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

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

.stock-cta-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stock-cta-section p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

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

/* Responsive Design for Stock Lottery Section */
@media (max-width: 1024px) {
  .stock-container {
    padding: 0 18px;
  }
  
  .stock-content {
    gap: 60px;
  }
  
  .stock-title {
    font-size: 2.4rem;
  }
  
  .platforms-grid-stock {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .performance-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stock-lottery-section {
    padding: 80px 0;
  }
  
  .stock-container {
    padding: 0 15px;
  }
  
  .stock-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .quick-stats {
    position: static;
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .stock-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .stock-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .platforms-section-title {
    font-size: 1.9rem;
  }
  
  .platform-card {
    padding: 25px;
  }
  
  .performance-section {
    padding: 40px 25px;
  }
  
  .performance-text {
    text-align: left;
  }
  
  .performance-features {
    text-align: left;
  }
  
  .stock-cta-section {
    padding: 40px 25px;
  }
  
  .stock-cta-section h3 {
    font-size: 1.9rem;
  }
  
  .stock-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stock-title {
    font-size: 1.9rem;
  }
  
  .stock-description p {
    font-size: 0.95rem;
  }
  
  .quick-stats {
    gap: 10px;
  }
  
  .quick-stat {
    padding: 12px 10px;
  }
  
  .quick-stat .stat-number {
    font-size: 1rem;
  }
  
  .quick-stat .stat-label {
    font-size: 0.75rem;
  }
  
  .platforms-section-title {
    font-size: 1.6rem;
  }
  
  .platform-card {
    padding: 20px;
  }
  
  .platform-icon {
    width: 70px;
    height: 70px;
  }
  
  .platform-icon i {
    font-size: 1.8rem;
  }
  
  .platform-card h4 {
    font-size: 1.2rem;
  }
  
  .platform-card p {
    font-size: 0.95rem;
  }
  
  .platform-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-tag {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
  
  .performance-section {
    padding: 30px 20px;
  }
  
  .performance-text h3 {
    font-size: 1.6rem;
  }
  
  .performance-text p {
    font-size: 1rem;
  }
  
  .perf-feature {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .perf-feature i {
    font-size: 1.6rem;
  }
  
  .perf-feature h4 {
    font-size: 1rem;
  }
  
  .perf-feature p {
    font-size: 0.9rem;
  }
  
  .stock-cta-section {
    padding: 30px 20px;
  }
  
  .stock-cta-section h3 {
    font-size: 1.6rem;
  }
  
  .stock-cta-section p {
    font-size: 1.1rem;
  }
  
  .stock-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

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

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

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

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

.app-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-description {
  margin-bottom: 3rem;
}

.app-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.app-description strong {
  color: #ffd700;
  font-weight: 600;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2rem;
}

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

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

.app-feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.app-feature-item span {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.app-feature-item a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.app-feature-item a:hover {
  color: #ffed4e;
}

.app-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  text-align: center;
}

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

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

.download-badges {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.download-badge i {
  font-size: 1.8rem;
}

.badge-text .platform {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.badge-text .subtitle {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* App Benefits Section */
.app-benefits-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 2;
}

.benefit-icon i {
  font-size: 2rem;
  color: #1a1a2e;
}

.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.benefit-card p a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.benefit-card p a:hover {
  color: #ffed4e;
}

/* App Compatibility Section */
.app-compatibility {
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.compatibility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.compatibility-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.compatibility-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

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

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

.compat-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.compat-feature i {
  font-size: 1.8rem;
  color: #ffd700;
  flex-shrink: 0;
}

.compat-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.compat-feature p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

/* App CTA Section */
.app-cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

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

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

.app-cta-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-cta-section p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}

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

/* Responsive Design for Mobile App Section */
@media (max-width: 1024px) {
  .app-container {
    padding: 0 18px;
  }
  
  .app-content {
    gap: 60px;
  }
  
  .app-title {
    font-size: 2.4rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .compatibility-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-app-section {
    padding: 80px 0;
  }
  
  .app-container {
    padding: 0 15px;
  }
  
  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .app-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .app-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .app-features-list {
    text-align: left;
  }
  
  .app-feature-item {
    text-align: left;
  }
  
  .download-badges {
    justify-content: center;
  }
  
  .benefits-title {
    font-size: 1.9rem;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .app-compatibility {
    padding: 40px 25px;
  }
  
  .compatibility-text {
    text-align: left;
  }
  
  .compatibility-features {
    text-align: left;
  }
  
  .app-cta-section {
    padding: 40px 25px;
  }
  
  .app-cta-section h3 {
    font-size: 1.9rem;
  }
  
  .app-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .app-title {
    font-size: 1.9rem;
  }
  
  .app-description p {
    font-size: 0.95rem;
  }
  
  .app-feature-item {
    padding: 12px 16px;
  }
  
  .app-feature-item span {
    font-size: 0.95rem;
  }
  
  .download-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .download-badge {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .benefits-title {
    font-size: 1.6rem;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
  }
  
  .benefit-icon i {
    font-size: 1.8rem;
  }
  
  .benefit-card h4 {
    font-size: 1.2rem;
  }
  
  .benefit-card p {
    font-size: 0.95rem;
  }
  
  .app-compatibility {
    padding: 30px 20px;
  }
  
  .compatibility-text h3 {
    font-size: 1.6rem;
  }
  
  .compatibility-text p {
    font-size: 1rem;
  }
  
  .compat-feature {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .compat-feature i {
    font-size: 1.6rem;
  }
  
  .compat-feature h4 {
    font-size: 1rem;
  }
  
  .compat-feature p {
    font-size: 0.9rem;
  }
  
  .app-cta-section {
    padding: 30px 20px;
  }
  
  .app-cta-section h3 {
    font-size: 1.6rem;
  }
  
  .app-cta-section p {
    font-size: 1.1rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Footer About Section */
.footer-about {
  padding-right: 20px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  display: block;
}

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

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

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

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

/* Footer Sections */
.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

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

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

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

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: #ffd700;
}

/* Footer Features */
.footer-features {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
}

.feature-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-2px);
}

.highlight-item i {
  font-size: 2rem;
  color: #ffd700;
  flex-shrink: 0;
}

.highlight-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.highlight-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

/* Footer Payment */
.footer-payment {
  margin-bottom: 40px;
}

.payment-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
  text-align: center;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-item {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.payment-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 8px;
  display: block;
}

.payment-item span {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 25px 0;
  margin: 0 -20px;
}

.footer-bottom-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.footer-disclaimer {
  text-align: right;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: #ff9999;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-text i {
  font-size: 1rem;
  color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 18px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .feature-highlight {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 0;
    margin-top: 80px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-about {
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-disclaimer {
    text-align: center;
  }
  
  .disclaimer-text {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-features {
    padding: 20px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item i {
    font-size: 1.8rem;
  }
  
  .highlight-content h5 {
    font-size: 0.95rem;
  }
  
  .highlight-content p {
    font-size: 0.8rem;
  }
  
  .payment-item {
    padding: 15px 10px;
  }
  
  .payment-item i {
    font-size: 1.3rem;
  }
  
  .payment-item span {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  z-index: 998;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.sticky-btn i {
  font-size: 1.4rem;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.sticky-btn span {
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Individual Button Styles */
.login-btn {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.login-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  color: #60a5fa;
}

.login-btn i {
  color: #3b82f6;
}

.login-btn:hover i {
  color: #60a5fa;
  transform: scale(1.1);
}

.register-btn {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.register-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #34d399;
}

.register-btn i {
  color: #10b981;
}

.register-btn:hover i {
  color: #34d399;
  transform: scale(1.1);
}

.credit-btn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 237, 78, 0.1) 100%);
}

.credit-btn:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 237, 78, 0.15) 100%);
  color: #ffd700;
}

.credit-btn i {
  color: #ffd700;
}

.credit-btn:hover i {
  color: #ffed4e;
  transform: scale(1.1);
}

/* Button Separators */
.sticky-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top-width: 2px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    border-top-width: 2px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

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

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

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

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

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

.login-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.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-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: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

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

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

/* Error Message */
.error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.error-message i {
  color: #ef4444;
  font-size: 1.1rem;
}

.error-message span {
  color: #fca5a5;
  font-size: 0.9rem;
}

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

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

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

.form-label i {
  color: #ffd700;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ef4444;
  background: rgba(220, 38, 38, 0.05);
}

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

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

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

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

/* Form Actions */
.form-actions {
  margin-top: 30px;
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

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

.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%);
}

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

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

.divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #b0b0b0;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.register-btn {
  width: 100%;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffed4e;
  border-color: #ffed4e;
}

/* Login Footer */
.login-footer {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.security-item i {
  color: #10b981;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
    min-height: calc(100vh - 140px);
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
}

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

.register-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.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-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: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

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

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

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

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

/* Messages */
.error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.error-message i {
  color: #ef4444;
  font-size: 1.1rem;
}

.error-message span {
  color: #fca5a5;
  font-size: 0.9rem;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.success-message i {
  color: #22c55e;
  font-size: 1.1rem;
}

.success-message span {
  color: #86efac;
  font-size: 0.9rem;
}

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

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

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

.form-label i {
  color: #ffd700;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ef4444;
  background: rgba(220, 38, 38, 0.05);
}

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

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

.field-help i {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Form Actions */
.form-actions {
  margin-top: 30px;
}

.register-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

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

.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%);
}

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

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

.divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #b0b0b0;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.login-btn {
  width: 100%;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffed4e;
  border-color: #ffed4e;
}

/* Register Footer */
.register-footer {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.terms-info {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #e0e0e0;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.terms-text i {
  color: #ffd700;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-text strong {
  color: #ffd700;
}

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

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.security-item i {
  color: #10b981;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
    min-height: calc(100vh - 140px);
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .terms-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  max-width: 1000px;
  margin: 0;
  animation: fadeInUp 1s ease-out;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.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 40px;
  box-shadow: 0 25px 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%, rgba(255, 215, 0, 0.02) 100%);
  pointer-events: none;
}

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

.promotion-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.promotion-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.promotion-card:hover .promotion-icon {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

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

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

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

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

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

.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: #10b981;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-cta {
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 18px 35px;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  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.6s ease;
}

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

.cta-button:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(255, 215, 0, 0.4);
  color: #1a1a2e;
}

.cta-button i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .promotion-container {
    padding: 0 18px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 35px 25px;
  }
  
  .promotion-icon {
    width: 80px;
    height: 80px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-features li {
    font-size: 1rem;
    padding: 12px 15px;
  }
  
  .cta-button {
    font-size: 1.2rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .promotion-header {
    margin-bottom: 30px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-features {
    margin-bottom: 30px;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    padding: 10px 12px;
    margin-bottom: 15px;
  }
  
  .promotion-features li i {
    font-size: 1.1rem;
  }
  
  .cta-button {
    font-size: 1.1rem;
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
  }
  
  .cta-button i {
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-features li {
    font-size: 0.9rem;
  }
  
  .cta-button {
    font-size: 1rem;
  }
}