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

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

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

a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffed4e;
}

/* Hero Section */
.hero-section {
  padding: 80px 20px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #e0e0e0;
  line-height: 1.8;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
}

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

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

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

.hero-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

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

.hero-badge i {
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-badge {
    top: -10px;
    right: -10px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .feature-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-img {
    border-radius: 15px;
  }
}

/* Header Styles */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.02);
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.logo-domain {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 2px;
}

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

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

.nav-item {}

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

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

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

.header-cta {}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100());
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4); }
}

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

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

.mobile-menu-toggle:hover .hamburger-line {
  background: #ffed4e;
}

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

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

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

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

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

.mobile-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

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

.mobile-domain {
  color: #ffffff;
}

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

.mobile-menu-close:hover {
  color: #ffed4e;
  transform: rotate(90deg);
}

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

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

.mobile-nav-item {}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  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(8px);
}

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

.mobile-cta-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Specific Card Themes */
.service-card.baccarat {
  border-color: rgba(220, 20, 60, 0.3);
}

.service-card.baccarat .service-icon {
  background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
}

.service-card.baccarat .service-icon i {
  color: white;
}

.service-card.sports {
  border-color: rgba(0, 255, 127, 0.3);
}

.service-card.sports .service-icon {
  background: linear-gradient(135deg, #00ff7f 0%, #00fa9a 100%);
}

.service-card.lottery {
  border-color: rgba(255, 69, 0, 0.3);
}

.service-card.lottery .service-icon {
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.service-card.lottery .service-icon i {
  color: white;
}

.service-card.fishing {
  border-color: rgba(30, 144, 255, 0.3);
}

.service-card.fishing .service-icon {
  background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100());
}

.service-card.fishing .service-icon i {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-content {
    gap: 60px;
    margin-bottom: 60px;
  }
  
  .services-title {
    font-size: 2.25rem;
  }
  
  .services-description p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 15px;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .services-image {
    order: -1;
  }
  
  .services-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 10px;
  }
  
  .services-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  
  .services-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .service-card {
    padding: 20px 16px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }
  
  .service-icon i {
    font-size: 1.7rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .service-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  
  .services-badge {
    bottom: -10px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #e0e0e0;
  position: relative;
  margin-top: 100px;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px 20px 40px;
}

.footer-section {}

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

.footer-logo-text {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-domain {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 2px;
}

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

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

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

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

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

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

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

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

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

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

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.contact-info {
  margin-bottom: 24px;
}

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

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

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  justify-content: center;
}

.footer-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100());
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.footer-copyright {
  text-align: right;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 20px 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 50px 15px 25px;
  }
  
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 10px 20px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-logo-domain {
    font-size: 1.2rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-list {
    text-align: center;
  }
  
  .footer-link {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-link:hover {
    transform: translateY(-2px);
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 20px 10px;
  }
  
  .footer-legal {
    gap: 16px;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
  min-height: 70px;
  gap: 4px;
}

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

.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.2;
  text-align: center;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
  border-color: rgba(30, 144, 255, 0.2);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(65, 105, 225, 0.2) 100());
  color: #1e90ff;
  transform: translateY(-2px);
}

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

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border-color: rgba(0, 255, 127, 0.2);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.2) 0%, rgba(46, 125, 50, 0.2) 100());
  color: #00ff7f;
  transform: translateY(-2px);
}

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

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 237, 78, 0.15) 100%);
  border-color: rgba(255, 215, 0, 0.3);
  animation: pulse-sticky 3s ease-in-out infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 237, 78, 0.25) 100());
  color: #ffd700;
  transform: translateY(-2px);
}

.sticky-btn-credit i {
  color: #ffd700;
}

@keyframes pulse-sticky {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
}

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

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

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

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

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  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: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

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

.login-form {}

