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

body {
  font-family: 'Sarabun', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

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

.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 20px;
  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);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

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

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  min-width: 160px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
}

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

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-overlay i {
  color: #000000;
  font-size: 1.2rem;
}

.overlay-text {
  font-weight: 700;
  color: #000000;
}

/* Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-overlay {
    top: 15px;
    right: 15px;
    padding: 12px 20px;
  }
}

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

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

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

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

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

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

.logo-link i {
  font-size: 1.5rem;
  color: #ffd700;
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  color: #cccccc;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

.nav-link:hover {
  color: #ffffff;
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  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;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.98);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

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

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  color: #cccccc;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffd700;
  padding-left: 10px;
}

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

/* Mobile CTA */
.mobile-cta {
  margin-top: 20px;
  border: 2px solid #ffd700;
  border-radius: 15px;
  background: rgba(255, 215, 0, 0.1);
}

.mobile-cta .mobile-nav-link {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.2rem;
  justify-content: center;
  text-align: center;
}

.mobile-cta .mobile-nav-link:hover {
  background: #ffd700;
  color: #000000;
  padding-left: 0;
}

/* Desktop Only Utility */
.desktop-only {
  display: inline-flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .logo-link {
    font-size: 1.1rem;
  }
  
  .logo-link span {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 60px;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 18px 0;
  }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 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 20% 70%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
}

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

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

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

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

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

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

.about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.image-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

.image-badge span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .security-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-description {
    margin-bottom: 40px;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .security-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .feature-card {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .image-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
  }
}

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

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

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

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

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

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

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

.security-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.security-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

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

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

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

.direct-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

.direct-description a:hover {
  color: #ffd700;
}

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

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

.advantage-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

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

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

.advantage-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
  margin: 0;
}

.direct-cta {
  text-align: left;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .direct-content {
    gap: 40px;
  }
  
  .security-advantages {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .direct-section {
    padding: 80px 0;
  }
  
  .direct-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .direct-description p {
    font-size: 1rem;
  }
  
  .security-advantages {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .direct-cta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .direct-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .advantage-item {
    padding: 15px;
  }
  
  .advantage-item i {
    font-size: 1.3rem;
  }
  
  .btn-register {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .security-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
  }
}

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

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

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

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

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

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

.wallet-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 25px;
}

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

.wallet-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  transition: left 0.6s ease;
}

.benefit-item:hover::before {
  left: 0;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

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

.benefit-icon i {
  font-size: 1.3rem;
  color: #000000;
}

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

.benefit-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.3;
  margin: 0;
}

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

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

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

.speed-indicator {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.speed-indicator i {
  color: #ffffff;
  font-size: 1.1rem;
}

.speed-indicator span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

.security-seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.security-seal i {
  color: #ffffff;
  font-size: 1.1rem;
}

.security-seal span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-content {
    gap: 40px;
  }
  
  .wallet-benefits {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 0;
  }
  
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .wallet-description p {
    font-size: 1rem;
  }
  
  .wallet-benefits {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .benefit-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .wallet-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .wallet-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
  }
  
  .benefit-icon i {
    font-size: 1.5rem;
  }
  
  .speed-indicator,
  .security-seal {
    padding: 10px 16px;
  }
  
  .speed-indicator {
    top: 15px;
    left: 15px;
  }
  
  .security-seal {
    bottom: 15px;
    right: 15px;
  }
}

/* No Minimum Section */
.minimum-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1e1e2e 50%, #2a2a3e 100%);
  position: relative;
}

