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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 25%, #21262d 50%, #30363d 75%, #0d1117 100%);
  color: #f0f6fc;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: none;
  min-width: 150px;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #58a6ff;
  border-color: #58a6ff;
}

.btn-secondary:hover {
  background: #58a6ff;
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 107, 53, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(88, 166, 255, 0.05) 50%, transparent 60%);
  pointer-events: none;
}

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

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

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

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #8b949e;
  line-height: 1.6;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(33, 38, 45, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(48, 54, 61, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.5);
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

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

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 10px;
    justify-content: center;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    min-width: 140px;
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .hero-img {
    max-width: 100%;
  }
  
  .hero-badge {
    top: 5px;
    right: 5px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
}

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

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

.header-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #58a6ff, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.7rem;
  color: #8b949e;
  margin-top: -2px;
  font-weight: 400;
}

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

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

.nav-link {
  color: #c9d1d9;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.1);
}

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

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

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

.btn-header-cta {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-header-cta i {
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #f0f6fc;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

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

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

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

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(48, 54, 61, 0.8);
  margin-bottom: 40px;
}

.mobile-logo {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #58a6ff, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-close-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

.mobile-nav-link:hover {
  background: rgba(88, 166, 255, 0.1);
  color: #58a6ff;
  border-color: rgba(88, 166, 255, 0.3);
}

.mobile-cta-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.mobile-cta-btn i {
  color: #fff;
}

/* Add top margin to body to compensate for fixed header */
body {
  margin-top: 70px;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  body {
    margin-top: 60px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .header-nav,
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-header {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  
  .mobile-logo {
    font-size: 1.6rem;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-btn {
    font-size: 1.1rem;
    padding: 12px 15px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 55px;
  }
  
  body {
    margin-top: 55px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-menu-header {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  
  .mobile-logo {
    font-size: 1.4rem;
  }
  
  .mobile-close-btn {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 10px 12px;
  }
  
  .mobile-cta-btn {
    font-size: 1rem;
    padding: 10px 12px;
    gap: 8px;
  }
  
  .hamburger-btn {
    padding: 6px;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2.5px;
  }
}

/* Platform Review Section */
.platform-review-section {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(22, 27, 34, 0.95) 50%, rgba(33, 38, 45, 0.95) 100%),
    radial-gradient(circle at 30% 20%, rgba(88, 166, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.platform-review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(48, 54, 61, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

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

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

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #58a6ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

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

.review-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-intro p,
.review-details p,
.review-security p,
.review-growth p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9d1d9;
  text-align: justify;
}

.review-intro p strong,
.review-details p strong,
.review-security p strong,
.review-growth p strong {
  color: #58a6ff;
  font-weight: 600;
}

.review-security a {
  color: #ff6b35;
  font-weight: 600;
  transition: color 0.3s ease;
}

.review-security a:hover {
  color: #f7931e;
  text-decoration: underline;
}

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

.review-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
}

.review-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(88, 166, 255, 0.5);
}

.trust-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #58a6ff, #0969da);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
  white-space: nowrap;
}

.trust-badge i {
  color: #fff;
  font-size: 1rem;
}

.advantages-section {
  margin-bottom: 40px;
}

.advantages-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 30px;
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(33, 38, 45, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(48, 54, 61, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}

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

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

.advantage-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 5px;
}

.advantage-content p {
  font-size: 1rem;
  color: #8b949e;
  line-height: 1.5;
}

.review-conclusion {
  text-align: center;
  padding: 30px;
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.6);
  backdrop-filter: blur(10px);
}

.review-conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #c9d1d9;
  margin: 0;
}

.review-conclusion p strong {
  color: #58a6ff;
  font-weight: 600;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .platform-review-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .review-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .platform-review-section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .review-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .review-text {
    gap: 20px;
  }
  
  .review-intro p,
  .review-details p,
  .review-security p,
  .review-growth p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .advantages-title {
    font-size: 1.6rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .advantage-item {
    padding: 15px;
  }
  
  .advantage-icon {
    width: 45px;
    height: 45px;
  }
  
  .advantage-icon i {
    font-size: 1.2rem;
  }
  
  .advantage-content h4 {
    font-size: 1.1rem;
  }
  
  .advantage-content p {
    font-size: 0.95rem;
  }
  
  .trust-badge {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .review-conclusion {
    padding: 20px;
  }
  
  .review-conclusion p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .platform-review-section {
    padding: 30px 10px;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .review-intro p,
  .review-details p,
  .review-security p,
  .review-growth p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .advantages-title {
    font-size: 1.4rem;
  }
  
  .advantage-item {
    padding: 12px;
    gap: 12px;
  }
  
  .advantage-icon {
    width: 40px;
    height: 40px;
  }
  
  .advantage-icon i {
    font-size: 1.1rem;
  }
  
  .advantage-content h4 {
    font-size: 1rem;
  }
  
  .advantage-content p {
    font-size: 0.9rem;
  }
  
  .trust-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
    gap: 5px;
  }
  
  .review-conclusion {
    padding: 15px;
  }
  
  .review-conclusion p {
    font-size: 0.95rem;
  }
}

/* VIP Membership Section */
.vip-membership-section {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(33, 38, 45, 0.95) 0%, rgba(22, 27, 34, 0.95) 50%, rgba(13, 17, 23, 0.95) 100%),
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.vip-membership-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 107, 53, 0.05) 50%, transparent 60%);
  pointer-events: none;
}

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

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

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

.vip-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.vip-img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 215, 0, 0.6);
}

.vip-crown-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
  border: 2px solid #fff;
  animation: crown-glow 2s infinite alternate;
}

