/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #4ecdc4;
  --accent-color: #ffe66d;
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --dark-surface-2: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #808080;
  --border-color: #333333;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
}

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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: var(--dark-bg);
  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;
}

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

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

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

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

.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.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

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

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

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

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

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

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

.hero-img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

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

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

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: block;
}

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

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

/* 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 fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 40px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.site-header {
  background: var(--dark-surface);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -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;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), #ff8a65);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff8a65, var(--primary-color));
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
}

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

.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: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--dark-surface);
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

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

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

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

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

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

.mobile-nav-item {
  margin-bottom: 10px;
}

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

.mobile-nav-link {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

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

.mobile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), #ff8a65);
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #ff8a65, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

/* Tablet and Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-menu-header {
    padding: 18px;
  }
  
  .mobile-logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* Platform Overview Section */
.platform-section {
  background: var(--dark-surface);
  padding: 80px 20px;
  position: relative;
}

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 107, 53, 0.05) 0%,
    transparent 25%,
    transparent 75%,
    rgba(78, 205, 196, 0.05) 100%);
  z-index: 1;
}

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

.platform-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

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

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

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

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

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.platform-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary-color);
  transform: translateX(10px);
}

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

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

.platform-footer {
  background: rgba(78, 205, 196, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
}

.platform-footer p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 15px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .platform-footer {
    padding: 20px;
  }
  
  .platform-footer p {
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .platform-section {
    padding: 40px 10px;
  }
  
  .platform-content {
    gap: 30px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: left;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 10px;
  }
  
  .feature-item:hover {
    transform: translateY(-3px);
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .platform-footer {
    padding: 18px;
  }
  
  .platform-footer p {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* Lottery Games Section */
.games-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface-2) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 230, 109, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.games-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.games-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

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

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

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

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

.games-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(255, 230, 109, 0.2);
  transition: all 0.3s ease;
}

.games-img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 25px 60px rgba(255, 230, 109, 0.3);
}

.lottery-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.lottery-card {
  background: var(--dark-surface);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lottery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 230, 109, 0.1) 0%,
    rgba(255, 107, 53, 0.1) 50%,
    rgba(78, 205, 196, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

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

.lottery-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 230, 109, 0.25);
}

.lottery-card > * {
  position: relative;
  z-index: 2;
}

.lottery-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}

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

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

.lottery-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.lottery-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lottery-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lottery-features span {
  background: rgba(255, 230, 109, 0.2);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 230, 109, 0.3);
  transition: all 0.3s ease;
}

.lottery-card:hover .lottery-features span {
  background: var(--accent-color);
  color: var(--dark-bg);
  transform: scale(1.05);
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .games-section {
    padding: 60px 15px;
  }
  
  .games-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .games-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .games-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .lottery-types {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .lottery-card {
    padding: 25px 18px;
  }
  
  .lottery-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  
  .lottery-icon i {
    font-size: 1.5rem;
  }
  
  .lottery-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .lottery-card p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .games-section {
    padding: 40px 10px;
  }
  
  .games-header {
    margin-bottom: 40px;
  }
  
  .games-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .games-content {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .games-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .lottery-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .lottery-card {
    padding: 25px 20px;
  }
  
  .lottery-card:hover {
    transform: translateY(-5px);
  }
  
  .lottery-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
  }
  
  .lottery-icon i {
    font-size: 1.4rem;
  }
  
  .lottery-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .lottery-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .lottery-features {
    gap: 8px;
  }
  
  .lottery-features span {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

/* Payment System Section */
.payment-section {
  background: var(--dark-surface-2);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, 
    rgba(76, 175, 80, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 152, 0, 0.06) 100%);
  z-index: 1;
}

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

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

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

.payment-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--success-color), var(--warning-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.payment-highlights {
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 152, 0, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--success-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(255, 152, 0, 0.1));
  transform: translateX(10px);
  border-left-color: var(--warning-color);
}

.highlight-item:nth-child(even):hover {
  border-left-color: var(--success-color);
}

.highlight-item i {
  font-size: 1.4rem;
  color: var(--success-color);
  min-width: 28px;
}

.highlight-item:nth-child(even) i {
  color: var(--warning-color);
}

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

.payment-footer {
  background: rgba(255, 152, 0, 0.08);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 152, 0, 0.2);
}

.payment-footer p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.payment-footer strong {
  color: var(--warning-color);
  font-weight: 700;
}

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

