/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #00d4aa;
  --bg-primary: #0a0e1a;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #242937;
  --text-primary: #ffffff;
  --text-secondary: #b0b8c8;
  --text-accent: #ff6b35;
  --border-color: #2d3748;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
}

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

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

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;
}

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

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

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

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 20px 0;
  border-radius: 2px;
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  width: 24px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

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

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

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

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

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

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

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.2);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

/* 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);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 12px;
  }
  
  .feature-item {
    padding: 8px 0;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-title::after {
    width: 80px;
    margin: 16px auto;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

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

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

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

.logo-link i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.logo-text {
  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;
}

.nav {
  display: flex;
  align-items: center;
}

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

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

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

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

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
}

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

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

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

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

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

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

.mobile-menu {
  background: var(--bg-secondary);
  width: 100%;
  max-width: 400px;
  height: 100%;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-right: 1px solid var(--border-color);
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-family: "Prompt", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mobile-close {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
}

.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: 16px;
  padding: 16px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

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

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

/* Responsive Design for Header */
@media (max-width: 1024px) {
  .nav-list {
    gap: 24px;
  }
  
  .btn-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .nav,
  .header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-link i {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.2rem;
  }
  
  .mobile-logo i {
    font-size: 1.3rem;
  }
}

/* Section 2: Lottery Online */
.lottery-online-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #242937 50%, #2d3748 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.lottery-online-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.section-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-text {
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 20px 0;
  border-radius: 2px;
}

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

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

.section-description strong {
  color: var(--primary-color);
  font-weight: 600;
}

.features-grid {
  background: rgba(45, 55, 72, 0.3);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.features-title {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(26, 31, 46, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.feature-card i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

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

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

.section-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.section-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05) contrast(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.overlay-content i {
  font-size: 2rem;
  color: white;
  margin-bottom: 8px;
}

.overlay-content h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  margin: 0;
}

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

/* Responsive Design for Section 2 */
@media (max-width: 1024px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title {
    font-size: 2.4rem;
    text-align: center;
  }
  
  .section-title::after {
    margin: 20px auto;
  }
  
  .features-grid {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .lottery-online-section {
    padding: 80px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description p {
    font-size: 1rem;
  }
  
  .features-grid {
    padding: 24px;
  }
  
  .features-title {
    font-size: 1.2rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card i {
    font-size: 1.3rem;
    width: 28px;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .lottery-online-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  
  .section-title::after {
    width: 60px;
    margin: 16px auto;
  }
  
  .features-grid {
    padding: 20px;
  }
  
  .feature-card {
    padding: 14px;
    gap: 12px;
  }
  
  .image-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px;
  }
  
  .overlay-content i {
    font-size: 1.6rem;
  }
  
  .overlay-content h4 {
    font-size: 1rem;
  }
  
  .overlay-content p {
    font-size: 1.2rem;
  }
}

/* Section 3: International Standard */
.international-standard-section {
  background: linear-gradient(135deg, #242937 0%, #2d3748 50%, #1a1f2e 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.international-standard-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.international-standard-section .section-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.international-standard-section .section-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInLeft 0.8s ease-out;
}

.international-standard-section .section-img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.05);
}

.image-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gradient-secondary);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
  animation: slideInDown 0.8s ease-out 0.5s both;
}

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

.international-standard-section .section-text {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.international-standard-section .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
}

.international-standard-section .section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 20px 0;
  border-radius: 2px;
}

.international-standard-section .section-description {
  margin-bottom: 40px;
}

.international-standard-section .section-description p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.international-standard-section .section-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

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

.international-standard-section .section-description a:hover {
  color: var(--secondary-color);
}

.security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(26, 31, 46, 0.3);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: rgba(45, 55, 72, 0.4);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 212, 170, 0.1);
}

.security-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
  width: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

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

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

