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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  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;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  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: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

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

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

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

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

.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;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 215, 0, 0.5);
  backdrop-filter: blur(10px);
}

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

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

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff1493, #ff6b6b);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
  animation: pulse 2s infinite;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1rem;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

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

.main-header.scrolled {
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Main Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.mobile-nav-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.mobile-nav-link i {
  font-size: 1.3rem;
  width: 20px;
  text-align: center;
}

.mobile-menu-cta {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-list {
    gap: 30px;
  }
  
  .main-nav {
    margin: 0 30px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
    padding: 0 12px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 18px 20px;
  }
  
  .mobile-cta-button {
    font-size: 1.1rem;
    padding: 16px 20px;
  }
}

/* Body padding to account for fixed header */
body {
  padding-top: 80px;
}

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

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

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

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

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
  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: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

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

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

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.trust-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #00ff88, #00d4aa);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  white-space: nowrap;
}

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

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

.platform-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.platform-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(8px);
}

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

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

.highlight-content p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.trust-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

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

.trust-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.trust-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.trust-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.trust-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.trust-feature i {
  color: #ffd700;
  font-size: 1.2rem;
}

.signup-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .platform-content {
    gap: 50px;
  }
  
  .trust-section {
    padding: 40px;
  }
  
  .trust-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .platform-content {
    margin-bottom: 60px;
  }
  
  .platform-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-item:hover {
    transform: translateY(-4px);
  }
  
  .trust-section {
    padding: 30px 25px;
  }
  
  .trust-title {
    font-size: 1.6rem;
  }
  
  .trust-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .trust-features {
    gap: 15px;
    justify-content: center;
  }
  
  .trust-feature {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .platform-description {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .highlight-item i {
    margin-top: 0;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .trust-section {
    padding: 25px 20px;
  }
  
  .trust-title {
    font-size: 1.4rem;
  }
  
  .trust-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .trust-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Gateway Access Section */
.gateway-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00ffff, #0099ff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

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

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

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

.gateway-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.gateway-features {
  margin-top: 40px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.feature-card i {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.5;
}

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

.gateway-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 255, 255, 0.3);
}

.uptime-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #00ff88, #00d4aa);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  white-space: nowrap;
}

.performance-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

.performance-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.performance-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.stat-icon {
  margin-bottom: 20px;
}

.stat-icon i {
  font-size: 2.5rem;
  color: #00ffff;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 1rem;
}

.lottery-tracking {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 20, 147, 0.2);
  backdrop-filter: blur(15px);
}

.tracking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tracking-text {
  flex: 1;
}

.tracking-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff1493;
  margin-bottom: 16px;
}

.tracking-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.tracking-description a {
  color: #ff1493;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tracking-description a:hover {
  color: #ff6b9d;
}

.tracking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tracking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 20, 147, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tracking-item:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: translateX(8px);
}

.tracking-item i {
  color: #ff1493;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .gateway-content {
    gap: 50px;
  }
  
  .performance-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .tracking-content {
    flex-direction: column;
    text-align: center;
  }
  
  .tracking-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gateway-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .gateway-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gateway-content {
    margin-bottom: 60px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gateway-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .performance-section {
    padding: 40px 30px;
    margin-bottom: 50px;
  }
  
  .performance-title {
    font-size: 1.8rem;
  }
  
  .performance-subtitle {
    font-size: 1rem;
  }
  
  .performance-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .lottery-tracking {
    padding: 30px 25px;
  }
  
  .tracking-title {
    font-size: 1.5rem;
  }
  
  .tracking-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .tracking-features {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gateway-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .gateway-description {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .performance-section {
    padding: 30px 20px;
  }
  
  .performance-title {
    font-size: 1.6rem;
  }
  
  .performance-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .lottery-tracking {
    padding: 25px 20px;
  }
  
  .tracking-title {
    font-size: 1.4rem;
  }
  
  .tracking-features {
    flex-direction: column;
    align-items: center;
  }
  
  .tracking-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .tracking-item:hover {
    transform: translateY(-4px);
  }
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff6b6b, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.system-overview {
  margin-bottom: 80px;
}

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

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

.system-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

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

.system-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.easy-use-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #4CAF50, #8BC34A);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  white-space: nowrap;
}

.financial-system {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(15px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

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

.financial-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.financial-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.financial-features {
  position: relative;
  z-index: 2;
}

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

.financial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.financial-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.card-icon {
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 2.5rem;
  color: #ffd700;
}

.financial-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.financial-card p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.advantages-section {
  margin-bottom: 80px;
}

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

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

.advantages-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 24px;
  line-height: 1.3;
}

.advantages-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  text-align: justify;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 1s ease-out 0.2s both;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: #ffffff;
  font-weight: 600;
}

.advantage-item:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.4);
  transform: translateX(8px);
}