.payment-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.payment-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(76, 175, 80, 0.4);
}

.payment-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  background: var(--dark-surface);
  padding: 20px;
  border-radius: 16px;
  border: 2px solid var(--success-color);
  transition: all 0.3s ease;
  min-width: 80px;
}

.stat-item:hover {
  background: rgba(76, 175, 80, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
}

.stat-item:nth-child(2) {
  border-color: var(--warning-color);
}

.stat-item:nth-child(2):hover {
  background: rgba(255, 152, 0, 0.1);
  box-shadow: 0 15px 30px rgba(255, 152, 0, 0.2);
}

.stat-item:nth-child(3) {
  border-color: var(--primary-color);
}

.stat-item:nth-child(3):hover {
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success-color);
  font-family: 'Prompt', sans-serif;
}

.stat-item:nth-child(2) .stat-number {
  color: var(--warning-color);
}

.stat-item:nth-child(3) .stat-number {
  color: var(--primary-color);
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .payment-section {
    padding: 60px 15px;
  }
  
  .payment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .payment-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .payment-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .highlight-item {
    padding: 12px 18px;
    margin-bottom: 15px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
  
  .highlight-item span {
    font-size: 0.95rem;
  }
  
  .payment-footer {
    padding: 20px;
  }
  
  .payment-footer p {
    font-size: 1rem;
  }
  
  .payment-stats {
    gap: 20px;
    margin-top: 25px;
  }
  
  .stat-item {
    padding: 18px;
    min-width: 70px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .payment-section {
    padding: 40px 10px;
  }
  
  .payment-content {
    gap: 30px;
  }
  
  .payment-title {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .payment-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 10px;
  }
  
  .highlight-item:hover {
    transform: translateY(-3px);
  }
  
  .highlight-item i {
    font-size: 1.5rem;
  }
  
  .highlight-item span {
    font-size: 0.9rem;
  }
  
  .payment-footer {
    padding: 18px;
  }
  
  .payment-footer p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .payment-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
  }
  
  .stat-item {
    padding: 16px 20px;
    min-width: 120px;
    width: 100%;
    max-width: 200px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Access Channels Section */
.access-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-surface-2) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.access-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.access-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.access-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

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

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

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

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

.access-description a:hover {
  color: var(--accent-color);
}

.access-visual {
  animation: fadeInRight 1s ease-out;
}

.devices-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.device-item {
  background: var(--dark-surface);
  padding: 25px 15px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.device-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.1) 0%,
    rgba(255, 107, 53, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.device-item:hover::before {
  opacity: 1;
}

.device-item:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(78, 205, 196, 0.25);
}

.device-item > * {
  position: relative;
  z-index: 2;
}

.device-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
  transition: transform 0.4s ease;
}

.device-item:hover i {
  transform: scale(1.2) rotateY(360deg);
}

.device-item.mobile i {
  color: var(--primary-color);
}

.device-item.tablet i {
  color: var(--accent-color);
}

.device-item h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.device-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.access-features {
  background: rgba(78, 205, 196, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.2);
}

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

.access-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-feature:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: var(--secondary-color);
  transform: scale(1.02);
}

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

.access-feature:nth-child(even) i {
  color: var(--primary-color);
}