.error-message {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

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

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

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

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  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-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-input.success {
  border-color: #00ff7f;
  box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

.password-wrapper {
  position: relative;
}

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

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

.field-error {
  font-size: 0.8rem;
  color: #ff4757;
  margin-top: 4px;
  display: none;
}

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

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

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100());
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

.login-btn:disabled:hover {
  transform: none;
}

.form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

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

.form-divider span {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.register-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.register-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.forgot-link,
.support-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.forgot-link:hover,
.support-link:hover {
  color: #ffd700;
}

.login-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.85rem;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }
  
  .login-card {
    padding: 32px 24px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-features {
    gap: 16px;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 15px 10px;
  }
  
  .login-card {
    padding: 24px 20px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .login-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .login-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .feature-item {
    font-size: 0.75rem;
  }
}

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

.register-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.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.register-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

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

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

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

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

.register-title {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.register-subtitle {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
}

.register-form {}

.error-message {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100());
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 8px;
}

.error-message::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

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

.success-message {
  background: linear-gradient(135deg, #00ff7f 0%, #00fa9a 100());
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.success-message::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

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

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

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

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  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-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

.form-input.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-input.success {
  border-color: #00ff7f;
  box-shadow: 0 0 0 3px rgba(0, 255, 127, 0.1);
}

.field-help {
  font-size: 0.8rem;
  color: #999999;
  margin-top: 4px;
}

.field-error {
  font-size: 0.8rem;
  color: #ff4757;
  margin-top: 4px;
  display: none;
}

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

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

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.terms-label input[type="checkbox"] {
  display: none;
}

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

.terms-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: #ffd700;
}

.terms-label input[type="checkbox"]:checked + .checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 0.75rem;
}

.terms-text {
  color: #cccccc;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffed4e;
}

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

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100());
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

.register-btn:disabled:hover {
  transform: none;
}

.form-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

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

.form-divider span {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.login-btn {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.register-benefits {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.benefits-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  font-family: 'Prompt', sans-serif;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.85rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.benefit-item i {
  color: #ffd700;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }
  
  .register-card {
    padding: 32px 24px;
    margin-bottom: 24px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .benefits-list {
    gap: 12px;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 15px 10px;
  }
  
  .register-card {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .terms-label {
    font-size: 0.85rem;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .benefit-item {
    font-size: 0.75rem;
    justify-content: center;
  }
  
  .benefits-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  text-align: center;
}

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

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

.hero-content {
  margin-bottom: 60px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 16px 32px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  animation: pulse-highlight 2s ease-in-out infinite;
}

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

.hero-highlight i {
  font-size: 1.3rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  animation: glow-btn 3s ease-in-out infinite;
}

@keyframes glow-btn {
  0%, 100% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6); }
}

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

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 12px 20px;
  color: #ffd700;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.promotion-content.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.promotion-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 24px;
}

.promotion-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.promotion-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(8px);
}

.promotion-list li i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-list li span {
  color: #e0e0e0;
  line-height: 1.5;
}

.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100());
  color: #ffffff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.promotion-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100());
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.promotion-cta-btn.special {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100());
  color: white;
  animation: special-glow 2s ease-in-out infinite alternate;
}

@keyframes special-glow {
  from { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3); }
  to { box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5); }
}

.promotion-cta-btn.special:hover {
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
  color: white;
}

.promotion-cta-btn.double {
  background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100());
  color: white;
}

.promotion-cta-btn.double:hover {
  background: linear-gradient(135deg, #6a1b9a 0%, #8a2be2 100());
  color: white;
}

/* Promotion Cards */
.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.promotion-card.special {
  border-color: rgba(255, 107, 107, 0.4);
}

.promotion-card.special:hover {
  border-color: rgba(255, 107, 107, 0.6);
}

.promotion-card.double {
  border-color: rgba(138, 43, 226, 0.4);
}

.promotion-card.double:hover {
  border-color: rgba(138, 43, 226, 0.6);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

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

.card-header.deposit i,
.card-header.special i {
  color: #ff6b6b;
}

.card-header.double i {
  color: #8a2be2;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
}

.card-header.deposit h3,
.card-header.special h3 {
  color: #ff6b6b;
}

.card-header.double h3 {
  color: #8a2be2;
}

.card-amount {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100());
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.card-condition {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 24px;
}

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

.card-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.card-feature i {
  color: #00ff7f;
  font-size: 0.8rem;
}

.special-badge,
.double-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0 24px 0 16px;
  letter-spacing: 1px;
}

.double-badge {
  background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-content {
    gap: 60px;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 16px;
  }
  
  .feature-badge {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  
  .promotion-section {
    padding: 80px 15px;
  }
  
  .promotion-content,
  .promotion-content.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promotion-content.reverse .promotion-card {
    order: -1;
  }
  
  .promotion-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .promotion-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .promotion-cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 10px 50px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-highlight {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .promotion-section {
    padding: 60px 10px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .promotion-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .promotion-list li {
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  
  .promotion-list li:hover {
    transform: translateY(-2px);
  }
  
  .promotion-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 24px 20px;
  }
  
  .card-amount {
    font-size: 2rem;
  }
  
  .card-feature {
    font-size: 0.85rem;
  }
}

@media (max-width: 1060px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-domain {
    font-size: 1.1rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 15px 20px;
  }
  
  .nav-list {
    gap: 24px;
  }
  
  .nav-link {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1060px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-domain {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-domain {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 10px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-domain {
    font-size: 1rem;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.6rem;
  }
  
  .mobile-nav {
    padding: 30px 15px;
  }
  
  .mobile-nav-link {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
}

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

.about-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.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 32px;
}

.about-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-description p {
  margin-bottom: 24px;
}

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

.about-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-description a:hover {
  color: #ffed4e;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 2rem;
  color: #000;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
}

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

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

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

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

.about-stats {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.stat-item {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #000;
  padding: 16px 20px;
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  min-width: 100px;
}

.stat-item i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  font-size: 1.5rem;
  font-family: 'Prompt', sans-serif;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

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

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

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

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

.deposit-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 32px;
}

.deposit-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.deposit-description p {
  margin-bottom: 24px;
}

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

.deposit-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.deposit-description a:hover {
  color: #ffed4e;
}

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

.highlights-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  font-family: 'Prompt', sans-serif;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.highlight-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: 'Prompt', sans-serif;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.deposit-additional {
  margin-bottom: 40px;
}

.deposit-additional p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.deposit-additional strong {
  color: #ffd700;
  font-weight: 700;
}

.deposit-additional a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.deposit-additional a:hover {
  color: #ffed4e;
}

.deposit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

.deposit-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #00ff7f 0%, #00fa9a 100%);
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 255, 127, 0.3);
  animation: pulse 2s infinite;
}

.deposit-badge i {
  color: #ffd700;
}

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

.promotions-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.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.promotions-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 32px;
}

.promotions-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.promotions-description p {
  margin-bottom: 24px;
}

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

.promotions-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.promotions-description a:hover {
  color: #ffed4e;
}

.promotion-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.promo-card.highlight {
  border-color: rgba(255, 107, 107, 0.4);
  animation: highlight-glow 2s ease-in-out infinite alternate;
}

@keyframes highlight-glow {
  from { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
  to { box-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
}

.promo-card.highlight:hover {
  border-color: rgba(255, 107, 107, 0.6);
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1);
}

.promo-icon i {
  font-size: 1.5rem;
  color: #000;
}

.promo-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
}

.promo-amount {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.4;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promo-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

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

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

.promo-special-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.promo-special-badge i {
  color: #ffd700;
}

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

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

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

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

.slots-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 32px;
}

.slots-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
}

.slots-description p {
  margin-bottom: 24px;
}

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

.popular-games {
  margin-bottom: 40px;
}

.games-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  font-family: 'Prompt', sans-serif;
}

.games-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.game-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-icon i {
  font-size: 1.2rem;
  color: #000;
}

.game-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.game-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.slots-additional {
  margin-bottom: 40px;
}

.slots-additional p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.slots-additional strong {
  color: #ffd700;
  font-weight: 700;
}

.slots-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

.slots-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.slots-badge i {
  color: #ffd700;
}

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

.services-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.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-bottom: 32px;
}

.services-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.services-description p {
  margin-bottom: 24px;
}

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

.services-description a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

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

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

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

.services-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: linear-gradient(135deg, #8a2be2 0%, #6a1b9a 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
  animation: pulse 2s infinite;
}

.services-badge i {
  color: #ffd700;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: #000;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: 'Prompt', sans-serif;
}

.service-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 600;
}

