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

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #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 {
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff8c5a;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

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

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

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35, #ffd700, #ff6b35);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

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

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

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

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

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

.feature-item i {
  font-size: 1.2rem;
  color: #ff6b35;
  width: 20px;
  text-align: center;
}

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

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.primary-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.secondary-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

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

.hero-stats {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 5px;
}

@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);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .hero-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .hero-stats {
    bottom: -25px;
    right: -15px;
    padding: 20px;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    justify-content: center;
    padding: 12px 20px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-btn {
    padding: 15px 25px;
    font-size: 1rem;
    flex: 1;
    min-width: 140px;
  }
  
  .hero-stats {
    position: static;
    justify-content: center;
    margin-top: 20px;
    padding: 15px;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .stat-item {
    padding: 5px 0;
  }
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4e 100%);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

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

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

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

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 14px;
  animation: pulse 2s ease-in-out infinite;
}

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

.logo-icon i {
  font-size: 1.4rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Prompt', sans-serif;
  letter-spacing: -0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

.header-cta {
  display: flex;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 107, 53, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.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;
  transform: translateX(20px);
}

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

.desktop-only {
  display: flex;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d1b4e 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo .logo-icon {
  width: 35px;
  height: 35px;
}

.mobile-logo .logo-icon i {
  font-size: 1.1rem;
}

.mobile-logo .logo-text {
  font-size: 1.3rem;
}

.mobile-menu-close {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.mobile-menu-close i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.mobile-nav {
  padding: 30px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: #ff6b35;
  color: #ff6b35;
}

.mobile-nav-link i {
  width: 20px;
  font-size: 1.1rem;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover i {
  transform: scale(1.2);
}

.mobile-cta {
  padding: 30px 25px 40px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  margin-top: 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.mobile-cta-button::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;
}

.mobile-cta-button:hover::before {
  left: 100%;
}

.mobile-cta-button:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #ffffff;
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .header-nav {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    min-height: 60px;
    padding: 0 15px;
  }
  
  .header-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-icon i {
    font-size: 1.3rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .mobile-cta {
    padding: 25px 20px 35px;
  }
  
  .mobile-cta-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  body {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    width: 260px;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-nav-link {
    padding: 10px 20px;
  }
  
  .mobile-cta {
    padding: 20px 20px 30px;
  }
}

/* Platform Overview Section */
.platform-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.platform-img:hover {
  transform: scale(1.03) rotateY(2deg);
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: slideInLeft 0.6s ease-out;
}

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

.platform-text {
  animation: fadeInRight 1s ease-out 0.5s both;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffd700 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

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

.platform-description p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

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

.highlight-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

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

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

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

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

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-point i {
  color: #ff6b35;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-point span {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.platform-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.platform-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;
}

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

.platform-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.platform-btn.primary:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.platform-btn.secondary:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-section {
    padding: 80px 20px;
  }
  
  .platform-content {
    gap: 60px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .platform-description p {
    font-size: 1.1rem;
  }
  
  .highlight-grid {
    gap: 20px;
  }
  
  .highlight-item {
    padding: 18px;
  }
  
  .platform-badges {
    top: -15px;
    left: -15px;
  }
  
  .badge-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 15px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlight-item {
    padding: 15px;
    text-align: left;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.1rem;
  }
  
  .highlight-content h3 {
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  
  .feature-point {
    text-align: left;
  }
  
  .platform-actions {
    justify-content: center;
  }
  
  .platform-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .platform-actions {
    flex-direction: column;
  }
  
  .platform-btn {
    width: 100%;
    justify-content: center;
  }
  
  .badge-item {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .highlight-icon {
    align-self: center;
  }
}

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

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

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

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

.transaction-text {
  animation: fadeInLeft 1s ease-out 0.3s both;
}

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

.transaction-description p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.transaction-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.transaction-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s 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, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.feature-card:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

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

.feature-info h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.feature-info p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

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

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

.transaction-img:hover {
  transform: scale(1.03) rotateY(-2deg);
}

.transaction-stats {
  position: absolute;
  bottom: -30px;
  left: -30px;
  display: flex;
  gap: 20px;
}

.stat-box {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 2px;
}

/* Promotion Section */
.promotion-section {
  margin-bottom: 80px;
}

.promotion-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.promotion-header h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-header p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

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

.promo-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out calc(0.9s + var(--delay)) both;
}

.promo-card:nth-child(1) { --delay: 0s; }
.promo-card:nth-child(2) { --delay: 0.2s; }
.promo-card:nth-child(3) { --delay: 0.4s; }

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.promo-card.highlight {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid #ff6b35;
  transform: scale(1.05);
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.promo-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.promo-card h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.promo-card h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.promo-card h4 a:hover {
  color: #ff6b35;
}

.promo-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
  font-family: 'Prompt', sans-serif;
  position: relative;
  z-index: 2;
}

.promo-card p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

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

.promo-point i {
  color: #ff6b35;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.promo-point span {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Transparency Section */
.transparency-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  animation: fadeInUp 1s ease-out 1.2s both;
}

.transparency-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.transparency-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.transparency-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.transparency-text h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.transparency-text p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
}

.transparency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.transparency-btn:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .transaction-section {
    padding: 80px 20px;
  }
  
  .transaction-content {
    gap: 60px;
    margin-bottom: 60px;
  }
  
  .feature-row {
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .transaction-stats {
    bottom: -25px;
    left: -25px;
    gap: 15px;
  }
  
  .promotion-grid {
    gap: 25px;
  }
  
  .promo-card {
    padding: 25px 20px;
  }
  
  .transparency-section {
    padding: 40px;
  }
  
  .transparency-content {
    gap: 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .transaction-section {
    padding: 60px 15px;
  }
  
  .transaction-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .transaction-description p {
    text-align: left;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    text-align: left;
  }
  
  .transaction-stats {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  
  .promotion-header h3 {
    font-size: 2rem;
  }
  
  .promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promo-card.highlight {
    transform: none;
  }
  
  .transparency-section {
    padding: 30px 20px;
  }
  
  .transparency-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .transparency-text {
    text-align: center;
  }
  
  .transparency-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .transaction-section {
    padding: 40px 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .feature-icon {
    align-self: center;
  }
  
  .transaction-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .stat-box {
    padding: 15px;
  }
  
  .promotion-header h3 {
    font-size: 1.8rem;
  }
  
  .promo-amount {
    font-size: 1.8rem;
  }
  
  .transparency-section {
    padding: 20px 15px;
  }
  
  .transparency-text h3 {
    font-size: 1.5rem;
  }
}

/* Gaming Techniques Section */
.techniques-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4e 30%, #1a1a1a 70%, #0f1419 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.techniques-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.techniques-header .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b35 30%, #ffd700 70%, #ff6b35 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

.section-description {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.gaming-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}

.gaming-info {
  animation: fadeInLeft 1s ease-out 0.5s both;
}

.overview-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.overview-card:hover::before {
  opacity: 1;
}

.overview-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: #ff6b35;
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

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

.card-header h3 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.overview-card p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.overview-card strong {
  color: #ff6b35;
  font-weight: 700;
}

.game-features h4 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

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

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.feature-item .feature-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.feature-text h5 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.feature-text p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-text strong {
  color: #ff6b35;
  font-weight: 700;
}

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

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

.gaming-img:hover {
  transform: scale(1.03) rotateY(2deg);
}

.gaming-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  border-radius: 0 0 25px 25px;
  padding: 30px;
}

.overlay-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.overlay-stat {
  text-align: center;
  color: #ffffff;
}

.overlay-stat i {
  font-size: 1.5rem;
  color: #ff6b35;
  margin-bottom: 10px;
  display: block;
}

.overlay-stat span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}

.overlay-stat p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
}

/* Techniques Content */
.techniques-section-content {
  margin-bottom: 80px;
}

.techniques-header-secondary {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.techniques-header-secondary h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.techniques-header-secondary p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.techniques-header-secondary strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.technique-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 107, 53, 0.02) 100%);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out calc(1.1s + var(--delay)) both;
}

.technique-card:nth-child(1) { --delay: 0s; }
.technique-card:nth-child(2) { --delay: 0.2s; }
.technique-card:nth-child(3) { --delay: 0.4s; }
.technique-card:nth-child(4) { --delay: 0.6s; }

.technique-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.technique-card:hover::before {
  opacity: 1;
}

.technique-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.technique-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 3;
}

.technique-card .technique-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 90, 0.2));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.technique-card .technique-icon i {
  font-size: 1.8rem;
  color: #ff6b35;
}

.technique-card h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.technique-card p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.technique-card strong {
  color: #ff6b35;
  font-weight: 700;
}

/* Learning Section */
.learning-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  animation: fadeInUp 1s ease-out 1.7s both;
}