.advantage-item i {
  font-size: 1.5rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.transfer-system {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  text-align: center;
}

.transfer-content {
  max-width: 900px;
  margin: 0 auto;
}

.transfer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.transfer-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.transfer-description a {
  color: #00ffff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.transfer-description a:hover {
  color: #66ffff;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(45deg, #00ffff, #0099ff);
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 255, 0.6);
  background: linear-gradient(45deg, #0099ff, #00ffff);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .overview-content {
    gap: 50px;
  }
  
  .financial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .advantages-content {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .lottery-system-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .system-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .financial-system {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .financial-title {
    font-size: 1.8rem;
  }
  
  .financial-subtitle {
    font-size: 1rem;
  }
  
  .financial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .financial-card {
    padding: 25px 15px;
  }
  
  .advantages-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .advantages-title {
    font-size: 1.6rem;
  }
  
  .advantages-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .transfer-system {
    padding: 40px 30px;
  }
  
  .transfer-title {
    font-size: 1.8rem;
  }
  
  .transfer-description {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .lottery-system-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .system-description {
    font-size: 0.95rem;
  }
  
  .financial-system {
    padding: 30px 20px;
  }
  
  .financial-title {
    font-size: 1.6rem;
  }
  
  .financial-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .financial-card {
    padding: 20px 15px;
  }
  
  .financial-card h4 {
    font-size: 1.2rem;
  }
  
  .advantages-title {
    font-size: 1.4rem;
  }
  
  .advantages-description {
    font-size: 0.95rem;
  }
  
  .advantage-item {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .advantage-item:hover {
    transform: translateY(-4px);
  }
  
  .transfer-system {
    padding: 30px 20px;
  }
  
  .transfer-title {
    font-size: 1.6rem;
  }
  
  .transfer-description {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* VIP Membership Section */
.vip-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #daa520, #ffd700, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.vip-overview {
  margin-bottom: 80px;
}

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

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

.vip-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.5);
}

.vip-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #ffd700, #daa520);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  white-space: nowrap;
  animation: pulse 2s infinite;
}

.vip-text {
  animation: fadeInRight 1s ease-out 0.2s both;
}

.vip-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  text-align: justify;
}

.vip-benefits {
  margin-bottom: 80px;
}

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

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

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

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

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

.benefit-card.highlight {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.02);
}

.benefit-card:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.card-header i {
  font-size: 2.5rem;
  color: #ffd700;
}

.card-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

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

.card-content p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.vip-services {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  backdrop-filter: blur(15px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.vip-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

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

.services-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8a2be2;
  margin-bottom: 24px;
  line-height: 1.3;
}

.services-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.services-description a {
  color: #8a2be2;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.services-description a:hover {
  color: #ba55d3;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(138, 43, 226, 0.15);
  transform: translateY(-5px);
  border-color: rgba(138, 43, 226, 0.5);
}

.service-item i {
  font-size: 2rem;
  color: #8a2be2;
  flex-shrink: 0;
  margin-top: 4px;
}

.service-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.priority-service {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(15px);
  text-align: center;
}

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

.priority-header {
  margin-bottom: 50px;
}

.priority-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.priority-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.priority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.priority-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.priority-stat:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.stat-icon {
  margin-bottom: 20px;
}

.stat-icon i {
  font-size: 2.5rem;
  color: #ffd700;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 1rem;
}

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

.vip-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ffd700, #daa520);
  color: #1a1a2e;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.vip-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #daa520, #ffd700);
}