.feature-tag i {
  font-size: 0.7rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
  justify-content: center;
}

.service-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Specific Card Themes */
.service-card.baccarat {
  border-color: rgba(220, 20, 60, 0.3);
}

.service-card.baccarat .service-icon {
  background: linear-gradient(135deg, #dc143c 0%, #b22222 100%);
}

.service-card.baccarat .service-icon i {
  color: white;
}

.service-card.sports {
  border-color: rgba(0, 255, 127, 0.3);
}

.service-card.sports .service-icon {
  background: linear-gradient(135deg, #00ff7f 0%, #00fa9a 100%);
}

.service-card.lottery {
  border-color: rgba(255, 69, 0, 0.3);
}

.service-card.lottery .service-icon {
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.service-card.lottery .service-icon i {
  color: white;
}

.service-card.fishing {
  border-color: rgba(30, 144, 255, 0.3);
}

.service-card.fishing .service-icon {
  background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
}

.service-card.fishing .service-icon i {
  color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .about-content,
  .deposit-content,
  .promotions-content,
  .slots-content,
  .services-content {
    gap: 60px;
  }
  
  .about-title,
  .deposit-title,
  .promotions-title,
  .slots-title,
  .services-title {
    font-size: 2.25rem;
  }
  
  .about-description,
  .deposit-description,
  .promotions-description,
  .slots-description,
  .services-description {
    font-size: 1rem;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .promotion-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .about-section,
  .deposit-section,
  .promotions-section,
  .slots-section,
  .services-section {
    padding: 80px 15px;
  }
  
  .about-content,
  .deposit-content,
  .promotions-content,
  .slots-content,
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .deposit-content .deposit-image,
  .slots-content .slots-image {
    order: -1;
  }
  
  .about-title,
  .deposit-title,
  .promotions-title,
  .slots-title,
  .services-title {
    font-size: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .deposit-actions,
  .slots-actions {
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-section,
  .deposit-section,
  .promotions-section,
  .slots-section,
  .services-section {
    padding: 60px 10px;
  }
  
  .about-title,
  .deposit-title,
  .promotions-title,
  .slots-title,
  .services-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  
  .about-description,
  .deposit-description,
  .promotions-description,
  .slots-description,
  .services-description {
    font-size: 0.95rem;
  }
  
  .feature-card,
  .service-card {
    padding: 20px 16px;
  }
  
  .feature-icon,
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .feature-icon i,
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-item,
  .game-item {
    padding: 12px 16px;
    gap: 12px;
  }
  
  .highlight-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .game-icon {
    width: 40px;
    height: 40px;
  }
  
  .game-icon i {
    font-size: 1rem;
  }
  
  .promo-card {
    padding: 20px 16px;
  }
  
  .promo-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .promo-icon i {
    font-size: 1.2rem;
  }
  
  .promo-amount {
    font-size: 1.5rem;
  }
  
  .stat-item {
    min-width: 80px;
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}