.learning-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.learning-text h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.learning-text > p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.learning-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.learning-benefits h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.benefit-item strong {
  color: #ff6b35;
  font-weight: 700;
}

.tools-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  height: fit-content;
}

.tools-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.tools-card h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.tools-card p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.tools-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 107, 53, 0.05);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #ff6b35;
}

.tools-note i {
  color: #ff6b35;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.tools-note span {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
}

.learning-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.learning-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.learning-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;
}

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

.learning-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.learning-btn.primary:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.learning-btn.secondary:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .techniques-section {
    padding: 80px 20px;
  }
  
  .techniques-header .section-title {
    font-size: 2.4rem;
  }
  
  .gaming-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .overview-card {
    padding: 30px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-header h3 {
    font-size: 1.6rem;
  }
  
  .techniques-grid {
    gap: 25px;
  }
  
  .technique-card {
    padding: 30px;
  }
  
  .learning-section {
    padding: 40px;
  }
  
  .learning-content {
    gap: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .techniques-section {
    padding: 60px 15px;
  }
  
  .techniques-header .section-title {
    font-size: 2rem;
  }
  
  .gaming-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .overview-card {
    padding: 25px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .overlay-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .techniques-header-secondary h3 {
    font-size: 1.8rem;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .technique-card {
    padding: 25px;
  }
  
  .technique-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .learning-section {
    padding: 30px 20px;
  }
  
  .learning-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .learning-text h3 {
    font-size: 1.7rem;
  }
  
  .learning-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .learning-btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .techniques-section {
    padding: 40px 10px;
  }
  
  .techniques-header .section-title {
    font-size: 1.8rem;
  }
  
  .overview-card {
    padding: 20px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-header h3 {
    font-size: 1.4rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-item .feature-icon {
    align-self: center;
  }
  
  .techniques-header-secondary h3 {
    font-size: 1.6rem;
  }
  
  .technique-card {
    padding: 20px;
  }
  
  .technique-card .technique-icon {
    width: 60px;
    height: 60px;
    align-self: center;
  }
  
  .learning-section {
    padding: 20px 15px;
  }
  
  .learning-text h3 {
    font-size: 1.5rem;
  }
  
  .tools-card {
    padding: 20px;
  }
}

/* Mobile Platform Section */
.mobile-section {
  background: linear-gradient(135deg, #0f1419 0%, #1a1a1a 30%, #2d1b4e 70%, #1a1a1a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.mobile-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
              linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.02) 50%, transparent 70%);
  pointer-events: none;
}

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

.mobile-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mobile-header .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b35 25%, #ffd700 50%, #ff6b35 75%, #ffffff 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 50% 100%; }
  75% { background-position: 50% 0%; }
}

.mobile-header .section-description {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.mobile-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.5s both;
}

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

.mobile-img:hover {
  transform: scale(1.03) rotateY(-3deg) rotateX(2deg);
}

.mobile-devices {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.device-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideInRight 0.8s ease-out;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.device-badge:hover {
  transform: translateX(-5px) scale(1.05);
}

.device-badge.android {
  background: linear-gradient(135deg, #3ddc84, #4caf50);
  color: #ffffff;
  animation-delay: 0.2s;
}

.device-badge.ios {
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: #ffffff;
  animation-delay: 0.4s;
}

.device-badge.web {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  animation-delay: 0.6s;
}

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

.mobile-info {
  animation: fadeInRight 1s ease-out 0.7s both;
}

.mobile-description p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.mobile-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.mobile-features h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

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

.mobile-feature-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.mobile-feature-card:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.mobile-feature-card .feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.mobile-feature-card .feature-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.feature-content h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.feature-content h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-content h4 a:hover {
  color: #ff6b35;
}

.feature-content p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.security-section:hover::before {
  opacity: 1;
}

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

.security-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4),
              inset 0 2px 10px rgba(255, 255, 255, 0.2);
  position: relative;
}

.security-icon::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.security-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.security-header h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security-header p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.security-header strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.security-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out calc(1.1s + var(--delay)) both;
}

.security-card:nth-child(1) { --delay: 0s; }
.security-card:nth-child(2) { --delay: 0.2s; }
.security-card:nth-child(3) { --delay: 0.4s; }
.security-card:nth-child(4) { --delay: 0.6s; }

.security-card:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.security-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 90, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.security-card-icon i {
  font-size: 1.8rem;
  color: #ff6b35;
}

.security-card h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/* Mobile Experience */
.mobile-experience {
  animation: fadeInUp 1s ease-out 1.3s both;
}

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

.experience-text h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 700;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.experience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.experience-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.experience-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.experience-info h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.experience-info p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
}

.experience-info strong {
  color: #ff6b35;
  font-weight: 700;
}

.experience-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

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

.stat-label {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-description {
  font-size: 0.9rem;
  color: #aaaaaa;
}

.mobile-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.mobile-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;
}

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

.mobile-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.mobile-btn.primary:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.mobile-btn.secondary:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .mobile-section {
    padding: 80px 20px;
  }
  
  .mobile-header .section-title {
    font-size: 2.4rem;
  }
  
  .mobile-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .mobile-features .features-grid {
    gap: 20px;
  }
  
  .mobile-feature-card {
    padding: 20px;
  }
  
  .security-section {
    padding: 50px 30px;
    margin-bottom: 80px;
  }
  
  .security-grid {
    gap: 25px;
  }
  
  .experience-content {
    gap: 50px;
  }
  
  .experience-item {
    gap: 15px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-section {
    padding: 60px 15px;
  }
  
  .mobile-header .section-title {
    font-size: 2rem;
  }
  
  .mobile-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .mobile-devices {
    position: static;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px;
  }
  
  .mobile-features .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .mobile-feature-card {
    text-align: left;
  }
  
  .security-section {
    padding: 40px 20px;
    margin-bottom: 60px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-header h3 {
    font-size: 1.8rem;
  }
  
  .experience-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .experience-text h3 {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .mobile-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-btn {
    width: 100%;
    justify-content: center;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .mobile-section {
    padding: 40px 10px;
  }
  
  .mobile-header .section-title {
    font-size: 1.8rem;
  }
  
  .mobile-feature-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .mobile-feature-card .feature-icon {
    align-self: center;
  }
  
  .security-section {
    padding: 30px 15px;
  }
  
  .security-icon {
    width: 80px;
    height: 80px;
  }
  
  .security-icon i {
    font-size: 2rem;
  }
  
  .security-header h3 {
    font-size: 1.6rem;
  }
  
  .experience-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .experience-icon {
    align-self: center;
  }
  
  .experience-stats {
    gap: 15px;
  }
  
  .stats-card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* SA Gaming Section */
.sa-gaming-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f1419 25%, #2d1b4e 50%, #1a1a1a 75%, #0f1419 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.sa-gaming-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
              conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 107, 53, 0.02) 45deg, transparent 90deg, rgba(255, 215, 0, 0.02) 135deg, transparent 180deg);
  pointer-events: none;
}

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

.sa-gaming-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.sa-gaming-header .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #ff6b35 20%, #ffd700 40%, #ff6b35 60%, #ffffff 80%, #ff6b35 100%);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientWave 8s ease-in-out infinite;
}

@keyframes gradientWave {
  0%, 100% { background-position: 0% 50%; }
  20% { background-position: 100% 0%; }
  40% { background-position: 50% 100%; }
  60% { background-position: 0% 0%; }
  80% { background-position: 100% 50%; }
}

.sa-gaming-header .section-description {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.sa-gaming-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.sa-gaming-info {
  animation: fadeInLeft 1s ease-out 0.5s both;
}

.sa-overview {
  margin-bottom: 50px;
}

.overview-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.sa-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ffd700, #ff8c5a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4),
              inset 0 2px 10px rgba(255, 255, 255, 0.2);
  position: relative;
}

.sa-logo::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sa-logo i {
  font-size: 2rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.overview-header h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sa-overview p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
}

.sa-overview strong {
  color: #ff6b35;
  font-weight: 700;
}

.sa-features h4 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.features-list .feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.features-list .feature-item::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;
}