.minimum-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.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(255, 69, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

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

.minimum-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.minimum-badge i {
  color: #000000;
  font-size: 1.1rem;
}

.minimum-badge span {
  font-weight: 700;
  color: #000000;
  font-size: 0.9rem;
}

.accessibility-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.accessibility-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

.accessibility-badge span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

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

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

.minimum-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

.minimum-description a:hover {
  color: #ffd700;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.feature-row:last-child {
  grid-template-columns: 1fr;
}

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

.feature-point:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

.feature-point i {
  font-size: 1.2rem;
  color: #ffd700;
  flex-shrink: 0;
}

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

.minimum-cta {
  text-align: left;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .minimum-content {
    gap: 40px;
  }
  
  .feature-row {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .minimum-section {
    padding: 80px 0;
  }
  
  .minimum-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .minimum-description p {
    font-size: 1rem;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .minimum-cta {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .minimum-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .feature-point {
    padding: 12px 16px;
  }
  
  .feature-point span {
    font-size: 0.9rem;
  }
  
  .btn-start {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .minimum-badge,
  .accessibility-badge {
    padding: 10px 16px;
  }
  
  .minimum-badge {
    top: 15px;
    right: 15px;
  }
  
  .accessibility-badge {
    bottom: 15px;
    left: 15px;
  }
}

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

.strategies-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.03) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.strategies-description {
  margin-bottom: 0;
}

.strategies-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

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

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

.strategies-description a:hover {
  color: #ffd700;
}

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

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

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

.ai-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(111, 66, 193, 0.4);
}

.ai-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

.ai-badge span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

.pattern-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #17a2b8, #20c997);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

.pattern-badge i {
  color: #ffffff;
  font-size: 1.1rem;
}

.pattern-badge span {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
}

.strategy-cards {
  margin-bottom: 60px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.strategy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.strategy-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.card-icon i {
  font-size: 2rem;
  color: #000000;
}

.strategy-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.strategy-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.card-tips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.card-tips span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #cccccc;
}

.card-tips span i {
  color: #28a745;
  font-size: 0.8rem;
}

.strategies-cta {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-try,
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.btn-try {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
}

.btn-try:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

.btn-learn:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .strategies-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 80px 0;
  }
  
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .strategies-description p {
    font-size: 1rem;
  }
  
  .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-try,
  .btn-learn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .strategies-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .strategy-card {
    padding: 25px 20px;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
  
  .strategies-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-try,
  .btn-learn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .ai-badge,
  .pattern-badge {
    padding: 10px 16px;
  }
  
  .ai-badge {
    top: 15px;
    right: 15px;
  }
  
  .pattern-badge {
    bottom: 15px;
    left: 15px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.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;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

/* Footer Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: #ffd700;
}

.footer-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.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: #cccccc;
  font-size: 0.95rem;
}

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

/* Footer Sections */
.footer-section h3.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

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

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

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-links li a:hover {
  color: #ffd700;
  padding-left: 5px;
}

.footer-links li a i {
  color: #ffd700;
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

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

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

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

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #ffd700;
}

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

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  margin: 40px 0 30px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  margin: 0;
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

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

.disclaimer {
  color: #999999 !important;
  font-size: 0.8rem !important;
}

.footer-responsible {
  display: flex;
  gap: 20px;
}

.responsible-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 69, 0, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  border-radius: 20px;
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 600;
}

.responsible-item i {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo span {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .security-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .footer-responsible {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
    text-align: center;
  }
  
  .payment-methods {
    align-items: center;
  }
  
  .security-badges {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .responsible-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

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

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.1;
}

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(135deg, #17a2b8, #138496);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #1ac4d8, #17a2b8);
  transform: translateY(-2px);
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #34ce57, #28a745);
  transform: translateY(-2px);
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  position: relative;
}

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffed4a, #ffd700);
  transform: translateY(-2px);
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ff4757;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  
  .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;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .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;
  }
}

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

.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.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 69, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Login Logo */
.login-logo {
  text-align: center;
  margin-bottom: 40px;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Form Container */
.login-form-container {
  margin-bottom: 30px;
}

/* Error and Success Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #51cf66;
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  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, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

/* Password Input Container */
.password-input-container {
  position: relative;
}

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

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

/* Input Error */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-error:empty {
  display: none;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
}

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

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

.remember-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

.remember-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.forgot-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

/* Buttons */
.btn-login {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-login:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-login .btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.form-divider span {
  background: rgba(255, 255, 255, 0.03);
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

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

.btn-register:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Login Features */
.login-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  font-size: 0.9rem;
}

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

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

@media (max-width: 480px) {
  .login-content {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.2rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .btn-login,
  .btn-register {
    padding: 14px;
    font-size: 1rem;
  }
  
  .remember-checkbox {
    font-size: 0.85rem;
  }
  
  .forgot-link {
    font-size: 0.85rem;
  }
}

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

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

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

.register-content {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Register Logo */
.register-logo {
  text-align: center;
  margin-bottom: 40px;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Form Container */
.register-form-container {
  margin-bottom: 30px;
}

/* Error and Success Messages */
.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #51cf66;
}

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

.form-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

/* Input Error */
.input-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-error:empty {
  display: none;
}

/* Input Help */
.input-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999999;
  font-size: 0.85rem;
}

.input-help i {
  color: #ffd700;
  font-size: 0.8rem;
}

/* Form Terms */
.form-terms {
  margin-top: 5px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.4;
}

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

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

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #ffd700;
  border-color: #ffd700;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  flex: 1;
}

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

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

/* Buttons */
.btn-register {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-register:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.btn-register .btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.form-divider span {
  background: rgba(255, 255, 255, 0.03);
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

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

.btn-login:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Register Features */
.register-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 60px;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-content {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .register-content {
    padding: 25px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.2rem;
  }
  
  .form-input {
    padding: 14px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .btn-register,
  .btn-login {
    padding: 16px;
    font-size: 1rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
    padding: 8px;
  }
}

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

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

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  color: #cccccc;
  font-size: 1.2rem;
  font-weight: 500;
}

.hero-subtitle i {
  color: #ffd700;
  font-size: 1.4rem;
  animation: pulse 2s infinite;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

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

@keyframes glow {
  from { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
  to { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3); }
}

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

.promotion-section.alt {
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 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.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

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

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.new-member {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
}

.first-deposit {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
}

.cashback {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  color: #ffffff;
}

.referral {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
  color: #ffffff;
}

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

.promotion-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.promotion-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.promotion-feature i {
  color: #28a745;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.promotion-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.promotion-amount {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.amount-label {
  font-size: 0.9rem;
  color: #999999;
  font-weight: 500;
}

.amount-value {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
}

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

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

/* Summary Section */
.summary-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  position: relative;
}

.summary-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.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.summary-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.summary-description {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 50px;
}

.summary-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.summary-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.summary-feature:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

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

.summary-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 22px 50px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.summary-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .summary-features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-cta-btn {
    padding: 18px 36px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .amount-value {
    font-size: 1.6rem;
  }
  
  .promotion-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .summary-section {
    padding: 80px 0;
  }
  
  .summary-title {
    font-size: 1.8rem;
  }
  
  .summary-description {
    font-size: 1rem;
  }
  
  .summary-features {
    grid-template-columns: 1fr;
  }
  
  .summary-cta-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 20px;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-feature {
    font-size: 0.9rem;
  }
  
  .amount-value {
    font-size: 1.4rem;
  }
  
  .summary-title {
    font-size: 1.5rem;
  }
  
  .summary-feature {
    padding: 15px;
    font-size: 0.9rem;
  }
  
  .summary-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}