/* Responsive Design for Section 3 */
@media (max-width: 1024px) {
  .international-standard-section .section-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .international-standard-section .section-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .international-standard-section .section-title::after {
    margin: 20px auto;
  }
  
  .security-features {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .international-standard-section {
    padding: 80px 15px;
  }
  
  .international-standard-section .section-title {
    font-size: 1.9rem;
  }
  
  .international-standard-section .section-description p {
    font-size: 1rem;
  }
  
  .security-features {
    padding: 20px;
  }
  
  .security-item {
    padding: 16px;
  }
  
  .security-item i {
    font-size: 1.2rem;
    width: 24px;
  }
  
  .security-content h4 {
    font-size: 1rem;
  }
  
  .security-content p {
    font-size: 0.9rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .international-standard-section {
    padding: 60px 15px;
  }
  
  .international-standard-section .section-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .international-standard-section .section-title::after {
    width: 50px;
    margin: 16px auto;
  }
  
  .security-features {
    padding: 16px;
  }
  
  .security-item {
    padding: 14px;
    gap: 12px;
  }
  
  .image-badge {
    top: 10px;
    left: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Section 4: Comprehensive Lottery */
.comprehensive-lottery-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #242937 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

.comprehensive-lottery-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.comprehensive-lottery-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.comprehensive-lottery-section .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 24px auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle strong {
  color: var(--primary-color);
  font-weight: 600;
}

.comprehensive-lottery-section .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.content-text {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

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

.description-content strong {
  color: var(--accent-color);
  font-weight: 600;
}

.action-buttons {
  margin-top: 32px;
}

.lottery-types {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.types-title {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.types-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.lottery-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(26, 31, 46, 0.6);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lottery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.lottery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border-color: var(--primary-color);
}

.lottery-card:hover::before {
  transform: scaleY(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.card-content {
  flex: 1;
  position: relative;
}

.card-content h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 600;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comprehensive-lottery-section .section-image {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.comprehensive-lottery-section .section-img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1) saturate(1.1);
}

/* Responsive Design for Section 4 */
@media (max-width: 1024px) {
  .comprehensive-lottery-section .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comprehensive-lottery-section .section-title {
    font-size: 2.4rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .comprehensive-lottery-section {
    padding: 80px 15px;
  }
  
  .comprehensive-lottery-section .section-title {
    font-size: 2rem;
  }
  
  .comprehensive-lottery-section .section-title::after {
    width: 80px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .description-content p {
    font-size: 1rem;
  }
  
  .types-title {
    font-size: 1.4rem;
  }
  
  .lottery-card {
    padding: 16px;
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
  }
  
  .card-icon i {
    font-size: 1.2rem;
  }
  
  .card-content h4 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .comprehensive-lottery-section {
    padding: 60px 15px;
  }
  
  .comprehensive-lottery-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .comprehensive-lottery-section .section-title::after {
    width: 60px;
    margin: 16px auto;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .comprehensive-lottery-section .section-header {
    margin-bottom: 40px;
  }
  
  .lottery-card {
    padding: 14px;
    gap: 14px;
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .card-icon i {
    font-size: 1.1rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .card-badge {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

/* Section 5: Twenty Four Hours */
.twenty-four-hours-section {
  background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.twenty-four-hours-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.twenty-four-hours-section .section-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.twenty-four-hours-section .section-text {
  animation: fadeInLeft 0.8s ease-out;
}

.twenty-four-hours-section .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
}

.twenty-four-hours-section .section-title::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 20px 0;
  border-radius: 2px;
}

.twenty-four-hours-section .section-description {
  margin-bottom: 40px;
}

.twenty-four-hours-section .section-description p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.twenty-four-hours-section .section-description strong {
  color: var(--primary-color);
  font-weight: 600;
}

.twenty-four-hours-section .section-description a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.twenty-four-hours-section .section-description a:hover {
  color: var(--secondary-color);
}

.cta-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.promotions-section {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.promo-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.promo-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.promo-badge i {
  font-size: 0.8rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(26, 31, 46, 0.7);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.promo-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.promo-content {
  flex: 1;
  position: relative;
}

.promo-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.promo-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.promo-highlight {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--gradient-secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-image {
  position: relative;
  margin-top: 20px;
}

.service-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.service-overlay i {
  color: var(--primary-color);
  font-size: 1rem;
}

/* Responsive Design for Section 5 */
@media (max-width: 1024px) {
  .twenty-four-hours-section .section-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .twenty-four-hours-section .section-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .twenty-four-hours-section .section-title::after {
    margin: 20px auto;
  }
  
  .cta-section {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .twenty-four-hours-section {
    padding: 80px 15px;
  }
  
  .twenty-four-hours-section .section-title {
    font-size: 1.9rem;
  }
  
  .twenty-four-hours-section .section-description p {
    font-size: 1rem;
  }
  
  .promo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-card {
    padding: 16px;
  }
  
  .promo-icon {
    width: 45px;
    height: 45px;
  }
  
  .promo-icon i {
    font-size: 1.1rem;
  }
  
  .promo-content h4 {
    font-size: 1rem;
  }
  
  .promo-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .twenty-four-hours-section {
    padding: 60px 15px;
  }
  
  .twenty-four-hours-section .section-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .twenty-four-hours-section .section-title::after {
    width: 60px;
    margin: 16px auto;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .promo-card {
    padding: 14px;
    gap: 12px;
  }
  
  .promo-icon {
    width: 40px;
    height: 40px;
  }
  
  .promo-icon i {
    font-size: 1rem;
  }
  
  .promo-content h4 {
    font-size: 0.95rem;
  }
  
  .promo-content p {
    font-size: 0.8rem;
  }
  
  .promo-highlight {
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  
  .service-overlay {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Section 6: VIP Premium */
.vip-premium-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 50%, #442d5a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.vip-premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vip-premium-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.vip-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInLeft 0.8s ease-out;
}

.vip-img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  filter: brightness(1.15) contrast(1.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.vip-crown {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  color: #1a1f2e;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  animation: goldGlow 2s ease-in-out infinite alternate;
  border: 2px solid #ffd700;
}

.vip-crown i {
  font-size: 1.2rem;
  color: #1a1f2e;
}

.vip-content {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.vip-premium-section .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
}

.vip-premium-section .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  margin: 20px 0;
  border-radius: 2px;
}

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

.vip-premium-section .section-description strong {
  color: #d4af37;
  font-weight: 600;
}

.vip-premium-section .section-description a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.vip-premium-section .section-description a:hover {
  color: #d4af37;
}

.vip-features {
  background: rgba(26, 31, 46, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features-title {
  font-size: 2rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.vip-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(45, 55, 72, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vip-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.vip-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-icon i {
  font-size: 1.6rem;
  color: #1a1f2e;
}

.feature-details h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

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

.vip-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-vip {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  color: #1a1f2e;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border: 2px solid #ffd700;
}

.btn-vip:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  filter: brightness(1.1);
}

@keyframes goldGlow {
  0% {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  }
}

/* Responsive Design for Section 6 */
@media (max-width: 1024px) {
  .vip-premium-section .section-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .vip-premium-section .section-title {
    font-size: 2.2rem;
  }
  
  .vip-premium-section .section-title::after {
    margin: 20px auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vip-premium-section {
    padding: 80px 15px;
  }
  
  .vip-premium-section .section-title {
    font-size: 1.9rem;
  }
  
  .vip-premium-section .section-description p {
    font-size: 1rem;
  }
  
  .vip-features {
    padding: 28px;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .vip-feature {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-details h4 {
    font-size: 1.1rem;
  }
  
  .feature-details p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .vip-premium-section {
    padding: 60px 15px;
  }
  
  .vip-premium-section .section-content {
    margin-bottom: 60px;
  }
  
  .vip-premium-section .section-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .vip-premium-section .section-title::after {
    width: 50px;
    margin: 16px auto;
  }
  
  .vip-crown {
    top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .vip-crown i {
    font-size: 1rem;
  }
  
  .vip-features {
    padding: 20px;
  }
  
  .features-title {
    font-size: 1.4rem;
  }
  
  .vip-feature {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-details h4 {
    font-size: 1rem;
  }
  
  .feature-details p {
    font-size: 0.85rem;
  }
  
  .vip-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #242937 100%);
  color: var(--text-primary);
  padding: 60px 20px 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

.footer-section {
  display: flex;
  flex-direction: column;
}

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

.footer-logo i {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-logo-text {
  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;
}

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

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

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

.contact-item i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-links li {
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.footer-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-link i {
  font-size: 1.1rem;
}

.payment-methods {
  margin-top: 20px;
}

.payment-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.payment-icons i {
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  cursor: pointer;
}

.payment-icons i:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.copyright i {
  color: var(--primary-color);
}

.footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: var(--bg-tertiary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

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

.footer-disclaimer {
  background: var(--bg-tertiary);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.disclaimer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #ffa500;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.disclaimer-text i {
  color: #ffa500;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 600;
}

.age-restriction i {
  color: #dc3545;
  font-size: 0.85rem;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
  }
  
  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-section:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section:nth-child(1) {
    grid-column: 1;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .disclaimer-text,
  .age-restriction {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .disclaimer-text {
    flex-direction: column;
    gap: 5px;
  }
}

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

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

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

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

.sticky-btn:hover {
  background: rgba(26, 31, 46, 0.8);
  color: var(--text-primary);
  transform: translateY(-2px);
}

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

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

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

/* Individual button styling */
.sticky-btn-login:hover {
  color: var(--accent-color);
}

.sticky-btn-login:hover::before {
  background: var(--accent-color);
}

.sticky-btn-login:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.sticky-btn-register:hover {
  color: var(--secondary-color);
}

.sticky-btn-register:hover::before {
  background: var(--secondary-color);
}

.sticky-btn-register:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  color: var(--primary-color);
}

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

.sticky-btn-credit:hover i {
  color: var(--primary-color);
  transform: scale(1.1) rotate(5deg);
}

.sticky-btn-credit i {
  color: var(--primary-color);
}

.sticky-btn-credit .sticky-btn-text {
  color: var(--primary-color);
  font-weight: 700;
}

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 4px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn-text {
    font-size: 0.75rem;
  }
}

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

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

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

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

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

/* Add space for header too */
body {
  padding-top: 70px;
}

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

/* Smooth scrolling and prevent layout shifts */
html {
  scroll-behavior: smooth;
}

/* Animation for sticky buttons on page load */
.sticky-buttons {
  animation: slideUpSticky 0.5s ease-out 1s both;
}

@keyframes slideUpSticky {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

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

.login-box {
  background: rgba(26, 31, 46, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  font-family: "Prompt", sans-serif;
}

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

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #dc3545;
  font-size: 1rem;
}

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

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

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

.input-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  font-size: 1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

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

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

.form-input:focus + .password-toggle,
.form-input:focus ~ .input-icon {
  color: var(--primary-color);
}

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

.form-input.success {
  border-color: var(--accent-color);
  background: rgba(0, 212, 170, 0.05);
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.password-toggle i {
  font-size: 1rem;
}

.input-error {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.login-btn.loading {
  pointer-events: none;
}

.login-btn.loading i {
  animation: spin 1s linear infinite;
}

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

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

.login-features {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-color);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
}

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

.feature-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

/* Responsive Design for Login */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
    min-height: 100vh;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-box {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px;
  }
  
  .login-box {
    padding: 24px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 44px;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-features {
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 30%, #242937 70%, #2d3748 100%);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(0, 212, 170, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 30% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.register-box {
  background: rgba(26, 31, 46, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.register-logo {
  text-align: center;
  margin-bottom: 32px;
}

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
}

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  font-family: "Prompt", sans-serif;
}

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

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #dc3545;
  font-size: 1rem;
}

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
}

.success-message {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.5s ease-out;
}

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

.success-text {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.input-group {
  margin-bottom: 24px;
}

.input-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  font-size: 1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

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

.form-input:focus {
  border-color: var(--accent-color);
  background: rgba(45, 55, 72, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-input:focus ~ .input-icon {
  color: var(--accent-color);
}

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

.form-input.success {
  border-color: var(--accent-color);
  background: rgba(0, 212, 170, 0.05);
}

.input-error {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 6px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.input-help i {
  color: var(--accent-color);
  font-size: 0.75rem;
}

.register-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-secondary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.register-btn.loading {
  pointer-events: none;
}

.register-btn.loading i {
  animation: spin 1s linear infinite;
}

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

.login-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.register-features {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
}

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

.feature-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

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

.terms-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

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

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

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

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

/* Responsive Design for Register */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
    min-height: 100vh;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-box {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .register-features {
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px;
  }
  
  .register-box {
    padding: 24px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 14px 16px 14px 44px;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
  }
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 30%, #242937 70%, #2d3748 100%);
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-content {
  text-align: center;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-family: "Prompt", sans-serif;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-hero {
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1f2e 0%, #242937 100%);
  position: relative;
}

.promotion-section-alt {
  background: linear-gradient(135deg, #242937 0%, #2d3748 100%);
}

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

.promotion-section-alt::before {
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
}

.promotion-card {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.promotion-header {
  text-align: center;
  margin-bottom: 32px;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.promotion-section-alt .promotion-icon {
  background: var(--gradient-secondary);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

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

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

.promotion-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.promotion-list li:last-child {
  border-bottom: none;
}

.promotion-list li:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.promotion-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  flex-shrink: 0;
  margin-top: 8px;
}

.promotion-section-alt .promotion-list li::before {
  background: var(--accent-color);
}

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

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

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

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

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

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

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

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-card {
    padding: 32px 24px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 24px 20px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
    padding: 10px 0;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}