.features-list .feature-item:hover::before {
  left: 100%;
}

.features-list .feature-item:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.features-list .feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.features-list .feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-text h5 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.feature-text p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.feature-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.sa-gaming-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.7s both;
}

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

.sa-gaming-img:hover {
  transform: scale(1.03) rotateY(3deg) rotateX(-2deg);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 30%, transparent 70%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sa-gaming-image:hover .image-overlay {
  opacity: 1;
}

.overlay-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.quality-indicators {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

/* Studio Section */
.studio-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 80px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  animation: fadeInUp 1s ease-out 0.9s both;
}

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

.studio-text h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.studio-text > p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.studio-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.studio-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.studio-feature:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.studio-feature i {
  color: #ff6b35;
  font-size: 1.1rem;
}

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

.comparison-note {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 107, 53, 0.05);
  padding: 20px;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
}

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

.note-icon i {
  color: #ffffff;
  font-size: 1.1rem;
}

.comparison-note p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.comparison-note a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.comparison-note a:hover {
  color: #ff8c5a;
}

.comparison-note strong {
  color: #ff6b35;
  font-weight: 700;
}

.studio-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
  text-align: center;
}

.spec-card:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

.spec-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* Dealer Section */
.dealer-section {
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.dealer-section h3 {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.dealer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out calc(1.3s + var(--delay)) both;
}

.dealer-card:nth-child(1) { --delay: 0s; }
.dealer-card:nth-child(2) { --delay: 0.2s; }
.dealer-card:nth-child(3) { --delay: 0.4s; }

.dealer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dealer-card:hover::before {
  opacity: 1;
}

.dealer-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.dealer-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.dealer-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.dealer-card h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.dealer-card p {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.dealer-card strong {
  color: #ff6b35;
  font-weight: 700;
}

/* Betting System */
.betting-system {
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out 1.5s both;
}

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

.system-header h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.system-header p {
  font-size: 1.15rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.system-header strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.betting-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out calc(1.7s + var(--delay)) both;
}

.betting-card:nth-child(1) { --delay: 0s; }
.betting-card:nth-child(2) { --delay: 0.2s; }
.betting-card:nth-child(3) { --delay: 0.4s; }

.betting-card:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.betting-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.betting-icon i {
  font-size: 1.6rem;
  color: #ffffff;
}

.betting-card h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/* Promotions & AI */
.promotions-ai {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 53, 0.03) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  margin-bottom: 80px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  animation: fadeInUp 1s ease-out 1.9s both;
}

.promotions-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

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

.promotions-text h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.promotions-text > p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 40px;
}