.access-feature:nth-child(3n) i {
  color: var(--accent-color);
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .access-section {
    padding: 60px 15px;
  }
  
  .access-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .access-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .devices-showcase {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .device-item {
    padding: 20px 15px;
  }
  
  .device-item i {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .device-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .device-item p {
    font-size: 0.85rem;
  }
  
  .access-features {
    padding: 25px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .access-feature {
    padding: 12px;
  }
  
  .access-feature i {
    font-size: 1.1rem;
  }
  
  .access-feature span {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .access-section {
    padding: 40px 10px;
  }
  
  .access-header {
    margin-bottom: 40px;
  }
  
  .access-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .access-content {
    gap: 30px;
  }
  
  .access-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .devices-showcase {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .device-item {
    padding: 18px 12px;
  }
  
  .device-item:hover {
    transform: translateY(-5px);
  }
  
  .device-item i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .device-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .device-item p {
    font-size: 0.8rem;
  }
  
  .access-features {
    padding: 20px;
  }
  
  .feature-grid {
    gap: 12px;
  }
  
  .access-feature {
    padding: 10px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .access-feature:hover {
    transform: translateY(-2px);
  }
  
  .access-feature i {
    font-size: 1.3rem;
  }
  
  .access-feature span {
    font-size: 0.85rem;
  }
}

/* Expert Tips Section */
.tips-section {
  background: var(--dark-surface-2);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(225deg, 
    rgba(255, 230, 109, 0.06) 0%,
    transparent 25%,
    transparent 75%,
    rgba(255, 107, 53, 0.08) 100%);
  z-index: 1;
}

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

.tips-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.tips-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tips-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

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

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

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

.strategy-list {
  margin: 40px 0;
  background: rgba(255, 230, 109, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 230, 109, 0.2);
}

.strategy-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.strategy-item:hover {
  background: rgba(255, 230, 109, 0.1);
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.strategy-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 40px;
  transition: transform 0.3s ease;
}

.strategy-item:hover .strategy-number {
  transform: scale(1.1);
}

.strategy-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.tips-continuation p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.tips-continuation strong {
  color: var(--primary-color);
  font-weight: 700;
}

.tips-continuation a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.tips-continuation a:hover {
  color: var(--accent-color);
}

.tips-visual {
  animation: fadeInRight 1s ease-out;
}

.tips-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(255, 230, 109, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.tips-img:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 30px 60px rgba(255, 230, 109, 0.4);
}

.analysis-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.tool-card {
  background: var(--dark-surface);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 30px rgba(255, 230, 109, 0.25);
}

.tool-card > * {
  position: relative;
  z-index: 2;
}

.tool-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.tool-card:hover i {
  transform: scale(1.2) rotateY(360deg);
}

.tool-card:nth-child(2) i {
  color: var(--primary-color);
}

.tool-card:nth-child(3) i {
  color: var(--secondary-color);
}

.tool-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 700;
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .tips-section {
    padding: 60px 15px;
  }
  
  .tips-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .tips-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tips-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .strategy-list {
    margin: 30px 0;
    padding: 25px;
  }
  
  .strategy-item {
    gap: 15px;
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .strategy-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    min-width: 35px;
  }
  
  .strategy-content h4 {
    font-size: 1rem;
  }
  
  .tips-continuation p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .tips-img {
    margin-bottom: 25px;
  }
  
  .analysis-tools {
    gap: 12px;
  }
  
  .tool-card {
    padding: 18px;
  }
  
  .tool-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .tool-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .tool-card p {
    font-size: 0.85rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .tips-section {
    padding: 40px 10px;
  }
  
  .tips-header {
    margin-bottom: 40px;
  }
  
  .tips-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .tips-content {
    gap: 30px;
  }
  
  .tips-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .strategy-list {
    margin: 25px 0;
    padding: 20px;
  }
  
  .strategy-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
    margin-bottom: 12px;
  }
  
  .strategy-item:hover {
    transform: translateY(-3px);
  }
  
  .strategy-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    min-width: 30px;
  }
  
  .strategy-content h4 {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .tips-continuation p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-align: left;
  }
  
  .tips-img {
    margin-bottom: 20px;
  }
  
  .analysis-tools {
    gap: 10px;
  }
  
  .tool-card {
    padding: 15px;
  }
  
  .tool-card:hover {
    transform: translateY(-3px);
  }
  
  .tool-card i {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .tool-card h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }
  
  .tool-card p {
    font-size: 0.8rem;
  }
}

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

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.footer-about {
  padding-right: 20px;
}

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-color);
}

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

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

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

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

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

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

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

.footer-security {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

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

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.badge-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.badge-item:nth-child(2):hover {
  background: rgba(76, 175, 80, 0.1);
  border-color: var(--success-color);
}

.badge-item:nth-child(3):hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: var(--warning-color);
}

.badge-item:nth-child(4):hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: var(--secondary-color);
}

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

.badge-item:nth-child(2) i {
  color: var(--success-color);
}

.badge-item:nth-child(3) i {
  color: var(--warning-color);
}

.badge-item:nth-child(4) i {
  color: var(--secondary-color);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 15px;
}

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

.footer-disclaimer {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--warning-color);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

.disclaimer-text i {
  font-size: 1rem;
  min-width: 16px;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 15px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .security-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .badge-item {
    padding: 15px 8px;
  }
  
  .badge-item i {
    font-size: 1.5rem;
  }
  
  .badge-item span {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.9rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 10px 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-about {
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  
  .footer-contact {
    gap: 10px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .footer-link-list li {
    margin-bottom: 10px;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .footer-security {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .badge-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 15px;
    text-align: left;
  }
  
  .badge-item i {
    font-size: 1.3rem;
  }
  
  .badge-item span {
    font-size: 0.8rem;
    text-align: left;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
  
  .footer-copyright {
    margin-bottom: 12px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    padding: 12px;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .disclaimer-text i {
    font-size: 0.9rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-bottom-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 9998;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  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: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 65px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

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

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

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

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

/* Individual button colors */
.sticky-login {
  border-right: 1px solid var(--border-color);
}

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

.sticky-login:hover::before {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.sticky-register {
  border-right: 1px solid var(--border-color);
}

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

.sticky-register:hover::before {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.sticky-credit {
  animation: pulse-glow 2s infinite;
}

.sticky-credit:hover {
  color: var(--accent-color);
  animation: none;
}

.sticky-credit:hover::before {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  opacity: 0.15;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: inset 0 0 0 1px transparent;
  }
  50% {
    box-shadow: inset 0 0 0 1px var(--accent-color);
  }
}

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

/* Mobile Responsive */
@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

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

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

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

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

/* Login Section Styles */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-surface-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.login-card {
  background: var(--dark-surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.05) 0%,
    rgba(78, 205, 196, 0.03) 100%);
  z-index: 1;
}

.login-card > * {
  position: relative;
  z-index: 2;
}

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

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

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.error-message i {
  color: var(--error-color);
  font-size: 1.1rem;
}

.error-message span {
  color: var(--error-color);
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

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

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

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--dark-surface-2);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-input.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-input.success {
  border-color: var(--success-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.password-wrapper {
  position: relative;
}

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

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

.input-error {
  display: block;
  font-size: 0.85rem;
  color: var(--error-color);
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary-color), #ff8a65);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff8a65, var(--primary-color));
}

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

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

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

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

.register-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

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

.login-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .login-section {
    padding: 10px;
    min-height: calc(100vh - 120px);
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-surface-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.register-card {
  background: var(--dark-surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.05) 0%,
    rgba(255, 107, 53, 0.03) 100%);
  z-index: 1;
}

.register-card > * {
  position: relative;
  z-index: 2;
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

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

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

.error-message i {
  color: var(--error-color);
  font-size: 1.1rem;
}

.error-message span {
  color: var(--error-color);
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

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

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

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--dark-surface-2);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
  background: var(--dark-bg);
}

.form-input.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-input.success {
  border-color: var(--success-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.input-error {
  display: block;
  font-size: 0.85rem;
  color: var(--error-color);
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--secondary-color), #4fd1c7);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #4fd1c7, var(--secondary-color));
}

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

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

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

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

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

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

.register-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .register-section {
    padding: 10px;
    min-height: calc(100vh - 120px);
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
  }
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-surface-2) 100%);
  padding: 100px 20px;
  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 30% 20%, rgba(255, 230, 109, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 60%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: white;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 230, 109, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 230, 109, 0.6);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

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

.promotion-section:nth-child(odd) {
  background: var(--dark-surface);
}

.promotion-section:nth-child(even) {
  background: var(--dark-surface-2);
}

.promotion-alt {
  background: linear-gradient(135deg, var(--dark-surface-2) 0%, var(--dark-bg) 100%);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  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, 230, 109, 0.05) 0%,
    rgba(255, 107, 53, 0.03) 50%,
    rgba(78, 205, 196, 0.05) 100%);
  z-index: 1;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promotion-card > * {
  position: relative;
  z-index: 2;
}

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

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

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

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

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 230, 109, 0.1);
  transform: translateX(10px);
}

.feature-item:nth-child(even) {
  border-left-color: var(--primary-color);
}

.feature-item:nth-child(3n) {
  border-left-color: var(--secondary-color);
}

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

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

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

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

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
  
  .hero-subtitle p {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-card {
    padding: 40px 30px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2.2rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .feature-item {
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .hero-subtitle p {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 14px 25px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .promotion-header {
    margin-bottom: 30px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .promotion-features {
    margin-bottom: 30px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    margin-bottom: 12px;
    gap: 8px;
  }
  
  .feature-item:hover {
    transform: translateY(-2px);
  }
  
  .feature-item i {
    margin-top: 0;
    font-size: 1.4rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .promotion-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .promotion-btn i {
    font-size: 1.1rem;
  }
}