.vip-btn i {
  font-size: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .vip-content {
    gap: 50px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .services-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .priority-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .vip-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .vip-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .benefits-title {
    font-size: 1.8rem;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .card-header h4 {
    font-size: 1.2rem;
  }
  
  .vip-services {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .services-title {
    font-size: 1.6rem;
  }
  
  .services-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .service-item i {
    margin-top: 0;
  }
  
  .priority-service {
    padding: 40px 30px;
  }
  
  .priority-title {
    font-size: 1.8rem;
  }
  
  .priority-subtitle {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .vip-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .vip-description {
    font-size: 0.95rem;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .benefit-card.highlight {
    transform: none;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .card-header h4 {
    font-size: 1.1rem;
  }
  
  .vip-services {
    padding: 30px 20px;
  }
  
  .services-title {
    font-size: 1.4rem;
  }
  
  .services-description {
    font-size: 0.95rem;
  }
  
  .service-content h5 {
    font-size: 1.1rem;
  }
  
  .priority-service {
    padding: 30px 20px;
  }
  
  .priority-title {
    font-size: 1.6rem;
  }
  
  .priority-subtitle {
    font-size: 0.95rem;
  }
  
  .priority-stat {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .vip-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00ffff, #ff1493, #8a2be2, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.app-overview {
  margin-bottom: 80px;
}

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

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

.app-text {
  margin-bottom: 40px;
}

.app-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.app-features {
  margin-top: 30px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 600;
  color: #ffffff;
}

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

.feature-item i {
  font-size: 1.5rem;
  color: #00ffff;
}

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

.app-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 255, 255, 0.3);
  border: 2px solid rgba(0, 255, 255, 0.4);
}

.ai-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #8a2be2, #ff1493);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
  white-space: nowrap;
  animation: pulse 2s infinite;
}

.community-chat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 20, 147, 0.3);
  backdrop-filter: blur(15px);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.community-chat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

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

.chat-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff1493;
  margin-bottom: 20px;
  line-height: 1.3;
}

.chat-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.chat-features {
  position: relative;
  z-index: 2;
}

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

.chat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.chat-card:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
}

.chat-icon {
  margin-bottom: 20px;
}

.chat-icon i {
  font-size: 2.5rem;
  color: #ff1493;
}

.chat-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.chat-card p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.app-advanced-features {
  margin-bottom: 80px;
}

.advanced-header {
  text-align: center;
  margin-bottom: 50px;
}

.advanced-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8a2be2;
  line-height: 1.3;
}

.advanced-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advanced-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.advanced-item:hover {
  background: rgba(138, 43, 226, 0.1);
  border-color: rgba(138, 43, 226, 0.4);
  transform: translateX(8px);
}

.advanced-item i {
  font-size: 2.2rem;
  color: #8a2be2;
  flex-shrink: 0;
  margin-top: 4px;
}

.advanced-content h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.advanced-content p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.yiki-lottery {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(15px);
  margin-bottom: 80px;
}

.yiki-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.yiki-text {
  flex: 1;
}

.yiki-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.yiki-description {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  text-align: justify;
}

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

.yiki-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.yiki-feature:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateX(8px);
}

.yiki-feature i {
  color: #ffd700;
  font-size: 1.3rem;
}

.security-transparency {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}

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

.security-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.3;
}

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

.security-item,
.transparency-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.security-info h4,
.transparency-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.security-info p,
.transparency-info p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.security-features,
.transparency-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sec-feature,
.trans-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.sec-feature:hover,
.trans-feature:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: translateY(-2px);
}

.sec-feature i,
.trans-feature i {
  color: #00ffff;
  font-size: 1.1rem;
}

.connection-info {
  text-align: center;
  margin-bottom: 40px;
}

