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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: #0a0b0f;
  color: #ffffff;
  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;
}

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.btn-secondary {
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1b2e 50%, #16213e 100%);
  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;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.feature-item i {
  color: #ff6b35;
  font-size: 18px;
}

.feature-item span {
  font-weight: 600;
  color: #ffffff;
}

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

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

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 53, 0.9);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
}

.overlay-content i {
  font-size: 16px;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 10px 12px;
  }
  
  .hero-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

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

.main-header.scrolled {
  background: rgba(10, 11, 15, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-nav {
  padding: 15px 0;
}

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

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1b2e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-brand .brand-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.mobile-brand .brand-text {
  font-size: 1.25rem;
}

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

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

.mobile-menu-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: #ff6b35;
  color: #ff6b35;
  transform: translateX(5px);
}

.mobile-cta {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

@media (max-width: 930px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    width: 100vw;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-nav {
    padding: 12px 0;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .brand-text {
    font-size: 1.125rem;
  }
  
  .brand-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .mobile-menu {
    width: 100vw;
  }
  
  .mobile-menu-content {
    padding: 25px 15px;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 1rem;
  }
  
  .mobile-cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

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

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

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

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

.about-info {
  animation: fadeInLeft 1s ease-out;
}

.about-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.about-description p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.highlight-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #3b82f6, #1e40af);
  border-radius: 15px;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
}

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

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.about-badge i {
  font-size: 16px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 18px;
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.about-services {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

.services-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

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

.services-list i {
  color: #ff6b35;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.services-list strong {
  color: #ff6b35;
  font-weight: 700;
}

.about-cta {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-link {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: #f7931e;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-platform-section {
    padding: 60px 0;
  }
  
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .about-services {
    padding: 30px 25px;
  }
  
  .services-header h3 {
    font-size: 1.75rem;
  }
  
  .services-list li {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-platform-section {
    padding: 40px 0;
  }
  
  .about-title {
    font-size: 1.75rem;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .about-services {
    padding: 25px 20px;
  }
  
  .services-header h3 {
    font-size: 1.5rem;
  }
  
  .services-list li {
    padding: 15px;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Technology Section */
.technology-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(45deg, #10b981, #059669, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle p {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.technology-info {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

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

.tech-description p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tech-description strong {
  color: #10b981;
  font-weight: 700;
}

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

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

.tech-feature:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.4);
}

.tech-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-details h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.feature-details p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.technology-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
}

.tech-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tech-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #10b981, #059669);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.tech-badge i {
  font-size: 16px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.tech-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.tech-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 18px;
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 20px;
}

.tech-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.tech-card p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.technology-support {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.support-content {
  margin-bottom: 30px;
}

.support-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.support-content p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.support-content strong {
  color: #10b981;
  font-weight: 700;
}

.support-link {
  color: #10b981;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: #059669;
}

.support-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.support-item i {
  color: #10b981;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .technology-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 60px 0;
  }
  
  .technology-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle p {
    font-size: 1.125rem;
  }
  
  .tech-description p {
    font-size: 1rem;
  }
  
  .tech-feature {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .tech-feature .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-card {
    padding: 25px 20px;
  }
  
  .tech-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .technology-support {
    padding: 30px 25px;
  }
  
  .support-content h3 {
    font-size: 1.75rem;
  }
  
  .support-content p {
    font-size: 1rem;
  }
  
  .support-features {
    gap: 20px;
  }
  
  .support-item {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle p {
    font-size: 1rem;
  }
  
  .tech-feature {
    padding: 15px;
  }
  
  .tech-feature .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .tech-card {
    padding: 20px 15px;
  }
  
  .tech-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .technology-support {
    padding: 25px 20px;
  }
  
  .support-content h3 {
    font-size: 1.5rem;
  }
  
  .support-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .support-item {
    padding: 10px 18px;
  }

  .support-item i {
    font-size: 16px;
  }
}

/* Wallet Section */
.wallet-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(45deg, #8b5cf6, #a855f7, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.wallet-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.wallet-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wallet-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.wallet-badge i {
  font-size: 16px;
}

.wallet-info {
  animation: fadeInRight 1s ease-out 0.2s both;
}

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

.wallet-description p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.wallet-description strong {
  color: #8b5cf6;
  font-weight: 700;
}

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

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

.wallet-feature:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
}

.wallet-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

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

.feature-content p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.wallet-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 18px;
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 20px;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.wallet-list {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

.list-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wallet-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
  transition: all 0.3s ease;
}

.wallet-item:hover {
  background: rgba(139, 92, 246, 0.05);
  transform: translateX(5px);
}

.item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.item-content h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 5px;
}

.item-content p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0;
}

.wallet-benefits {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.benefits-content {
  margin-bottom: 40px;
}

.benefits-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.benefits-content p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefits-content strong {
  color: #8b5cf6;
  font-weight: 700;
}

.benefits-link {
  color: #8b5cf6;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.benefits-link:hover {
  color: #a855f7;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 25px 15px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-5px);
}

.benefit-item i {
  color: #8b5cf6;
  font-size: 24px;
}

.benefit-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .wallet-services {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 60px 0;
  }
  
  .wallet-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .wallet-description p {
    font-size: 1rem;
  }
  
  .wallet-feature {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .wallet-feature .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .wallet-list {
    padding: 30px 25px;
  }
  
  .list-header h3 {
    font-size: 1.75rem;
  }
  
  .wallet-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefits-content h3 {
    font-size: 1.75rem;
  }
  
  .benefits-content p {
    font-size: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .wallet-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .wallet-feature {
    padding: 15px;
  }
  
  .wallet-feature .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .wallet-list {
    padding: 25px 20px;
  }
  
  .list-header h3 {
    font-size: 1.5rem;
  }
  
  .wallet-item {
    padding: 15px;
  }
  
  .item-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .benefits-content h3 {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 20px 10px;
  }
  
  .benefit-item i {
    font-size: 20px;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
}

/* Platform Section */
.platform-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-info {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

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

.platform-description p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.platform-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.platform-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  margin: 0 auto 15px;
}

.highlight-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.platform-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
}

.platform-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #ef4444, #dc2626);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  animation: pulse 2s infinite;
}

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

.platform-badge i {
  font-size: 14px;
}

.platform-features {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 15px;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-details h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-details p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.platform-games {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.games-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.game-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  transition: left 0.3s ease;
}

.game-card:hover::before {
  left: 0;
}

.game-card:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.game-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 18px;
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 20px;
}

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

.game-card p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 14px;
}

.rating-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.platform-management {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.management-content {
  margin-bottom: 30px;
}

.management-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.management-content p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.management-content strong {
  color: #ff6b35;
  font-weight: 700;
}

.management-link {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.management-link:hover {
  color: #f7931e;
}

.management-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.management-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.management-item:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.management-item i {
  color: #ff6b35;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .highlight-card {
    padding: 20px 15px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-item .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto;
  }
  
  .game-card {
    padding: 25px 20px;
  }
  
  .game-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .platform-management {
    padding: 30px 25px;
  }
  
  .management-content h3 {
    font-size: 1.75rem;
  }
  
  .management-content p {
    font-size: 1rem;
  }
  
  .management-features {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .highlight-card {
    padding: 15px 12px;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-item .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .game-card {
    padding: 20px 15px;
  }
  
  .game-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .platform-management {
    padding: 25px 20px;
  }
  
  .management-content h3 {
    font-size: 1.5rem;
  }
  
  .management-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .management-item {
    padding: 12px 20px;
  }
}

/* Sports Section */
.sports-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
  position: relative;
  overflow: hidden;
}

.sports-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(45deg, #10b981, #34d399, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.sports-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.sports-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sports-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.sports-badge i {
  font-size: 16px;
}

.sports-info {
  animation: fadeInRight 1s ease-out 0.2s both;
}

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

.sports-description p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sports-description strong {
  color: #10b981;
  font-weight: 700;
}

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

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

.sports-feature:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.4);
}

.sports-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

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

.feature-content p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

.sports-benefits {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.benefits-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 15px;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.sports-promotions {
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.promotions-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

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

.promotion-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateX(5px);
}

.promotion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  flex-shrink: 0;
}

.promotion-details h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 8px;
}

.promotion-details p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.sports-guarantee {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.guarantee-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.guarantee-content p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
}

.guarantee-content strong {
  color: #10b981;
  font-weight: 700;
}

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

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
}

.guarantee-item span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.guarantee-item strong {
  color: #10b981;
}

.sports-system {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.system-content {
  margin-bottom: 40px;
}

.system-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.system-content p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}

.system-content strong {
  color: #10b981;
  font-weight: 700;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.3);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  margin: 0 auto 15px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sports-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
  }
  
  .system-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sports-section {
    padding: 60px 0;
  }
  
  .sports-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .sports-description p {
    font-size: 1rem;
  }
  
  .sports-feature {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .sports-feature .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .benefit-card {
    padding: 25px 20px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .promotion-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .sports-guarantee {
    padding: 30px 25px;
  }
  
  .guarantee-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .system-content h3 {
    font-size: 1.75rem;
  }
  
  .system-content p {
    font-size: 1rem;
  }
  
  .system-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .sports-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .sports-feature {
    padding: 15px;
  }
  
  .sports-feature .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .promotion-item {
    padding: 20px 15px;
  }
  
  .promotion-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .sports-guarantee {
    padding: 25px 20px;
  }
  
  .guarantee-item {
    padding: 15px;
  }
  
  .guarantee-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .system-content h3 {
    font-size: 1.5rem;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1b2e 50%, #16213e 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

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

.footer-brand {
  animation: fadeInLeft 1s ease-out;
}

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

.footer-brand .brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 15px;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.footer-brand .brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #94a3b8;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  animation: fadeInRight 1s ease-out;
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

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

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

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

.contact-item i {
  color: #ff6b35;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.footer-legal {
  margin-bottom: 30px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
  justify-content: center;
}

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

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

.copyright {
  text-align: center;
}

.copyright p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  max-width: 600px;
  margin: 0 auto;
}

.footer-payment {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.payment-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  color: #ff6b35;
}

.payment-item i {
  color: #ff6b35;
  font-size: 16px;
}

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

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 20px;
  }
  
  .footer-brand .brand-text {
    font-size: 1.5rem;
  }
  
  .footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .payment-methods {
    gap: 15px;
  }
  
  .payment-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-brand .brand-text {
    font-size: 1.25rem;
  }
  
  .footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .footer-title {
    font-size: 1.125rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 10px;
  }
  
  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .payment-methods {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .payment-item {
    padding: 8px 15px;
  }
  
  .copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer {
    font-size: 0.75rem !important;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 9999;
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  padding: 10px;
  gap: 8px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.sticky-btn-login {
  background: linear-gradient(45deg, #1e40af, #3b82f6);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.sticky-btn-login:hover {
  background: linear-gradient(45deg, #1e3a8a, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(45deg, #10b981, #34d399);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.sticky-btn-register:hover {
  background: linear-gradient(45deg, #059669, #10b981);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  border: 1px solid rgba(255, 107, 53, 0.3);
  animation: pulseGlow 2s infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(45deg, #ea580c, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 10px 4px rgba(255, 107, 53, 0.2);
  }
}

.sticky-btn i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-text {
  font-family: 'Prompt', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Adjust body bottom padding to prevent content overlap */
body {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 8px 6px;
    gap: 6px;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  body {
    padding-bottom: 75px;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 6px 4px;
    gap: 4px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
    flex-direction: column;
    gap: 4px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.8rem;
    line-height: 1;
  }
  
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 380px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

/* Ensure sticky buttons don't interfere with mobile menu */
@media (max-width: 768px) {
  .mobile-menu-open .sticky-buttons {
    z-index: 9998;
  }
}

/* Hide sticky buttons when mobile menu is active on very small screens */
@media (max-width: 480px) {
  .mobile-menu-open .sticky-buttons {
    opacity: 0.5;
    pointer-events: none;
  }
}

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

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

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

.login-wrapper {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

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

.login-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.login-form-container {
  position: relative;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
  animation: slideDown 0.3s ease-out;
}

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

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

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-label i {
  color: #ff6b35;
  font-size: 16px;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.password-wrapper {
  position: relative;
}

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

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

.field-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

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

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.remember-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.remember-checkbox input:checked ~ .checkmark {
  background: #ff6b35;
  border-color: #ff6b35;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.remember-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.remember-checkbox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.9rem;
  color: #94a3b8;
}

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

.forgot-password:hover {
  color: #f7931e;
  text-decoration: underline;
}

.login-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

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

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  display: none;
}

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

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

.login-btn.loading .loading-spinner {
  display: block;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.login-divider span {
  padding: 0 15px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.register-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #ff6b35;
  border-radius: 10px;
  padding: 14px 24px;
  color: #ff6b35;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.register-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.security-item i {
  color: #10b981;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 30px;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-wrapper {
    padding: 30px 25px;
    margin: 0 auto;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .security-info {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-wrapper {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    gap: 8px;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
}

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

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

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

.register-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

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

.register-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.register-form-container {
  position: relative;
}

.error-message, .success-message {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
  animation: slideDown 0.3s ease-out;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

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

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

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-label i {
  color: #10b981;
  font-size: 16px;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.field-error {
  color: #fca5a5;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

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

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

.field-hint i {
  color: #10b981;
  font-size: 12px;
}

.terms-agreement {
  margin: 10px 0;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.terms-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

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

.terms-checkbox input:checked ~ .checkmark {
  background: #10b981;
  border-color: #10b981;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.terms-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.terms-checkbox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.4;
}

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

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

.register-btn {
  background: linear-gradient(45deg, #10b981, #34d399);
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

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

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  display: none;
}

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

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

.register-btn.loading .loading-spinner {
  display: block;
}

.register-divider {
  display: flex;
  align-items: center;
  margin: 30px 0 20px;
}

.register-divider::before,
.register-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.register-divider span {
  padding: 0 15px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.login-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #10b981;
  border-radius: 10px;
  padding: 14px 24px;
  color: #10b981;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.login-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.benefits-info {
  margin-bottom: 25px;
  padding: 25px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6ee7b7;
  font-size: 0.85rem;
  font-weight: 500;
}

.benefit-item i {
  color: #10b981;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.security-item i {
  color: #10b981;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 30px;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-wrapper {
    padding: 30px 25px;
    margin: 0 auto;
  }
  
  .register-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .benefits-info {
    padding: 20px;
  }
  
  .security-info {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .register-wrapper {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .benefits-info {
    padding: 18px 15px;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
  
  .security-info {
    gap: 8px;
  }
  
  .security-item {
    font-size: 0.8rem;
  }
  
  .checkbox-text {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff9500 100%);
  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, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  padding: 18px 36px;
  font-size: 1.25rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.promotion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge.new-member {
  background: linear-gradient(45deg, #10b981, #34d399);
  color: #ffffff;
}

.promotion-badge.first-deposit {
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  color: #ffffff;
}

.promotion-badge.birthday {
  background: linear-gradient(45deg, #ec4899, #f472b6);
  color: #ffffff;
}

.promotion-badge.cashback {
  background: linear-gradient(45deg, #8b5cf6, #a78bfa);
  color: #ffffff;
}

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

.promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promotion-list {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  max-width: 600px;
  width: 100%;
}

.promotion-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
}

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

.promotion-list li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.promotion-list li i {
  color: #ff6b35;
  font-size: 16px;
  flex-shrink: 0;
}

.promotion-cta {
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1b2e 100%);
  position: relative;
}

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

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

.info-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
}

.feature-item i {
  color: #ff6b35;
  font-size: 24px;
}

.feature-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.info-cta {
  padding: 18px 36px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 20px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  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: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .info-title {
    font-size: 2.25rem;
  }
  
  .info-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container, .promotion-container, .info-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-title {
    font-size: 1.75rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
  }
  
  .info-section {
    padding: 60px 0;
  }
  
  .info-title {
    font-size: 2rem;
  }
  
  .info-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 14px 24px;
    font-size: 1.125rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
    padding: 12px 0;
  }
  
  .promotion-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .info-title {
    font-size: 1.75rem;
  }
  
  .info-text {
    font-size: 1rem;
  }
  
  .info-cta {
    padding: 14px 24px;
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 12px 20px;
  }
}