.promotions-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.ai-features,
.smart-recommendations {
  margin-bottom: 30px;
}

.ai-features h4,
.smart-recommendations h4 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.ai-features p,
.smart-recommendations p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.ai-features strong,
.smart-recommendations strong {
  color: #ff6b35;
  font-weight: 700;
}

.benefits-summary h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefit-item i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  border: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 2.1s both;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-section:hover::before {
  opacity: 1;
}

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

.cta-text h3 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text p {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
}

.cta-text a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cta-text a:hover {
  color: #ff8c5a;
}

.cta-text strong {
  color: #ff6b35;
  font-weight: 700;
}

.cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-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;
}

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

.cta-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.cta-btn.secondary:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sa-gaming-section {
    padding: 80px 20px;
  }
  
  .sa-gaming-header .section-title {
    font-size: 2.4rem;
  }
  
  .sa-gaming-content {
    gap: 60px;
    margin-bottom: 80px;
  }
  
  .overview-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .studio-section {
    padding: 50px 30px;
    margin-bottom: 60px;
  }
  
  .studio-content {
    gap: 40px;
  }
  
  .studio-features {
    gap: 12px;
  }
  
  .dealer-features {
    gap: 25px;
  }
  
  .betting-grid {
    gap: 25px;
  }
  
  .promotions-ai {
    padding: 50px 30px;
    margin-bottom: 60px;
  }
  
  .promotions-content {
    gap: 40px;
  }
  
  .cta-section {
    padding: 50px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sa-gaming-section {
    padding: 60px 15px;
  }
  
  .sa-gaming-header .section-title {
    font-size: 2rem;
  }
  
  .sa-gaming-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .sa-overview p {
    text-align: left;
  }
  
  .features-list .feature-item {
    text-align: left;
  }
  
  .image-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, transparent 30%, transparent 70%, rgba(255, 215, 0, 0.15) 100%);
  }
  
  .quality-indicators {
    flex-direction: column;
    gap: 8px;
  }
  
  .studio-section {
    padding: 40px 20px;
    margin-bottom: 50px;
  }
  
  .studio-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .studio-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .comparison-note {
    text-align: left;
  }
  
  .dealer-section {
    margin-bottom: 60px;
  }
  
  .dealer-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .betting-system {
    margin-bottom: 60px;
  }
  
  .betting-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promotions-ai {
    padding: 40px 20px;
    margin-bottom: 50px;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotions-text {
    text-align: center;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-text h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .sa-gaming-section {
    padding: 40px 10px;
  }
  
  .sa-gaming-header .section-title {
    font-size: 1.8rem;
  }
  
  .sa-logo {
    width: 60px;
    height: 60px;
  }
  
  .sa-logo i {
    font-size: 1.5rem;
  }
  
  .overview-header h3 {
    font-size: 1.6rem;
  }
  
  .features-list .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .features-list .feature-icon {
    align-self: center;
  }
  
  .studio-section {
    padding: 30px 15px;
  }
  
  .studio-text h3 {
    font-size: 1.7rem;
  }
  
  .studio-features {
    gap: 8px;
  }
  
  .comparison-note {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .note-icon {
    align-self: center;
  }
  
  .dealer-section h3 {
    font-size: 1.8rem;
  }
  
  .system-header h3 {
    font-size: 1.8rem;
  }
  
  .promotions-text h3 {
    font-size: 1.7rem;
  }
  
  .cta-text h3 {
    font-size: 1.8rem;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, transparent 50%, rgba(255, 215, 0, 0.02) 100%),
              radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 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: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-brand .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
}

.footer-brand .logo-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  animation: pulse 3s ease-in-out infinite;
}

.footer-brand .logo-icon i {
  font-size: 1.6rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

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

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

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

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

.stat-item i {
  color: #ff6b35;
  font-size: 1rem;
  width: 16px;
}

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

.footer-links a,
.footer-games a {
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-links a:hover,
.footer-games a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

.footer-links a i,
.footer-games a i {
  color: #ff6b35;
  font-size: 0.9rem;
  width: 16px;
  transition: transform 0.3s ease;
}

.footer-links a:hover i,
.footer-games a:hover i {
  transform: scale(1.2);
}

.footer-support {
  /* No additional styles needed yet */
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

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

.contact-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  width: 18px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.social-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2);
}

.social-link i {
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  flex: 1;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

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

.legal-links a:hover {
  color: #ff6b35;
}

.separator {
  color: #666666;
  font-size: 0.8rem;
}

.copyright p {
  color: #888888;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.copyright .warning {
  font-size: 0.8rem;
  color: #ff6b35;
  margin-top: 5px;
}

.footer-badges {
  display: flex;
  gap: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px 15px;
  border-radius: 20px;
  color: #cccccc;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
}

.security-badge i {
  color: #ff6b35;
  font-size: 0.9rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 0 20px;
    margin-top: 80px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .legal-links {
    justify-content: center;
    text-align: center;
  }
  
  .copyright {
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
    width: 100%;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
    text-align: center;
  }
  
  .footer-brand .footer-logo {
    justify-content: center;
  }
  
  .footer-stats {
    align-items: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul,
  .footer-games ul {
    align-items: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-container {
    padding: 0 10px;
  }
  
  .footer-content {
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-brand .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-brand .logo-icon i {
    font-size: 1.3rem;
  }
  
  .footer-brand .logo-text {
    font-size: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .footer-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-badge {
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4e 100%);
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-buttons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 215, 0, 0.03) 50%, rgba(255, 107, 53, 0.05) 100%);
  pointer-events: none;
}

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

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sticky-btn:hover::before,
.sticky-btn:active::before {
  opacity: 1;
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 2px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.sticky-btn:hover {
  color: #ff6b35;
  transform: translateY(-2px);
}

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

.sticky-btn:active {
  transform: translateY(0);
}

/* Individual Button Styles */
.sticky-login {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
}

.sticky-login i {
  color: #3498db;
}

.sticky-login:hover {
  color: #3498db;
}

.sticky-register {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
}

.sticky-register i {
  color: #2ecc71;
}

.sticky-register:hover {
  color: #2ecc71;
}

.sticky-bonus {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
  position: relative;
}

.sticky-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

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

.sticky-bonus i {
  color: #ff6b35;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-1px); }
}

.sticky-bonus:hover {
  color: #ff6b35;
}

.sticky-bonus:hover i {
  animation: none;
  transform: scale(1.15);
}

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

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

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

/* Ensure sticky buttons don't interfere with footer */
body {
  padding-bottom: 60px;
}

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

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

/* Touch optimization for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .sticky-btn:hover {
    transform: none;
    color: inherit;
  }
  
  .sticky-btn:hover i {
    transform: none;
  }
  
  .sticky-btn:active {
    transform: scale(0.95);
    color: #ff6b35;
  }
  
  .sticky-login:active {
    color: #3498db;
  }
  
  .sticky-register:active {
    color: #2ecc71;
  }
  
  .sticky-bonus:active {
    color: #ff6b35;
  }
  
  .sticky-btn:active i {
    transform: scale(1.1);
  }
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 107, 53, 0.03) 90deg, transparent 180deg, rgba(255, 215, 0, 0.02) 270deg, transparent 360deg);
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.login-container {
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.login-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

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

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

.login-logo {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3),
              0 0 0 3px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease;
  object-fit: contain;
}

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

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

.login-subtitle {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
  opacity: 0.9;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.05) 100%);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  color: #e74c3c;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.error-message.show {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

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

.error-message i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.login-form {
  position: relative;
  z-index: 2;
}

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

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

.form-label i {
  color: #ff6b35;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

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

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

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

.form-input:valid {
  border-color: rgba(46, 204, 113, 0.5);
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 1.1rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.form-input:focus + .input-icon {
  color: #ff8c5a;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

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

.password-toggle.active {
  color: #ff6b35;
}

.input-error {
  display: none;
  align-items: center;
  gap: 8px;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 8px;
  padding-left: 10px;
}

.input-error.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.input-error i {
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-custom i {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-color: #ff6b35;
}

.checkbox-input:checked + .checkbox-custom i {
  opacity: 1;
  transform: scale(1);
}

.checkbox-label {
  color: #cccccc;
  font-size: 0.95rem;
}

.forgot-password {
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #ff8c5a;
  text-decoration: underline;
}

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-button::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-button:hover::before {
  left: 100%;
}

.login-button:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.login-button:active {
  transform: translateY(0);
}

.login-button.loading {
  pointer-events: none;
}

.login-button.loading span {
  opacity: 0;
}

.login-button.loading i:not(.fa-spinner) {
  opacity: 0;
}

.button-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-button.loading .button-loader {
  opacity: 1;
}

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

.register-button:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.login-footer {
  position: relative;
  z-index: 2;
}

.security-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaaaaa;
  font-size: 0.9rem;
}

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

/* Tablet Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 12px 45px 12px 40px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .security-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .login-section {
    padding: 10px;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 40px 12px 35px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-button,
  .register-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .security-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 10px 35px 10px 32px;
  }
  
  .login-button,
  .register-button {
    padding: 12px;
    font-size: 0.95rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%);
  pointer-events: none;
  animation: registerBackgroundShift 25s ease-in-out infinite;
}

@keyframes registerBackgroundShift {
  0%, 100% { opacity: 1; transform: rotate(0deg); }
  50% { opacity: 0.8; transform: rotate(1deg); }
}

.register-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
  animation: registerFadeInUp 1s ease-out;
}

@keyframes registerFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.register-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 53, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset,
              0 0 100px rgba(255, 107, 53, 0.1);
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.register-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

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

.register-logo {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.logo-image {
  width: 85px;
  height: 85px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4),
              0 0 0 3px rgba(255, 107, 53, 0.15),
              0 0 0 6px rgba(255, 215, 0, 0.1);
  transition: all 0.4s ease;
  object-fit: contain;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
}

.logo-image:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5),
              0 0 0 4px rgba(255, 107, 53, 0.2),
              0 0 0 8px rgba(255, 215, 0, 0.15);
}

.register-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 50%, #ff8c5a 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Prompt', sans-serif;
  animation: titleGradient 4s ease-in-out infinite;
}

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

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

.success-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(39, 174, 96, 0.08) 100%);
  border: 2px solid rgba(46, 204, 113, 0.4);
  border-radius: 15px;
  padding: 18px 20px;
  margin-bottom: 25px;
  color: #2ecc71;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.success-message.show {
  display: flex;
  animation: registerSlideDown 0.4s ease-out;
}

.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(192, 57, 43, 0.08) 100%);
  border: 2px solid rgba(231, 76, 60, 0.4);
  border-radius: 15px;
  padding: 18px 20px;
  margin-bottom: 25px;
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.error-message.show {
  display: flex;
  animation: registerSlideDown 0.4s ease-out;
}

@keyframes registerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-message i,
.error-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.register-form {
  position: relative;
  z-index: 2;
}

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

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

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

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 55px 18px 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 107, 53, 0.25);
  border-radius: 18px;
  color: #ffffff;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15),
              0 8px 25px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

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

.form-input:valid:not(:placeholder-shown) {
  border-color: rgba(46, 204, 113, 0.6);
  background: rgba(46, 204, 113, 0.05);
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 1.2rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-input:focus + .input-icon {
  color: #ff8c5a;
  transform: translateY(-50%) scale(1.1);
}

.input-validation {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.input-validation.show {
  display: flex;
  opacity: 1;
  animation: validationBounce 0.4s ease-out;
}

@keyframes validationBounce {
  0% { transform: translateY(-50%) scale(0); }
  70% { transform: translateY(-50%) scale(1.2); }
  100% { transform: translateY(-50%) scale(1); }
}

.validation-icon {
  color: #ffffff;
  font-size: 0.8rem;
}

.input-error {
  display: none;
  align-items: center;
  gap: 8px;
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 10px;
  padding-left: 12px;
  font-weight: 500;
}

.input-error.show {
  display: flex;
  animation: registerFadeIn 0.3s ease-out;
}

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

.input-error i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.input-help {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaaaaa;
  font-size: 0.85rem;
  margin-top: 8px;
  padding-left: 12px;
  opacity: 0.8;
}

.input-help i {
  font-size: 0.8rem;
  color: #ff6b35;
  flex-shrink: 0;
}

.terms-wrapper {
  margin-bottom: 35px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom i {
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.checkbox-input:checked + .checkbox-custom i {
  opacity: 1;
  transform: scale(1);
}

.checkbox-label {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.terms-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ff8c5a;
  text-decoration: underline;
}

.register-button {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: none;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

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

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

.register-button:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

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

.register-button.loading {
  pointer-events: none;
}

.register-button.loading span {
  opacity: 0;
}

.register-button.loading i:not(.fa-spinner) {
  opacity: 0;
}

.button-loader {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-button.loading .button-loader {
  opacity: 1;
}

.login-button {
  width: 100%;
  background: transparent;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  border-radius: 18px;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
}

.login-button:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff8c5a;
  border-color: #ff8c5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.register-footer {
  position: relative;
  z-index: 2;
}

.benefits-info {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaaaaa;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.25);
  color: #cccccc;
}

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

.age-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ff6b35;
  font-size: 0.85rem;
  text-align: center;
  padding: 15px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  font-weight: 500;
}

.age-warning i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 35px 30px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 75px;
    height: 75px;
  }
  
  .form-input {
    padding: 16px 50px 16px 45px;
    font-size: 1rem;
  }
  
  .benefits-info {
    gap: 20px;
  }
  
  .benefit-item {
    font-size: 0.85rem;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .register-section {
    padding: 10px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 25px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 15px 45px 15px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 15px;
    font-size: 1.1rem;
  }
  
  .input-validation,
  .password-toggle {
    right: 15px;
  }
  
  .register-button,
  .login-button {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .benefits-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .benefit-item {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .age-warning {
    font-size: 0.8rem;
    padding: 12px;
  }
  
  .checkbox-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .form-input {
    padding: 14px 40px 14px 35px;
  }
  
  .register-button,
  .login-button {
    padding: 15px 16px;
    font-size: 0.95rem;
  }
  
  .checkbox-label {
    font-size: 0.85rem;
  }
  
  .age-warning {
    font-size: 0.75rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 107, 53, 0.05) 90deg, transparent 180deg, rgba(255, 215, 0, 0.03) 270deg, transparent 360deg);
  pointer-events: none;
  animation: heroBackgroundShift 20s ease-in-out infinite;
}

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

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

.hero-content {
  text-align: center;
  animation: heroFadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 25%, #ff6b35 50%, #ffd700 75%, #ff6b35 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Prompt', sans-serif;
  animation: heroTitleGradient 6s ease-in-out infinite;
}

@keyframes heroTitleGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.hero-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 160px;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.stat-item i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.stat-item span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
  position: relative;
  z-index: 2;
}

.stat-item p {
  font-size: 1rem;
  color: #aaaaaa;
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 250px;
  justify-content: center;
}

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

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

.hero-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  border: 2px solid transparent;
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

.hero-btn.secondary:hover {
  background: #ffd700;
  color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #0f1419 0%, #1a1a1a 100%);
}

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

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

.promotion-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: promotionFadeInUp 1s ease-out;
}

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

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.promotion-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid #ff6b35;
  box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.promotion-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  animation: promotionBadgePulse 2s ease-in-out infinite;
}

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

.promotion-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  flex-shrink: 0;
}

.promotion-icon.deposit {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.promotion-icon.referral {
  background: linear-gradient(135deg, #3498db, #2980b9);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.promotion-icon.cashback {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.promotion-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  animation: promotionIconPulse 3s ease-in-out infinite;
}

@keyframes promotionIconPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.promotion-icon i {
  font-size: 2rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

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

.promotion-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: start;
}

.promotion-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  min-width: 200px;
  position: relative;
}

.promotion-amount::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  border-radius: 23px;
  animation: promotionAmountGlow 4s ease-in-out infinite;
}

@keyframes promotionAmountGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.promotion-amount.deposit {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
}

.promotion-amount.referral {
  background: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.3);
}

.promotion-amount.cashback {
  background: rgba(155, 89, 182, 0.1);
  border-color: rgba(155, 89, 182, 0.3);
}

.currency {
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.value {
  font-size: 4rem;
  color: #ff6b35;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
  margin: 10px 0;
  position: relative;
  z-index: 2;
}

.percentage {
  font-size: 3.5rem;
  color: #2ecc71;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
  margin: 10px 0;
  position: relative;
  z-index: 2;
}

.promotion-amount.referral .percentage {
  color: #3498db;
}

.range {
  font-size: 3rem;
  color: #9b59b6;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
  margin: 10px 0;
  position: relative;
  z-index: 2;
}

.label {
  font-size: 1.1rem;
  color: #cccccc;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(10px);
}

.feature-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.5;
}

.promotion-cta {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.promo-btn:hover {
  background: linear-gradient(135deg, #ff8c5a, #ffaa7a);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px 80px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 40px;
  }
  
  .promotion-header {
    gap: 20px;
  }
  
  .promotion-header h2 {
    font-size: 2rem;
  }
  
  .promotion-content {
    gap: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 350px;
  }
  
  .promotion-section {
    padding: 50px 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .promotion-header h2 {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .promotion-amount {
    margin: 0 auto;
  }
  
  .feature-item {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-header h2 {
    font-size: 1.6rem;
  }
  
  .promotion-amount {
    padding: 25px 20px;
    min-width: 180px;
  }
  
  .value {
    font-size: 3rem;
  }
  
  .percentage {
    font-size: 2.8rem;
  }
  
  .range {
    font-size: 2.5rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
}