.connection-text {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

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

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #00ffff, #0099ff);
  color: #1a1a2e;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.app-download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.6);
  background: linear-gradient(45deg, #0099ff, #00ffff);
}

.app-download-btn i {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .app-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .chat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .security-grid {
    gap: 30px;
  }
  
  .yiki-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .yiki-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-app-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .app-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .community-chat {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .chat-title {
    font-size: 1.8rem;
  }
  
  .chat-subtitle {
    font-size: 1rem;
  }
  
  .chat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .chat-card {
    padding: 25px 15px;
  }
  
  .advanced-title {
    font-size: 1.8rem;
  }
  
  .advanced-item {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .advanced-item i {
    margin-top: 0;
  }
  
  .advanced-item:hover {
    transform: translateY(-5px);
  }
  
  .yiki-lottery {
    padding: 40px 30px;
    margin-bottom: 60px;
  }
  
  .yiki-title {
    font-size: 1.6rem;
  }
  
  .yiki-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-transparency {
    padding: 40px 30px;
  }
  
  .security-title {
    font-size: 1.8rem;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .connection-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mobile-app-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .app-description {
    font-size: 0.95rem;
  }
  
  .feature-item {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .community-chat {
    padding: 30px 20px;
  }
  
  .chat-title {
    font-size: 1.6rem;
  }
  
  .chat-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .chat-card {
    padding: 20px 15px;
  }
  
  .chat-card h4 {
    font-size: 1.2rem;
  }
  
  .advanced-title {
    font-size: 1.6rem;
  }
  
  .advanced-item {
    padding: 20px 15px;
  }
  
  .advanced-content h5 {
    font-size: 1.2rem;
  }
  
  .advanced-content p {
    font-size: 0.95rem;
  }
  
  .yiki-lottery {
    padding: 30px 20px;
  }
  
  .yiki-title {
    font-size: 1.4rem;
  }
  
  .yiki-description {
    font-size: 0.95rem;
  }
  
  .yiki-features {
    flex-direction: column;
    align-items: center;
  }
  
  .yiki-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .yiki-feature:hover {
    transform: translateY(-4px);
  }
  
  .security-transparency {
    padding: 30px 20px;
  }
  
  .security-title {
    font-size: 1.6rem;
  }
  
  .security-info h4,
  .transparency-info h4 {
    font-size: 1.3rem;
  }
  
  .security-info p,
  .transparency-info p {
    font-size: 0.95rem;
  }
  
  .security-features,
  .transparency-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .sec-feature,
  .trans-feature {
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }
  
  .connection-text {
    font-size: 0.95rem;
  }
  
  .app-download-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

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

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

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

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

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

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

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

.footer-logo-subtitle {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.footer-description {
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1rem;
}

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-feature i {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
}

/* Footer Sections Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.footer-link:hover {
  color: #ffd700;
  padding-left: 8px;
}

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

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

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

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

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.5);
}

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

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
}

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

.copyright p:last-child {
  margin-bottom: 0;
}

.disclaimer {
  font-size: 0.8rem !important;
  color: #64748b !important;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }
  
  .footer-about {
    text-align: center;
    margin-bottom: 0;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-features {
    justify-content: center;
    gap: 15px;
  }
  
  .footer-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.2rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .legal-links {
    gap: 20px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 12px 0;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-feature {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link,
  .contact-item {
    font-size: 0.9rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer {
    font-size: 0.75rem !important;
  }
}

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

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

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

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

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

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

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

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

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

/* Bonus Button */
.sticky-btn-bonus {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  color: #1a1a2e;
  position: relative;
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ff1493;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.sticky-btn-bonus i {
  color: #b45309;
}

.sticky-btn-bonus:hover i {
  color: #1a1a2e;
  transform: scale(1.1) rotate(5deg);
}

.sticky-btn-bonus span {
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Pulse animation for bonus button */
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
    min-height: 50px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

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

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

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

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

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

/* Hide sticky buttons when mobile menu is open */
body.mobile-menu-open .sticky-buttons {
  display: none;
}

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

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

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

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

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
}

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 30px;
  color: #fca5a5;
  font-weight: 600;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

.form-input.success {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

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

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

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.password-toggle:focus {
  outline: none;
  color: #ffd700;
}

/* Input Error */
.input-error {
  display: block;
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.input-error.show {
  opacity: 1;
  transform: translateY(0);
}

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

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

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

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

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

.btn-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  text-decoration: none;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  color: #ffd700;
  transform: translateY(-1px);
}

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

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

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  color: #6ee7b7;
  font-size: 0.9rem;
  font-weight: 500;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 30px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 12px 25px;
  }
  
  .login-card {
    padding: 28px 20px;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 14px;
  }
  
  .login-btn {
    padding: 12px 18px;
  }
  
  .register-btn {
    padding: 10px 18px;
  }
  
  .security-note {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 24px 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    font-size: 0.9rem;
  }
  
  .error-message {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 40px;
  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(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  border: 2px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

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

.register-subtitle {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
}

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 30px;
  color: #fca5a5;
  font-weight: 600;
  animation: shake 0.5s ease-in-out;
}

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

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

/* Success Message */
.success-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  margin-bottom: 30px;
  color: #6ee7b7;
  font-weight: 600;
  animation: fadeInUp 0.5s ease-out;
}

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

.success-message i {
  color: #10b981;
  font-size: 1.1rem;
}

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

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

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

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

.form-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.form-input:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

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

.form-input.success {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

/* Input Error */
.input-error {
  display: block;
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 8px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.input-error.show {
  opacity: 1;
  transform: translateY(0);
}

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

.register-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(45deg, #10b981, #34d399);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
  background: linear-gradient(45deg, #34d399, #10b981);
}

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

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

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

.btn-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

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

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: #e2e8f0;
  text-decoration: none;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

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

/* Register Footer */
.register-footer {
  margin-top: 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: #fcd34d;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.benefits-note i {
  color: #ffd700;
  font-size: 1.1rem;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  color: #6ee7b7;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 30px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 32px 24px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1.1rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 12px 25px;
  }
  
  .register-card {
    padding: 28px 20px;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 28px;
  }
  
  .form-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .benefits-note,
  .security-note {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 24px 16px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
  
  .error-message,
  .success-message {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    font-size: 0.95rem;
  }
  
  .login-btn {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  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, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffd700, #ff6b9d, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

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

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
}

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

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

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

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 50px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

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

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

.promotion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.3;
}

.promotion-content {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.promotion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotion-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.promotion-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(8px);
}

.promotion-item i {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(45deg, #10b981, #34d399);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
  background: linear-gradient(45deg, #34d399, #10b981);
}

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

/* Alternate colors for different promotions */
#first-deposit-promotion .promotion-card {
  border-color: rgba(59, 130, 246, 0.2);
}

#first-deposit-promotion .promotion-card::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);
}

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

#first-deposit-promotion .promotion-btn {
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

#first-deposit-promotion .promotion-btn:hover {
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

#weekly-cashback .promotion-card {
  border-color: rgba(255, 20, 147, 0.2);
}

#weekly-cashback .promotion-card::before {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.03) 0%, transparent 100%);
}

#weekly-cashback .promotion-icon {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
}

#weekly-cashback .promotion-btn {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

#weekly-cashback .promotion-btn:hover {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
}

#referral-program .promotion-card {
  border-color: rgba(138, 43, 226, 0.2);
}

#referral-program .promotion-card::before {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, transparent 100%);
}

#referral-program .promotion-icon {
  background: linear-gradient(45deg, #8a2be2, #ba55d3);
}

#referral-program .promotion-btn {
  background: linear-gradient(45deg, #8a2be2, #ba55d3);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

#referral-program .promotion-btn:hover {
  background: linear-gradient(45deg, #ba55d3, #8a2be2);
  box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-btn {
    font-size: 1.2rem;
    padding: 18px 32px;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 40px 30px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    font-size: 1.1rem;
    padding: 16px 28px;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .promotion-icon i {
    font-size: 2.2rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .promotion-item i {
    margin-top: 0;
  }
  
  .promotion-btn {
    font-size: 1.1rem;
    padding: 16px 32px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .hero-btn {
    font-size: 1rem;
    padding: 14px 24px;
    width: 100%;
    max-width: 320px;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-container {
    padding: 0 12px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-item {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  
  .promotion-btn {
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-item {
    font-size: 0.9rem;
  }
}