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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

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

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

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

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

.hero-text {
  max-width: 100%;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ff1493, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  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: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

.feature-item i {
  font-size: 1.4rem;
  color: #ffd700;
  width: 24px;
  text-align: center;
}

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

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

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

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

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

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

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

.btn-secondary {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.hero-image {
  position: relative;
  text-align: center;
}

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

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

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

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

.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;
  background: linear-gradient(45deg, #ffd700, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 40px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px 30px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
}

@media (min-width: 1281px) {
  .hero-container {
    padding: 0 40px;
  }
}

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

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

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

.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.logo-link:hover {
  color: #ffd700;
  transform: scale(1.05);
}

.logo-link i {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-text {
  background: linear-gradient(45deg, #ffd700, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

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

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

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

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

.header-cta {
  flex-shrink: 0;
}

.btn-cta {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
  background: linear-gradient(45deg, #ff69b4, #ff1493);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  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: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.mobile-logo i {
  font-size: 1.8rem;
  color: #ffd700;
}

.mobile-logo span {
  background: linear-gradient(45deg, #ffd700, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

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

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

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

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

.mobile-cta-btn {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

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

/* Responsive Breakpoints */
@media (max-width: 1000px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    min-height: 60px;
  }
  
  .logo-link {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-link {
    font-size: 1.2rem;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .mobile-nav {
    padding: 30px 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-btn {
    font-size: 1.1rem;
    padding: 16px 20px;
  }
}

@media (min-width: 1281px) {
  .header-container {
    padding: 0 40px;
  }
  
  .nav-menu {
    gap: 50px;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
}

/* Platform Overview Section */
.platform-section {
  padding: 80px 20px;
  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(0, 191, 255, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

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

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

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #00bfff, #ffd700, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.platform-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ffd700, #ff1493);
  border-radius: 2px;
}

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

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

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

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

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

.feature-list-item:hover {
  background: rgba(0, 191, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(0, 191, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.feature-list-item i {
  font-size: 1.5rem;
  color: #00bfff;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.feature-list-item span {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.platform-image {
  position: relative;
  text-align: center;
}

.platform-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.platform-img:hover {
  transform: scale(1.03) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 191, 255, 0.3);
}

.platform-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #00bfff, #0080ff);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Mobile Responsiveness for Platform Section */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 15px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .platform-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .platform-description p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .platform-features-list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-list-item {
    padding: 16px;
  }
  
  .feature-list-item i {
    font-size: 1.3rem;
    width: 25px;
  }
  
  .feature-list-item span {
    font-size: 0.95rem;
  }
  
  .platform-badges {
    top: 15px;
    left: 15px;
    gap: 10px;
  }
  
  .badge-item {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 40px 10px;
  }
  
  .platform-title {
    font-size: 1.8rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .feature-list-item {
    padding: 14px;
    gap: 12px;
  }
  
  .feature-list-item i {
    font-size: 1.2rem;
    width: 22px;
  }
  
  .feature-list-item span {
    font-size: 0.9rem;
  }
  
  .badge-item {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

@media (min-width: 1281px) {
  .platform-container {
    padding: 0 40px;
  }
  
  .platform-title {
    font-size: 3rem;
  }
  
  .platform-description p {
    font-size: 1.2rem;
  }
}

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

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

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

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

.game-system-image {
  position: relative;
  text-align: center;
}

.game-system-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
}

.game-system-img:hover {
  transform: scale(1.03) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(255, 20, 147, 0.3);
}

.system-features-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 20, 147, 0.3);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
}

.overlay-item i {
  font-size: 1rem;
  color: #ff1493;
}

.game-system-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ff1493, #00ff7f, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.game-system-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #ff1493, #00ff7f);
  border-radius: 2px;
}

.game-system-description {
  margin-bottom: 50px;
}

.game-system-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.game-system-description strong {
  color: #ff1493;
  font-weight: 700;
}

.technology-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

.tech-item:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: translateX(10px);
  border-color: rgba(255, 20, 147, 0.4);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.tech-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.tech-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.tech-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.tech-info p {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
}

/* Mobile Responsiveness for Game System Section */
@media (max-width: 768px) {
  .game-system-section {
    padding: 60px 15px;
  }
  
  .game-system-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .game-system-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .game-system-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .game-system-description {
    margin-bottom: 40px;
  }
  
  .game-system-description p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .technology-highlights {
    gap: 20px;
  }
  
  .tech-item {
    padding: 20px;
    gap: 15px;
  }
  
  .tech-icon {
    width: 50px;
    height: 50px;
  }
  
  .tech-icon i {
    font-size: 1.5rem;
  }
  
  .tech-info h4 {
    font-size: 1.2rem;
  }
  
  .tech-info p {
    font-size: 0.95rem;
  }
  
  .system-features-overlay {
    top: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .overlay-item {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .game-system-section {
    padding: 40px 10px;
  }
  
  .game-system-title {
    font-size: 1.8rem;
  }
  
  .game-system-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .tech-item {
    padding: 16px;
    gap: 12px;
  }
  
  .tech-icon {
    width: 45px;
    height: 45px;
  }
  
  .tech-icon i {
    font-size: 1.3rem;
  }
  
  .tech-info h4 {
    font-size: 1.1rem;
  }
  
  .tech-info p {
    font-size: 0.9rem;
  }
  
  .overlay-item {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

@media (min-width: 1281px) {
  .game-system-container {
    padding: 0 40px;
  }
  
  .game-system-title {
    font-size: 3rem;
  }
  
  .game-system-description p {
    font-size: 1.2rem;
  }
  
  .tech-info h4 {
    font-size: 1.5rem;
  }
  
  .tech-info p {
    font-size: 1.1rem;
  }
}

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

.access-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 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

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

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

.access-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #00ffff, #ffa500, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.access-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #00ffff, #ffa500);
  border-radius: 2px;
}

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

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

.access-description strong {
  color: #00ffff;
  font-weight: 700;
}

.access-description a {
  color: #ffa500;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.access-description a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

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

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

.method-item:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00ffff, #0080ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.method-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.method-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.method-info p {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
}

.access-button {
  text-align: left;
}

.btn-access {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.btn-access:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 255, 0.4);
}

.access-image {
  position: relative;
  text-align: center;
}

.access-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.access-img:hover {
  transform: scale(1.03) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 255, 255, 0.3);
}

.access-features {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
  flex: 1;
  justify-content: center;
}

.feature-badge i {
  font-size: 0.9rem;
  color: #00ffff;
}

/* Mobile Responsiveness for Access Section */
@media (max-width: 768px) {
  .access-section {
    padding: 60px 15px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .access-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .access-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .access-description {
    margin-bottom: 30px;
  }
  
  .access-description p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .access-methods {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .method-item {
    padding: 16px;
    gap: 15px;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
  }
  
  .method-icon i {
    font-size: 1.3rem;
  }
  
  .method-info h4 {
    font-size: 1.2rem;
  }
  
  .method-info p {
    font-size: 0.95rem;
  }
  
  .access-button {
    text-align: center;
  }
  
  .access-features {
    bottom: 15px;
    left: 15px;
    right: 15px;
    flex-direction: column;
    gap: 8px;
  }
  
  .feature-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 40px 10px;
  }
  
  .access-title {
    font-size: 1.8rem;
  }
  
  .access-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .method-item {
    padding: 14px;
    gap: 12px;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
  }
  
  .method-icon i {
    font-size: 1.2rem;
  }
  
  .method-info h4 {
    font-size: 1.1rem;
  }
  
  .method-info p {
    font-size: 0.9rem;
  }
  
  .feature-badge {
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}

@media (min-width: 1281px) {
  .access-container {
    padding: 0 40px;
  }
  
  .access-title {
    font-size: 3rem;
  }
  
  .access-description p {
    font-size: 1.2rem;
  }
  
  .method-info h4 {
    font-size: 1.4rem;
  }
  
  .method-info p {
    font-size: 1.1rem;
  }
}

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

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

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

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

.download-image {
  position: relative;
  text-align: center;
}

.download-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(50, 205, 50, 0.3);
  transition: all 0.3s ease;
}

.download-img:hover {
  transform: scale(1.03) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(50, 205, 50, 0.3);
}

.download-platforms {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-badge.ios {
  background: linear-gradient(45deg, #000000, #333333);
  color: #ffffff;
}

.platform-badge.android {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
}

.platform-badge i {
  font-size: 1.2rem;
}

.download-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #32cd32, #8a2be2, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.download-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #32cd32, #8a2be2);
  border-radius: 2px;
}

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

.download-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.download-description strong {
  color: #32cd32;
  font-weight: 700;
}

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

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.app-feature-item:last-child {
  border-bottom: none;
}

.app-feature-item:hover {
  padding-left: 10px;
  color: #32cd32;
}

.app-feature-item i {
  font-size: 1.3rem;
  color: #8a2be2;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
}

.app-feature-item span {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

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

.btn-ios {
  background: linear-gradient(45deg, #000000, #333333);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-ios:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-android {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-android:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

/* Mobile Responsiveness for Download Section */
@media (max-width: 768px) {
  .download-section {
    padding: 60px 15px;
  }
  
  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .download-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .download-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .download-description {
    margin-bottom: 30px;
  }
  
  .download-description p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .app-features {
    margin-bottom: 30px;
  }
  
  .app-feature-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .app-feature-item i {
    font-size: 1.2rem;
    width: 22px;
  }
  
  .app-feature-item span {
    font-size: 0.95rem;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .download-platforms {
    top: 15px;
    left: 15px;
    gap: 12px;
  }
  
  .platform-badge {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .platform-badge i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .download-section {
    padding: 40px 10px;
  }
  
  .download-title {
    font-size: 1.8rem;
  }
  
  .download-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .app-feature-item {
    padding: 10px 0;
    gap: 10px;
  }
  
  .app-feature-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .app-feature-item span {
    font-size: 0.9rem;
  }
  
  .platform-badge {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .platform-badge i {
    font-size: 1rem;
  }
}

@media (min-width: 1281px) {
  .download-container {
    padding: 0 40px;
  }
  
  .download-title {
    font-size: 3rem;
  }
  
  .download-description p {
    font-size: 1.2rem;
  }
  
  .app-feature-item span {
    font-size: 1.1rem;
  }
}

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

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

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

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

.financial-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ffd700, #00ffff, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.financial-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(45deg, #ffd700, #00ffff);
  border-radius: 2px;
}

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

.financial-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.financial-description strong {
  color: #ffd700;
  font-weight: 700;
}

.financial-description a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.financial-description a:hover {
  color: #32cd32;
  text-decoration: underline;
}

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

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

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

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

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

.feature-icon i {
  font-size: 1.8rem;
  color: #000000;
}

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

.feature-card p {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
}

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

.btn-deposit {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-deposit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

.btn-withdraw {
  background: linear-gradient(45deg, #00ffff, #0080ff);
  color: #000000;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.btn-withdraw:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 255, 0.4);
}

.financial-image {
  position: relative;
  text-align: center;
}

.financial-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.financial-img:hover {
  transform: scale(1.03) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
}

.transaction-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
  flex: 1;
  justify-content: center;
}

.info-badge i {
  font-size: 0.9rem;
  color: #ffd700;
}

/* Mobile Responsiveness for Financial Section */
@media (max-width: 768px) {
  .financial-section {
    padding: 60px 15px;
  }
  
  .financial-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .financial-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .financial-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .financial-description {
    margin-bottom: 30px;
  }
  
  .financial-description p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
  }
  
  .financial-features {
    margin-bottom: 30px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .feature-card h4 {
    font-size: 1.2rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
  
  .financial-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .transaction-info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    flex-direction: column;
    gap: 8px;
  }
  
  .info-badge {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .financial-section {
    padding: 40px 10px;
  }
  
  .financial-title {
    font-size: 1.8rem;
  }
  
  .financial-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-card h4 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .info-badge {
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}

@media (min-width: 1281px) {
  .financial-container {
    padding: 0 40px;
  }
  
  .financial-title {
    font-size: 3rem;
  }
  
  .financial-description p {
    font-size: 1.2rem;
  }
  
  .feature-card h4 {
    font-size: 1.4rem;
  }
  
  .feature-card p {
    font-size: 1.1rem;
  }
}

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

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

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

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}

.footer-logo i {
  font-size: 2.2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-logo-text {
  background: linear-gradient(45deg, #ffd700, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  position: relative;
}

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

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

.footer-menu a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: #ffd700;
  padding-left: 10px;
}

.footer-menu a:hover::before {
  width: 30px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

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

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

.payment-item i {
  font-size: 1.1rem;
  color: #00bfff;
  width: 20px;
  text-align: center;
}

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

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(50, 205, 50, 0.1);
  padding: 6px 10px;
  border-radius: 15px;
  border: 1px solid rgba(50, 205, 50, 0.3);
}

.security-badge i {
  font-size: 1rem;
  color: #32cd32;
}

.security-badge span {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.footer-copyright p,
.footer-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #999999;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-about {
    text-align: center;
    order: -1;
  }
  
  .footer-logo {
    justify-content: center;
    font-size: 1.6rem;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
    text-align: center;
  }
  
  .payment-methods {
    align-items: center;
  }
  
  .security-badges {
    align-items: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 0;
  }
  
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-logo {
    font-size: 1.4rem;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-menu a {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .payment-item span {
    font-size: 0.85rem;
  }
  
  .footer-copyright p,
  .footer-disclaimer p {
    font-size: 0.85rem;
  }
}

@media (min-width: 1281px) {
  .footer-container {
    padding: 0 40px;
  }
  
  .footer-content {
    gap: 50px;
  }
  
  .footer-title {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 1.05rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.sticky-btn span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: center;
}

/* Individual Button Styles */
.btn-login {
  background: linear-gradient(45deg, #00bfff, #0080ff);
}

.btn-login::before {
  background: linear-gradient(45deg, #0080ff, #00bfff);
}

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

.btn-login:hover i {
  transform: scale(1.1);
}

.btn-register {
  background: linear-gradient(45deg, #32cd32, #228b22);
}

.btn-register::before {
  background: linear-gradient(45deg, #228b22, #32cd32);
}

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

.btn-register:hover i {
  transform: scale(1.1);
}

.btn-bonus {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  animation: pulse-bonus 2s infinite;
}

.btn-bonus::before {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
}

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

.btn-bonus:hover i {
  transform: scale(1.1) rotate(10deg);
}

@keyframes pulse-bonus {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(255, 20, 147, 0);
  }
}

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

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

@media (min-width: 1281px) {
  .sticky-btn {
    padding: 15px 12px;
    min-height: 65px;
    font-size: 0.9rem;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .sticky-btn span {
    font-size: 0.85rem;
  }
}

/* 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 (min-width: 1281px) {
  body {
    padding-bottom: 65px;
  }
}

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

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

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

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

.login-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.login-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

.login-form-container {
  padding: 30px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 3;
}

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

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

.form-input::placeholder {
  color: #999999;
}

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: color 0.3s ease;
  z-index: 3;
}

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

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

.error-message:before {
  content: '⚠';
  font-size: 0.9rem;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.btn-register {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.form-error {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid #ff4757;
  border-radius: 10px;
  color: #ff4757;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-error.show {
  display: block;
  animation: shakeIn 0.5s ease;
}

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

.login-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.8rem;
  flex: 1;
  text-align: center;
}

.security-item i {
  color: #32cd32;
  font-size: 1rem;
}

/* Loading State */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success State */
.success {
  border-color: #32cd32 !important;
  background: rgba(50, 205, 50, 0.1) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .login-section {
    padding: 120px 15px 15px 15px;
    min-height: 100vh;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-header {
    padding: 30px 20px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-form-container {
    padding: 25px 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .toggle-password {
    right: 12px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 120px 10px 10px 10px;
  }
  
  .login-header {
    padding: 25px 15px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-form-container {
    padding: 20px 15px;
  }
  
  .form-input {
    font-size: 0.95rem;
  }
  
  .btn {
    font-size: 0.9rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

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

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

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

.register-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(50, 205, 50, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #32cd32, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4;
}

.register-form-container {
  padding: 30px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #32cd32;
  font-size: 1.1rem;
  z-index: 3;
}

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

.form-input:focus {
  outline: none;
  border-color: #32cd32;
  background: rgba(50, 205, 50, 0.1);
  box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.2);
}

.form-input::placeholder {
  color: #999999;
}

.form-input.error {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.form-input.success {
  border-color: #32cd32;
  background: rgba(50, 205, 50, 0.1);
}

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

.error-message:before {
  content: '⚠';
  font-size: 0.9rem;
}

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

.input-help {
  color: #999999;
  font-size: 0.8rem;
  margin-top: 5px;
  line-height: 1.4;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-register {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

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

.btn-login-outline {
  background: transparent;
  border: 2px solid #ff1493;
  color: #ff1493;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.btn-login-outline:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.form-error {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid #ff4757;
  border-radius: 10px;
  color: #ff4757;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.form-error.show {
  display: block;
  animation: shakeIn 0.5s ease;
}

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

.register-footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #cccccc;
  font-size: 0.75rem;
  flex: 1;
  text-align: center;
}

.security-item i {
  color: #32cd32;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* Loading State */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success Animation */
.success-animation {
  animation: successPulse 0.6s ease;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .register-section {
    padding: 120px 15px 15px 15px;
    min-height: 100vh;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-header {
    padding: 30px 20px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-form-container {
    padding: 120px 20px 20px 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .security-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  
  .security-item i {
    margin-bottom: 0;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 120px 10px 10px 10px;
  }
  
  .register-header {
    padding: 25px 15px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-form-container {
    padding: 20px 15px;
  }
  
  .form-input {
    font-size: 0.95rem;
  }
  
  .btn {
    font-size: 0.9rem;
  }
  
  .security-item {
    font-size: 0.7rem;
  }
  
  .input-help {
    font-size: 0.75rem;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 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 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 30%),
              radial-gradient(circle at 80% 20%, rgba(50, 205, 50, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-icon {
  margin-bottom: 30px;
  animation: bounce 1s ease-in-out infinite alternate;
}

.hero-icon i {
  font-size: 4rem;
  background: linear-gradient(45deg, #ffd700, #ff1493, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffd700, #ff1493, #32cd32, #00bfff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

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

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

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

.btn-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 20, 147, 0.5);
}

/* Promotion Section Styles */
.promotion-section {
  padding: 60px 20px;
  position: relative;
}

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

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.promotion-header {
  padding: 40px 40px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge.special {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.promotion-badge.wallet {
  background: linear-gradient(45deg, #00bfff, #0080ff);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.promotion-badge.joker {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

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

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-content {
  padding: 40px;
}

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

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.promotion-features i {
  color: #32cd32;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-promotion {
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: #ffffff;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(50, 205, 50, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-promotion:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(50, 205, 50, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
  }
  
  .hero-icon i {
    font-size: 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-hero {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-header {
    padding: 30px 25px 20px;
  }
  
  .promotion-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    padding: 30px 25px;
  }
  
  .promotion-features {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .promotion-features li {
    font-size: 1rem;
    padding: 12px 0;
    gap: 12px;
  }
  
  .promotion-features i {
    font-size: 1.1rem;
  }
  
  .btn-promotion {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px;
  }
  
  .hero-icon i {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn-hero {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .promotion-section {
    padding: 30px 10px;
  }
  
  .promotion-header {
    padding: 25px 20px 15px;
  }
  
  .promotion-badge {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .promotion-content {
    padding: 25px 20px;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
    gap: 10px;
    padding: 10px 0;
  }
  
  .btn-promotion {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (min-width: 1281px) {
  .hero-container,
  .promotion-container {
    padding: 0 40px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-description {
    font-size: 1.4rem;
  }
  
  .promotion-title {
    font-size: 2.5rem;
  }
  
  .promotion-features li {
    font-size: 1.2rem;
  }
}