/* Base Theme Styles */
:root {
  --primary-color: #ff6b00;
  --secondary-color: #ffa500;
  --accent-color: #00d4ff;
  --bg-dark: #0a0a0a;
  --bg-card: #1a1a1a;
  --bg-section: #111111;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --border-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

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

.btn-secondary {
  background: var(--gradient-dark);
  color: white;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
  background: var(--accent-color);
  color: var(--bg-dark);
}

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

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

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--bg-section);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  animation: pulse 2s infinite;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.overlay-content i {
  font-size: 1.1rem;
}

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

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 10px 14px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    padding: 12px 16px;
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .image-overlay {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Header Styles */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.header-logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-link i {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.btn-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.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(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transform: translateY(-50px);
  transition: transform 0.3s ease 0.1s;
}

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

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.mobile-menu-logo i {
  color: var(--primary-color);
  font-size: 2rem;
}

.mobile-menu-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(255, 107, 0, 0.1);
  transform: scale(1.05);
}

.mobile-cta {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-align: center;
  justify-content: center;
  margin-top: 1rem;
}

.desktop-only {
  display: flex;
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .btn-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
  }
  
  .mobile-menu-close {
    top: 1.5rem;
    right: 1.5rem;
  }
  
  .mobile-menu-logo {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 55px;
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-link i {
    font-size: 1.4rem;
  }
  
  .mobile-menu-content {
    padding: 1rem;
  }
  
  .mobile-menu-close {
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
  }
  
  .mobile-menu-logo {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .mobile-nav-menu {
    gap: 1rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  
  .mobile-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* About Section */
.about-section {
  padding: 80px 20px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.about-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  animation: slideInDown 0.8s ease-out 0.5s both;
}

.about-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-badge i {
  color: white;
  font-size: 1rem;
}

.about-text {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  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(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.feature-card:hover {
  background: var(--bg-section);
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.feature-icon i {
  color: white;
  font-size: 1.3rem;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.about-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .features-grid {
    gap: 1rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .about-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .about-cta {
    justify-content: center;
  }
  
  .about-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .feature-card {
    padding: 16px;
    gap: 0.75rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
}

/* Gaming Section */
.gaming-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.gaming-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 3rem;
}

.gaming-text {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.gaming-description {
  margin-bottom: 2.5rem;
}

.gaming-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.gaming-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.providers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.provider-card {
  display: flex;
  gap: 1.5rem;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.provider-card:hover {
  background: var(--bg-section);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
}

.provider-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.provider-icon i {
  color: white;
  font-size: 1.6rem;
}

.provider-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.provider-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

.provider-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.provider-features i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

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

.gaming-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.gaming-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.overlay-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.stat-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gaming-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .gaming-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .gaming-content {
    gap: 40px;
    margin-bottom: 2.5rem;
  }
  
  .provider-card {
    padding: 20px;
    gap: 1.25rem;
  }
  
  .provider-icon {
    width: 55px;
    height: 55px;
  }
  
  .provider-icon i {
    font-size: 1.4rem;
  }
  
  .provider-content h4 {
    font-size: 1.2rem;
  }
  
  .overlay-stats {
    gap: 0.75rem;
  }
  
  .stat-item i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gaming-section {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .gaming-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 2rem;
  }
  
  .provider-card {
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
    text-align: center;
  }
  
  .provider-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .provider-content h4 {
    font-size: 1.1rem;
  }
  
  .provider-content p {
    font-size: 0.95rem;
  }
  
  .provider-features {
    text-align: left;
  }
  
  .gaming-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .gaming-overlay {
    position: static;
    margin-top: 20px;
  }
  
  .overlay-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  
  .stat-item i {
    margin-bottom: 0;
  }
  
  .gaming-cta {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .gaming-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .provider-card {
    padding: 16px;
  }
  
  .provider-icon {
    width: 45px;
    height: 45px;
  }
  
  .provider-icon i {
    font-size: 1.2rem;
  }
  
  .provider-content h4 {
    font-size: 1rem;
  }
  
  .provider-content p {
    font-size: 0.9rem;
  }
  
  .provider-features li {
    font-size: 0.85rem;
  }
  
  .gaming-description p {
    font-size: 0.9rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Payment Section */
.payment-section {
  padding: 80px 20px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

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

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

.payment-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 3rem;
}

.payment-text {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.payment-description {
  margin-bottom: 2rem;
}

.payment-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.payment-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.link-highlight {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.link-highlight:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.payment-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-highlight:hover {
  background: var(--bg-section);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.highlight-icon i {
  color: white;
  font-size: 1.3rem;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.payment-steps {
  margin-bottom: 2rem;
}

.steps-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: var(--bg-section);
  border-color: var(--primary-color);
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

.payment-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.payment-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.overlay-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overlay-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px 15px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.overlay-feature i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.overlay-feature span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.payment-cta {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .payment-section {
    padding: 60px 20px;
  }
  
  .payment-content {
    gap: 40px;
    margin-bottom: 2.5rem;
  }
  
  .payment-features {
    gap: 1rem;
  }
  
  .feature-highlight {
    padding: 16px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.2rem;
  }
  
  .steps-list {
    gap: 1rem;
  }
  
  .step-item {
    padding: 16px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .payment-section {
    padding: 50px 15px;
  }
  
  .payment-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 2rem;
  }
  
  .payment-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-highlight {
    padding: 18px;
  }
  
  .payment-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .step-item {
    padding: 16px;
  }
  
  .step-content h5 {
    font-size: 0.95rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .payment-overlay {
    position: static;
    margin-top: 20px;
  }
  
  .overlay-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .overlay-feature {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payment-section {
    padding: 40px 10px;
  }
  
  .feature-highlight {
    padding: 14px;
    gap: 0.75rem;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
  }
  
  .highlight-icon i {
    font-size: 1.1rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.85rem;
  }
  
  .step-item {
    padding: 14px;
    gap: 0.75rem;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .step-content h5 {
    font-size: 0.9rem;
  }
  
  .step-content p {
    font-size: 0.8rem;
  }
  
  .payment-description p {
    font-size: 0.9rem;
  }
  
  .overlay-features {
    flex-direction: column;
  }
  
  .overlay-feature {
    min-width: auto;
  }
}

/* Promotions Section */
.promotions-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.promotions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.promotions-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 3rem;
}

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

.promotions-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.promotions-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  animation: bounce 2s infinite;
}

.promotions-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotions-badge i {
  color: white;
  font-size: 1.1rem;
}

.promotions-text {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.promotions-description {
  margin-bottom: 2rem;
}

.promotions-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.promotions-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.promo-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.promo-card:hover {
  background: var(--bg-section);
  border-color: var(--secondary-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.25);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.promo-header i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.promo-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.promo-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.promo-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.benefit-tag {
  padding: 4px 12px;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.special-promos {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.special-promo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.special-promo:hover {
  background: var(--bg-section);
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.special-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.special-icon i {
  color: white;
  font-size: 1.3rem;
}

.special-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.special-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.promotions-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .promotions-section {
    padding: 60px 20px;
  }
  
  .promotions-content {
    gap: 40px;
    margin-bottom: 2.5rem;
  }
  
  .promotions-grid {
    gap: 1rem;
  }
  
  .promo-card {
    padding: 20px;
  }
  
  .promo-header i {
    font-size: 1.3rem;
  }
  
  .promo-header h4 {
    font-size: 1.1rem;
  }
  
  .special-promos {
    gap: 1rem;
  }
  
  .special-promo {
    padding: 16px;
  }
  
  .special-icon {
    width: 45px;
    height: 45px;
  }
  
  .special-icon i {
    font-size: 1.2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .promotions-section {
    padding: 50px 15px;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 2rem;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .promo-card {
    padding: 18px;
  }
  
  .promotions-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .special-promo {
    padding: 16px;
  }
  
  .special-content h4 {
    font-size: 1rem;
  }
  
  .special-content p {
    font-size: 0.85rem;
  }
  
  .promotions-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
  
  .promotions-cta {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 40px 10px;
  }
  
  .promo-card {
    padding: 16px;
  }
  
  .promo-header {
    gap: 0.5rem;
  }
  
  .promo-header i {
    font-size: 1.2rem;
  }
  
  .promo-header h4 {
    font-size: 1rem;
  }
  
  .promo-content p {
    font-size: 0.9rem;
  }
  
  .benefit-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .special-promo {
    padding: 14px;
    gap: 0.75rem;
  }
  
  .special-icon {
    width: 40px;
    height: 40px;
  }
  
  .special-icon i {
    font-size: 1.1rem;
  }
  
  .special-content h4 {
    font-size: 0.95rem;
  }
  
  .special-content p {
    font-size: 0.8rem;
  }
  
  .promotions-description p {
    font-size: 0.9rem;
  }
}

/* Service Section */
.service-section {
  padding: 80px 20px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 90% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 50% 90%, rgba(255, 165, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.service-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 3rem;
}

.service-text {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.service-description {
  margin-bottom: 2rem;
}

.service-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.service-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

.betting-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.betting-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.betting-card:hover {
  background: var(--bg-section);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
}

.betting-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.betting-icon i {
  color: white;
  font-size: 1.3rem;
}

.betting-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.betting-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.contact-methods {
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--bg-section);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(0, 212, 255, 0.3);
}

.contact-icon i {
  color: white;
  font-size: 1.1rem;
}

.contact-info h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.contact-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

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

.service-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
}

.overlay-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-item {
  text-align: center;
  padding: 12px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 107, 0, 0.2);
  transform: scale(1.05);
}

.highlight-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.highlight-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .service-section {
    padding: 60px 20px;
  }
  
  .service-content {
    gap: 40px;
    margin-bottom: 2.5rem;
  }
  
  .betting-options {
    gap: 1rem;
  }
  
  .betting-card {
    padding: 16px;
  }
  
  .betting-icon {
    width: 45px;
    height: 45px;
  }
  
  .betting-icon i {
    font-size: 1.2rem;
  }
  
  .contact-grid {
    gap: 0.75rem;
  }
  
  .contact-item {
    padding: 14px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
  }
  
  .contact-icon i {
    font-size: 1rem;
  }
  
  .overlay-highlights {
    gap: 0.75rem;
  }
  
  .highlight-item {
    padding: 10px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-section {
    padding: 50px 15px;
  }
  
  .service-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 2rem;
  }
  
  .betting-options {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .betting-card {
    padding: 18px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-item {
    padding: 16px;
  }
  
  .service-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .service-overlay {
    position: static;
    margin-top: 20px;
  }
  
  .overlay-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 14px 16px;
  }
  
  .highlight-item i {
    margin-bottom: 0;
  }
  
  .service-cta {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .service-section {
    padding: 40px 10px;
  }
  
  .betting-card {
    padding: 14px;
    gap: 0.75rem;
  }
  
  .betting-icon {
    width: 40px;
    height: 40px;
  }
  
  .betting-icon i {
    font-size: 1.1rem;
  }
  
  .betting-content h4 {
    font-size: 1rem;
  }
  
  .betting-content p {
    font-size: 0.85rem;
  }
  
  .contact-item {
    padding: 14px;
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-icon i {
    font-size: 0.9rem;
  }
  
  .contact-info h5 {
    font-size: 0.95rem;
  }
  
  .contact-info p {
    font-size: 0.8rem;
  }
  
  .service-description p {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 12px 14px;
    gap: 0.75rem;
  }
  
  .highlight-item i {
    font-size: 1.2rem;
  }
  
  .highlight-title {
    font-size: 0.9rem;
  }
  
  .highlight-desc {
    font-size: 0.75rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-about {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  color: var(--primary-color);
  font-size: 2rem;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent-color);
  width: 16px;
  text-align: center;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-payment {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.payment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.payment-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.payment-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.payment-item span {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
}

.footer-security {
  margin-bottom: 2.5rem;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(255, 107, 0, 0.15);
  transform: scale(1.05);
}

.security-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.security-item span {
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-disclaimer {
  max-width: 600px;
  margin: 0 auto;
}

.disclaimer-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  padding: 1rem;
  background: rgba(255, 165, 0, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 165, 0, 0.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-info {
    grid-column: span 3;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .security-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-about {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .payment-item {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .security-item {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 10px 15px;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.2rem;
  }
  
  .footer-logo i {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .footer-payment {
    padding: 1.5rem;
  }
  
  .payment-item {
    padding: 0.8rem;
    gap: 0.75rem;
  }
  
  .payment-item i {
    font-size: 1.3rem;
  }
  
  .payment-item span {
    font-size: 0.75rem;
  }
  
  .security-item {
    padding: 0.8rem;
    gap: 0.75rem;
  }
  
  .security-item i {
    font-size: 1.2rem;
  }
  
  .security-item span {
    font-size: 0.75rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
    padding: 0.8rem;
  }
}

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

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

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

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

.sticky-btn:active {
  transform: scale(0.95);
}

.sticky-login {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.sticky-login:hover {
  background: linear-gradient(135deg, #1557b0, #3367d6);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
  transform: translateY(-2px);
}

.sticky-register {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.sticky-register:hover {
  background: linear-gradient(135deg, #e55a00, #ff8c00);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transform: translateY(-2px);
}

.sticky-bonus {
  background: linear-gradient(135deg, var(--accent-color), #00b4d8);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  animation: pulse-bonus 2s infinite;
}

.sticky-bonus:hover {
  background: linear-gradient(135deg, #00a6cc, #0096c7);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  animation: none;
}

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

.btn-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Pulse animation for bonus button */
@keyframes pulse-bonus {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .sticky-buttons {
    padding: 6px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 4px;
    gap: 1px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    gap: 0.15rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 2px;
  }
  
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
    font-weight: 500;
  }
}

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

@media (max-width: 1024px) {
  body {
    padding-bottom: 70px;
  }
}

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

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

/* Login Section Styles */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.login-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease-out;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container {
  margin-bottom: 1.5rem;
}

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #ef4444;
}

.login-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-label i {
  color: var(--accent-color);
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-section);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

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

.password-input-container {
  position: relative;
}

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

.password-toggle:hover {
  color: var(--accent-color);
}

.input-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 16px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-container input {
  display: none;
}

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

.checkbox-container input:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-container input:checked + .checkmark::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password {
  color: var(--accent-color);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.login-divider span {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 0 1rem;
  font-size: 0.9rem;
}

.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--bg-section);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: var(--accent-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.login-footer {
  margin-top: 2rem;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.security-note i {
  color: var(--accent-color);
}

.support-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.support-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: var(--accent-color);
}

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .login-section {
    padding: 1.5rem;
  }
  
  .login-card {
    padding: 2rem;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 1rem;
    min-height: calc(100vh - 60px);
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 0.5rem;
  }
  
  .login-card {
    padding: 1.25rem;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .login-logo {
    width: 50px;
    height: 50px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 8px 12px;
  }
  
  .login-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .security-note {
    font-size: 0.75rem;
  }
  
  .support-link {
    font-size: 0.75rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 60% 60%, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.register-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease-out;
}

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container {
  margin-bottom: 1.5rem;
}

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

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.register-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: slideInDown 0.5s ease-out;
}

.success-message i {
  color: #10b981;
}

.error-message {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #ef4444;
}

.register-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.form-label i {
  color: var(--accent-color);
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-section);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

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

.input-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 16px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.input-hint i {
  color: var(--accent-color);
}

.terms-group, .age-verification {
  margin-bottom: 1.5rem;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-container input {
  display: none;
}

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

.checkbox-container input:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-container input:checked + .checkmark::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.terms-text, .age-text {
  line-height: 1.5;
}

.terms-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--primary-color);
}

.register-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
}

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

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.register-divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.register-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.register-divider span {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 0 1rem;
  font-size: 0.9rem;
}

.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--bg-section);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--accent-color);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.register-benefits {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.benefit-item i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.register-footer {
  margin-top: 2rem;
  text-align: center;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.security-note i {
  color: var(--accent-color);
}

.support-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.support-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-link:hover {
  color: var(--accent-color);
}

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

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

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .register-section {
    padding: 1.5rem;
  }
  
  .register-card {
    padding: 2rem;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 1rem;
    min-height: calc(100vh - 60px);
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .benefits-list {
    gap: 0.5rem;
  }
  
  .benefit-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 0.5rem;
  }
  
  .register-card {
    padding: 1.25rem;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .register-logo {
    width: 50px;
    height: 50px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 8px 12px;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .checkbox-container {
    font-size: 0.85rem;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
  }
  
  .register-benefits {
    padding: 1rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
  
  .security-note {
    font-size: 0.75rem;
  }
  
  .support-link {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

.btn-hero {
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
  animation: pulse-glow 2s infinite;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.7);
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  background: var(--bg-section);
  position: relative;
}

.promotion-section.alt-bg {
  background: var(--bg-dark);
}

.promotion-section.alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.promotion-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.promotion-icon i {
  color: white;
  font-size: 2rem;
}

.promotion-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin: 0;
}

.promotion-content {
  display: grid;
  gap: 2rem;
}

.promotion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.promotion-list li:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(10px);
}

.promotion-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(99, 102, 241, 0.6);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), #00b4d8);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 212, 255, 0.6);
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.8);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn-hero {
    padding: 16px 30px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 2.5rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-list li {
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    padding: 14px 24px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 2rem;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-list {
    gap: 1rem;
  }
  
  .promotion-list li {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  
  .promotion-list li:hover {
    transform: none;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 10px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 10px;
  }
  
  .promotion-card {
    padding: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-list li {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
  
  .promotion-list li i {
    font-size: 1rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}