@keyframes crown-glow {
  0% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5); }
  100% { box-shadow: 0 5px 30px rgba(255, 215, 0, 0.8); }
}

.vip-crown-badge i {
  color: #000;
  font-size: 1.2rem;
}

.vip-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.vip-intro p,
.vip-benefits p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9d1d9;
  text-align: justify;
}

.vip-intro p strong,
.vip-benefits p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.vip-service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(22, 27, 34, 0.8);
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vip-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.05) 50%, transparent 60%);
  pointer-events: none;
}

.vip-service-item:hover {
  background: rgba(33, 38, 45, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.5);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(45deg, #ffd700, #ffb300);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  border: 2px solid #fff;
}

.service-icon i {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-content {
  flex: 1;
}

.service-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 1rem;
  color: #8b949e;
  line-height: 1.6;
  margin: 0;
}

.service-content p strong {
  color: #58a6ff;
  font-weight: 600;
}

.vip-cta {
  text-align: center;
  padding: 40px 0;
}

.btn-vip {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: #000;
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-vip:hover {
  background: linear-gradient(45deg, #ffb300, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  color: #000;
}

.btn-vip i {
  color: #000;
  font-size: 1.3rem;
  margin-right: 10px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .vip-membership-section {
    padding: 60px 20px;
  }
  
  .vip-content {
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .vip-services {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .vip-service-item {
    padding: 20px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .vip-membership-section {
    padding: 40px 15px;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .vip-text {
    gap: 20px;
  }
  
  .vip-intro p,
  .vip-benefits p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .vip-services {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vip-service-item {
    padding: 18px;
    gap: 15px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-content h4 {
    font-size: 1.2rem;
  }
  
  .service-content p {
    font-size: 0.95rem;
  }
  
  .vip-crown-badge {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .btn-vip {
    font-size: 1.1rem;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .vip-membership-section {
    padding: 30px 10px;
  }
  
  .vip-intro p,
  .vip-benefits p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .vip-service-item {
    padding: 15px;
    gap: 12px;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-content h4 {
    font-size: 1.1rem;
  }
  
  .service-content p {
    font-size: 0.9rem;
  }
  
  .vip-crown-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
    gap: 5px;
  }
  
  .btn-vip {
    font-size: 1rem;
    padding: 10px 25px;
    width: 100%;
    max-width: 280px;
  }
  
  .btn-vip i {
    font-size: 1.1rem;
  }
}

/* Slot Games Section */
.slot-games-section {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(33, 38, 45, 0.95) 50%, rgba(22, 27, 34, 0.95) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(88, 166, 255, 0.08) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.slot-games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(88, 166, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

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

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

.slot-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.slot-intro p,
.slot-providers p,
.slot-security p,
.slot-features p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9d1d9;
  text-align: justify;
}

.slot-intro p strong,
.slot-providers p strong,
.slot-security p strong,
.slot-features p strong {
  color: #ff6b35;
  font-weight: 600;
}

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

.slot-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.slot-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.5);
}

.slot-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
}

.slot-badge i {
  color: #fff;
  font-size: 1rem;
}

.popular-games-section {
  margin-bottom: 50px;
}

.games-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #58a6ff;
  margin-bottom: 30px;
  text-align: center;
}

.popular-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 107, 53, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.game-card:hover {
  background: rgba(33, 38, 45, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}

.game-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.game-info {
  flex: 1;
}

.game-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 5px;
  line-height: 1.3;
}

.game-info p {
  font-size: 0.95rem;
  color: #8b949e;
  margin: 0;
  line-height: 1.4;
}

.game-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(88, 166, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(88, 166, 255, 0.4);
}

.game-icon i {
  color: #58a6ff;
  font-size: 1.3rem;
}

.slot-additional-features {
  padding: 30px;
  background: rgba(33, 38, 45, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.6);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.additional-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #c9d1d9;
  margin-bottom: 15px;
  text-align: justify;
}

.additional-text p:last-child {
  margin-bottom: 0;
}

.additional-text p strong {
  color: #58a6ff;
  font-weight: 600;
}

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

.btn-slot {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.btn-slot:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-demo {
  background: transparent;
  color: #58a6ff;
  border: 2px solid #58a6ff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background: #58a6ff;
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.3);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .slot-games-section {
    padding: 60px 20px;
  }
  
  .slot-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .popular-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  
  .game-card {
    padding: 18px;
  }
  
  .slot-cta {
    gap: 15px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .slot-games-section {
    padding: 40px 15px;
  }
  
  .slot-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .slot-text {
    gap: 20px;
  }
  
  .slot-intro p,
  .slot-providers p,
  .slot-security p,
  .slot-features p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .games-title {
    font-size: 1.6rem;
  }
  
  .popular-games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .game-card {
    padding: 15px;
    gap: 12px;
  }
  
  .game-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .game-info h4 {
    font-size: 1.1rem;
  }
  
  .game-info p {
    font-size: 0.9rem;
  }
  
  .game-icon {
    width: 40px;
    height: 40px;
  }
  
  .game-icon i {
    font-size: 1.2rem;
  }
  
  .slot-additional-features {
    padding: 20px;
  }
  
  .additional-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .slot-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .slot-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-slot,
  .btn-demo {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .slot-games-section {
    padding: 30px 10px;
  }
  
  .slot-intro p,
  .slot-providers p,
  .slot-security p,
  .slot-features p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .games-title {
    font-size: 1.4rem;
  }
  
  .game-card {
    padding: 12px;
    gap: 10px;
  }
  
  .game-number {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .game-info h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  
  .game-info p {
    font-size: 0.85rem;
  }
  
  .game-icon {
    width: 35px;
    height: 35px;
  }
  
  .game-icon i {
    font-size: 1.1rem;
  }
  
  .slot-additional-features {
    padding: 15px;
  }
  
  .additional-text p {
    font-size: 0.95rem;
  }
  
  .slot-badge {
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .btn-slot,
  .btn-demo {
    font-size: 0.95rem;
    padding: 9px 20px;
  }
}

/* Access Guide Section */
.access-guide-section {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 50%, rgba(33, 38, 45, 0.95) 100%),
    radial-gradient(circle at 40% 20%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.access-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(48, 54, 61, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

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

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

.access-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.access-intro p,
.access-links p,
.app-download p,
.login-process p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9d1d9;
  text-align: justify;
}

.access-intro p strong,
.access-links p strong,
.app-download p strong,
.login-process p strong {
  color: #58a6ff;
  font-weight: 600;
}

.access-intro a,
.login-process a {
  color: #ff6b35;
  font-weight: 600;
  transition: color 0.3s ease;
}

.access-intro a:hover,
.login-process a:hover {
  color: #f7931e;
  text-decoration: underline;
}

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

.access-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
}

.access-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(88, 166, 255, 0.5);
}

.access-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #58a6ff, #0969da);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
  white-space: nowrap;
}

.access-badge i {
  color: #fff;
}

.access-methods {
  margin-bottom: 50px;
}

.methods-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 30px;
  text-align: center;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.method-card {
  padding: 25px;
  background: rgba(33, 38, 45, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(88, 166, 255, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.method-card:hover {
  background: rgba(48, 54, 61, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(88, 166, 255, 0.5);
}

.vip-method {
  border-color: rgba(255, 215, 0, 0.5);
}

.vip-method::before {
  background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%);
}

.vip-method:hover {
  border-color: rgba(255, 215, 0, 0.7);
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(45deg, #58a6ff, #0969da);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

.vip-method .method-icon {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.vip-method .method-icon i {
  color: #000;
}

.method-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 10px;
}

.vip-method .method-content h4 {
  color: #ffd700;
}

.method-content p {
  font-size: 1rem;
  color: #8b949e;
  line-height: 1.5;
  margin-bottom: 15px;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.method-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #58a6ff;
}

.vip-method .method-features span {
  color: #ffd700;
}

.method-features i {
  font-size: 0.8rem;
}

.registration-steps {
  margin-bottom: 40px;
}

.steps-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #58a6ff;
  margin-bottom: 30px;
  text-align: center;
}

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

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(22, 27, 34, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(33, 38, 45, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 0.95rem;
  color: #8b949e;
  margin: 0;
  line-height: 1.4;
}

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

.btn-access {
  background: linear-gradient(45deg, #58a6ff, #0969da);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-access:hover {
  background: linear-gradient(45deg, #4a9eff, #0860ca);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
}

.btn-register {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .access-guide-section {
    padding: 60px 20px;
  }
  
  .access-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .access-guide-section {
    padding: 40px 15px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .access-text {
    gap: 20px;
  }
  
  .access-intro p,
  .access-links p,
  .app-download p,
  .login-process p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .methods-title,
  .steps-title {
    font-size: 1.6rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .method-card {
    padding: 20px;
  }
  
  .method-icon {
    width: 55px;
    height: 55px;
  }
  
  .method-icon i {
    font-size: 1.4rem;
  }
  
  .method-content h4 {
    font-size: 1.2rem;
  }
  
  .method-content p {
    font-size: 0.95rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .step-item {
    padding: 18px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1.1rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .access-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .access-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-access,
  .btn-register {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .access-guide-section {
    padding: 30px 10px;
  }
  
  .access-intro p,
  .access-links p,
  .app-download p,
  .login-process p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .methods-title,
  .steps-title {
    font-size: 1.4rem;
  }
  
  .method-card {
    padding: 15px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
  }
  
  .method-icon i {
    font-size: 1.3rem;
  }
  
  .method-content h4 {
    font-size: 1.1rem;
  }
  
  .method-content p {
    font-size: 0.9rem;
  }
  
  .method-features span {
    font-size: 0.85rem;
  }
  
  .step-item {
    padding: 15px;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .access-badge {
    bottom: 5px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .btn-access,
  .btn-register {
    font-size: 0.95rem;
    padding: 9px 20px;
  }
}

/* Promotions Codes Section */
.promotions-codes-section {
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(33, 38, 45, 0.95) 0%, rgba(13, 17, 23, 0.95) 50%, rgba(22, 27, 34, 0.95) 100%),
    radial-gradient(circle at 20% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(88, 166, 255, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.promotions-codes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(88, 166, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

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

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

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

.promo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.promo-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 53, 0.5);
}

.promo-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
}

.promo-badge i {
  color: #fff;
  font-size: 1rem;
}

.promotions-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.promo-intro p,
.promo-free-credit p,
.promo-types p,
.promo-cashback p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9d1d9;
  text-align: justify;
}

.promo-intro p strong,
.promo-free-credit p strong,
.promo-types p strong,
.promo-cashback p strong {
  color: #ff6b35;
  font-weight: 600;
}

.promo-intro a {
  color: #ffd700;
  font-weight: 600;
  transition: color 0.3s ease;
}

.promo-intro a:hover {
  color: #ffb300;
  text-decoration: underline;
}

.monthly-promotions {
  margin-bottom: 50px;
}

.monthly-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #58a6ff;
  margin-bottom: 30px;
  text-align: center;
}

.monthly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.monthly-card {
  padding: 25px;
  background: rgba(22, 27, 34, 0.8);
  border-radius: 15px;
  border: 2px solid rgba(88, 166, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.monthly-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(88, 166, 255, 0.05) 50%, transparent 60%);
  pointer-events: none;
}

.monthly-card:hover {
  background: rgba(33, 38, 45, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(88, 166, 255, 0.5);
}

.monthly-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #58a6ff, #0969da);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(88, 166, 255, 0.4);
}

.monthly-icon i {
  color: white;
  font-size: 1.8rem;
}

.monthly-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 10px;
}

.monthly-content p {
  font-size: 1.1rem;
  color: #8b949e;
  margin-bottom: 15px;
  line-height: 1.5;
}

.monthly-value {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.monthly-value .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.monthly-value .frequency {
  font-size: 0.9rem;
  color: #58a6ff;
  font-weight: 600;
}

.promo-notification {
  margin-bottom: 40px;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(33, 38, 45, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(88, 166, 255, 0.3);
  backdrop-filter: blur(10px);
}

.notification-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffd700, #ffb300);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.notification-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.notification-text p {
  font-size: 1.1rem;
  color: #c9d1d9;
  line-height: 1.7;
  margin: 0;
}

.notification-text p strong {
  color: #58a6ff;
  font-weight: 600;
}

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

.btn-promo {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.btn-promo:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-code {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: #000;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-code:hover {
  background: linear-gradient(45deg, #ffb300, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .promotions-codes-section {
    padding: 60px 20px;
  }
  
  .promotions-content {
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .monthly-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .monthly-card {
    padding: 20px;
  }
  
  .monthly-icon {
    width: 60px;
    height: 60px;
  }
  
  .monthly-icon i {
    font-size: 1.6rem;
  }
  
  .notification-content {
    padding: 20px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .promotions-codes-section {
    padding: 40px 15px;
  }
  
  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .promotions-text {
    gap: 20px;
  }
  
  .promo-intro p,
  .promo-free-credit p,
  .promo-types p,
  .promo-cashback p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .monthly-title {
    font-size: 1.6rem;
  }
  
  .monthly-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .monthly-card {
    padding: 18px;
  }
  
  .monthly-icon {
    width: 55px;
    height: 55px;
  }
  
  .monthly-icon i {
    font-size: 1.4rem;
  }
  
  .monthly-content h4 {
    font-size: 1.2rem;
  }
  
  .monthly-content p {
    font-size: 1rem;
  }
  
  .monthly-value .value {
    font-size: 1.3rem;
  }
  
  .notification-content {
    flex-direction: column;
    text-align: center;
    padding: 18px;
    gap: 15px;
  }
  
  .notification-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
  }
  
  .notification-icon i {
    font-size: 1.3rem;
  }
  
  .notification-text h4 {
    font-size: 1.2rem;
  }
  
  .notification-text p {
    font-size: 1rem;
    text-align: left;
  }
  
  .promo-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .promo-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-promo,
  .btn-code {
    width: 100%;
    max-width: 250px;
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .promotions-codes-section {
    padding: 30px 10px;
  }
  
  .promo-intro p,
  .promo-free-credit p,
  .promo-types p,
  .promo-cashback p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .monthly-title {
    font-size: 1.4rem;
  }
  
  .monthly-card {
    padding: 15px;
  }
  
  .monthly-icon {
    width: 50px;
    height: 50px;
  }
  
  .monthly-icon i {
    font-size: 1.2rem;
  }
  
  .monthly-content h4 {
    font-size: 1.1rem;
  }
  
  .monthly-content p {
    font-size: 0.95rem;
  }
  
  .monthly-value .value {
    font-size: 1.2rem;
  }
  
  .monthly-value .frequency {
    font-size: 0.85rem;
  }
  
  .notification-content {
    padding: 15px;
  }
  
  .notification-icon {
    width: 50px;
    height: 50px;
  }
  
  .notification-icon i {
    font-size: 1.2rem;
  }
  
  .notification-text h4 {
    font-size: 1.1rem;
  }
  
  .notification-text p {
    font-size: 0.95rem;
  }
  
  .promo-badge {
    top: 5px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .btn-promo,
  .btn-code {
    font-size: 0.95rem;
    padding: 9px 20px;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #21262d 100%);
  color: #c9d1d9;
  padding: 60px 20px 0;
  border-top: 2px solid rgba(48, 54, 61, 0.8);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #58a6ff, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.footer-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: #8b949e;
  font-weight: 400;
  margin-top: 5px;
  display: block;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8b949e;
  margin-bottom: 20px;
  text-align: justify;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(48, 54, 61, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b949e;
  transition: all 0.3s ease;
  border: 1px solid rgba(48, 54, 61, 0.6);
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #58a6ff);
}

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

.footer-link {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-radius: 4px;
  position: relative;
}

.footer-link:hover {
  color: #58a6ff;
  padding-left: 8px;
}

.footer-link:hover::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 600;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.contact-item i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1rem;
}

.contact-item span {
  color: #c9d1d9;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(48, 54, 61, 0.6);
  padding: 25px 0;
}

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

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

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

.legal-link:hover {
  color: #58a6ff;
}

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

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

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #8b949e;
  line-height: 1.4;
}

.footer-warning {
  font-size: 0.8rem !important;
  color: #656d76 !important;
  margin-top: 5px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .main-footer {
    padding: 50px 20px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-description {
    max-width: 600px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main-footer {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    padding: 6px 0;
  }
  
  .contact-item span {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    justify-content: center;
    gap: 10px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .legal-link {
    font-size: 0.85rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-warning {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 10px 0;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-tagline {
    font-size: 0.8rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-social {
    gap: 10px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .footer-menu {
    gap: 8px;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .contact-item {
    gap: 10px;
  }
  
  .contact-item i {
    width: 18px;
    height: 18px;
    font-size: 0.9rem;
  }
  
  .contact-item span {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 15px 0;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-legal .separator {
    display: none;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .footer-warning {
    font-size: 0.7rem !important;
  }
}

/* Sticky Buttons */
.sticky-buttons-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(48, 54, 61, 0.8);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #58a6ff, #0969da);
  color: #fff;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #4a9eff, #0860ca);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #e55a2b, #e8841a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000;
  animation: pulse-bonus 2s infinite;
}

@keyframes pulse-bonus {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #ffb300, #ffd700);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sticky-btn-bonus i,
.sticky-btn-bonus span {
  color: #000;
}

/* Add padding to body to prevent content being hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
  
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    font-size: 0.75rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 55px;
  }
}

/* Ensure sticky buttons don't interfere with mobile menu */
@media (max-width: 768px) {
  .mobile-menu-overlay.active ~ .sticky-buttons-container {
    display: none;
  }
}

/* Login Section */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 25%, #21262d 50%, #30363d 75%, #0d1117 100%);
  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(88, 166, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-card {
  background: rgba(22, 27, 34, 0.95);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #58a6ff, #f7931e);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.login-subtitle {
  color: #8b949e;
  font-size: 1rem;
  margin: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.error-message {
  background: rgba(248, 81, 73, 0.1);
  color: #f85149;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(248, 81, 73, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

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

.form-group {
  position: relative;
}

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

.form-label i {
  color: #58a6ff;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(33, 38, 45, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 8px;
  color: #f0f6fc;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #58a6ff;
  background: rgba(33, 38, 45, 1);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.form-input.error {
  border-color: #f85149;
  background: rgba(248, 81, 73, 0.05);
}

.form-input.error:focus {
  border-color: #f85149;
  box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.1);
}

.form-input::placeholder {
  color: #6e7681;
}

.password-wrapper {
  position: relative;
}

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

.password-toggle:hover {
  color: #58a6ff;
  background: rgba(88, 166, 255, 0.1);
}

.password-toggle:focus {
  outline: none;
  color: #58a6ff;
}

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

.field-error:before {
  content: '⚠';
  font-size: 0.8rem;
}

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

.login-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.loading-spinner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.form-divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(48, 54, 61, 0.8);
}

.form-divider span {
  background: rgba(22, 27, 34, 0.95);
  color: #8b949e;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  background: transparent;
  color: #58a6ff;
  border: 2px solid #58a6ff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.register-btn:hover {
  background: #58a6ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
}

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

.login-footer {
  text-align: center;
  margin-top: 20px;
}

.forgot-link {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #58a6ff;
}

.forgot-link i {
  font-size: 0.9rem;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .login-section {
    padding: 15px;
  }
  
  .login-container {
    max-width: 420px;
  }
  
  .login-card {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .login-section {
    padding: 10px;
    min-height: calc(100vh - 70px);
  }
  
  .login-container {
    max-width: 100%;
    width: 100%;
  }
  
  .login-card {
    padding: 30px 25px;
    margin: 10px 0;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .password-wrapper .form-input {
    padding-right: 45px;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 11px 12px;
  }
  
  .password-wrapper .form-input {
    padding-right: 40px;
  }
  
  .password-toggle {
    right: 10px;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .forgot-link {
    font-size: 0.85rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 25%, #21262d 50%, #30363d 75%, #0d1117 100%);
  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% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.register-card {
  background: rgba(22, 27, 34, 0.95);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(48, 54, 61, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #58a6ff, #f7931e);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.error-message {
  background: rgba(248, 81, 73, 0.1);
  color: #f85149;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(248, 81, 73, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

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

.form-group {
  position: relative;
}

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

.form-label i {
  color: #58a6ff;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(33, 38, 45, 0.8);
  border: 2px solid rgba(48, 54, 61, 0.8);
  border-radius: 8px;
  color: #f0f6fc;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #58a6ff;
  background: rgba(33, 38, 45, 1);
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.form-input.error {
  border-color: #f85149;
  background: rgba(248, 81, 73, 0.05);
}

.form-input.error:focus {
  border-color: #f85149;
  box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.1);
}

.form-input::placeholder {
  color: #6e7681;
}

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

.field-error:before {
  content: '⚠';
  font-size: 0.8rem;
}

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

.field-hint {
  color: #8b949e;
  font-size: 0.85rem;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.field-hint i {
  color: #58a6ff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.register-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.loading-spinner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.form-divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(48, 54, 61, 0.8);
}

.form-divider span {
  background: rgba(22, 27, 34, 0.95);
  color: #8b949e;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

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

.login-btn:hover {
  background: #58a6ff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
}

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

.register-footer {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-text {
  color: #8b949e;
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}

.terms-text i {
  color: #58a6ff;
  font-size: 0.9rem;
}

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

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

.age-warning {
  color: #f7931e;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(247, 147, 30, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(247, 147, 30, 0.3);
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .register-section {
    padding: 15px;
  }
  
  .register-container {
    max-width: 420px;
  }
  
  .register-card {
    padding: 35px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .register-section {
    padding: 10px;
    min-height: calc(100vh - 70px);
  }
  
  .register-container {
    max-width: 100%;
    width: 100%;
  }
  
  .register-card {
    padding: 30px 25px;
    margin: 10px 0;
  }
  
  .logo-image {
    width: 65px;
    height: 65px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .terms-text {
    font-size: 0.8rem;
  }
  
  .age-warning {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 11px 12px;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .field-hint {
    font-size: 0.8rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
  }
  
  .age-warning {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 25%, #21262d 50%, #30363d 75%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.hero-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.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(88, 166, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 30px;
  line-height: 1.3;
  background: linear-gradient(45deg, #ff6b35, #58a6ff, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(22, 27, 34, 0.8);
  color: #58a6ff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(88, 166, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.hero-cta-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-btn:hover {
  background: linear-gradient(45deg, #e55a2b, #e8841a);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
  color: #fff;
}

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

/* Promo Sections */
.promo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.promo-section.promo-alt {
  background: linear-gradient(135deg, rgba(33, 38, 45, 0.95) 0%, rgba(22, 27, 34, 0.95) 100%);
}

.promo-section.promo-vip {
  background: 
    linear-gradient(135deg, rgba(33, 38, 45, 0.95) 0%, rgba(22, 27, 34, 0.95) 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(88, 166, 255, 0.03) 50%, transparent 70%);
  pointer-events: none;
}

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

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

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-title i {
  color: #ff6b35;
  font-size: 1.8rem;
}

.promo-vip .promo-title i {
  color: #ffd700;
}

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

.promo-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(33, 38, 45, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(48, 54, 61, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(48, 54, 61, 0.8);
  border-color: rgba(88, 166, 255, 0.5);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #58a6ff, #0969da);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
}

.promo-vip .benefit-icon {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.benefit-icon i {
  color: white;
  font-size: 1.2rem;
}

.promo-vip .benefit-icon i {
  color: #000;
}

.benefit-text {
  flex: 1;
  font-size: 1.1rem;
  color: #c9d1d9;
  line-height: 1.6;
  font-weight: 500;
}

.promo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 280px;
}

.code-highlight {
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid rgba(88, 166, 255, 0.5);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.2);
}

.code-label {
  display: block;
  color: #8b949e;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.code-value {
  display: block;
  color: #58a6ff;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #58a6ff, #4a9eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-highlight {
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 179, 0, 0.2));
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 12px;
  padding: 15px 25px;
  text-align: center;
  backdrop-filter: blur(15px);
}

.vip-label {
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
}

.promo-btn {
  background: linear-gradient(45deg, #58a6ff, #0969da);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
}

.promo-btn:hover {
  background: linear-gradient(45deg, #4a9eff, #0860ca);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.4);
  color: #fff;
}

.promo-btn-vip {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: #000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.promo-btn-vip:hover {
  background: linear-gradient(45deg, #ffb300, #ffd700);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .promo-section {
    padding: 60px 20px;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-content {
    gap: 40px;
  }
  
  .promo-cta {
    min-width: 250px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-cta-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 40px 15px;
  }
  
  .promo-title {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .promo-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefit-item {
    padding: 15px;
    gap: 12px;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
  }
  
  .benefit-icon i {
    font-size: 1.1rem;
  }
  
  .benefit-text {
    font-size: 1rem;
  }
  
  .promo-cta {
    min-width: auto;
    width: 100%;
  }
  
  .code-highlight {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .vip-highlight {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .promo-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .hero-badge {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .hero-cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .promo-section {
    padding: 30px 10px;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-title i {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-icon i {
    font-size: 1rem;
  }
  
  .benefit-text {
    font-size: 0.95rem;
  }
  
  .code-highlight {
    padding: 15px;
  }
  
  .code-value {
    font-size: 1.3rem;
  }
  
  .vip-highlight {
    padding: 12px 20px;
  }
  
  .vip-label {
    font-size: 0.9rem;
  }
  
  .promo-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}