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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

.hero-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

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

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

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  min-width: 140px;
}

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

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

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

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

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

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

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

.trust-score {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.score-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.score-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
}

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

@media (max-width: 768px) {
  #hero {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .trust-score {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.main-nav {
  padding: 0;
}

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

.nav-brand {
  z-index: 1001;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: #ffed4e;
  transform: scale(1.05);
}

.brand-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

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

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

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

.mobile-menu {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  width: 280px;
  height: 100vh;
  position: fixed;
  right: -300px;
  top: 0;
  transition: all 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

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

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd700;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

.mobile-brand .brand-icon {
  font-size: 1.5rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1);
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

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

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.05);
  padding-left: 30px;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.mobile-nav-link:hover::before {
  width: 4px;
}

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

.mobile-cta-button {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 15px 24px;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 25px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 60px;
    padding: 0 20px;
  }
  
  body {
    padding-top: 60px;
  }
  
  .brand-link {
    font-size: 1.3rem;
  }
  
  .brand-icon {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }
  
  .brand-link {
    font-size: 1.2rem;
  }
  
  .brand-icon {
    font-size: 1.4rem;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }
}

/* Platform Overview Section */
#platform-overview {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
}

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

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

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

.platform-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.platform-description p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

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

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

.feature-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

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

.feature-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.access-methods {
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
}

.access-methods h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.access-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.5;
}

.access-list li:last-child {
  margin-bottom: 0;
}

.access-list i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

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

.platform-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.platform-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
}

.platform-badge i {
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #platform-overview {
    padding: 60px 0;
  }
  
  .platform-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .access-methods {
    padding: 20px;
  }
  
  .platform-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .access-methods {
    padding: 18px;
  }
  
  .access-list li {
    font-size: 0.9rem;
  }
}

/* Login Guide Section */
#login-guide {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#login-guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

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

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

.login-steps-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

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

.login-title {
  font-size: 2.1rem;
  color: #ffd700;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.login-description p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.login-methods {
  margin-bottom: 40px;
}

.login-methods h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.method-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.method-item:hover {
  transform: translateY(-3px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

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

.method-icon i {
  font-size: 1.3rem;
  color: #000;
}

.method-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

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

.features-after-login {
  background: rgba(255, 215, 0, 0.05);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  margin-bottom: 40px;
}

.features-after-login h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 600;
}

.features-after-login a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.features-after-login a:hover {
  color: #ffed4e;
}

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

.features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.5;
}

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

.login-cta {
  text-align: center;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .login-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .login-title {
    font-size: 1.9rem;
  }
  
  .login-description p {
    font-size: 1rem;
  }
  
  .login-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  #login-guide {
    padding: 60px 0;
  }
  
  .login-title {
    font-size: 1.7rem;
    text-align: center;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .method-item {
    padding: 18px;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .features-after-login {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-description p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .method-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .method-icon {
    width: 45px;
    height: 45px;
  }
  
  .method-icon i {
    font-size: 1.2rem;
  }
  
  .features-after-login {
    padding: 20px;
  }
  
  .login-steps-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

/* Website Features Section */
#website-features {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#website-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.website-title {
  font-size: 2.3rem;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.website-main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

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

.website-description p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.technology-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.tech-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.tech-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 0;
}

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

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

.website-img:hover {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.key-features {
  background: rgba(255, 215, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 50px;
}

.key-features h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

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

.showcase-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #333;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

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

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

.showcase-text h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

.showcase-text p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.development-info {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #333;
}

.dev-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.dev-text {
  flex: 1;
}

.dev-text p {
  font-size: 1.1rem;
  color: #c0c0c0;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.dev-text strong {
  color: #ffd700;
  font-weight: 700;
}

.dev-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #b0b0b0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .website-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .website-title {
    font-size: 2rem;
  }
  
  .technology-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .features-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dev-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .dev-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #website-features {
    padding: 60px 0;
  }
  
  .website-title {
    font-size: 1.8rem;
  }
  
  .website-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .key-features {
    padding: 30px 25px;
  }
  
  .showcase-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .showcase-icon {
    align-self: center;
  }
  
  .dev-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .website-container {
    padding: 0 15px;
  }
  
  .website-title {
    font-size: 1.6rem;
  }
  
  .tech-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .tech-icon {
    width: 45px;
    height: 45px;
  }
  
  .key-features {
    padding: 25px 20px;
  }
  
  .showcase-item {
    padding: 20px;
  }
  
  .showcase-icon {
    width: 50px;
    height: 50px;
  }
  
  .showcase-icon i {
    font-size: 1.3rem;
  }
  
  .development-info {
    padding: 25px 20px;
  }
  
  .dev-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .dev-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* Website Review Section */
#website-review {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#website-review::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.review-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.review-description p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.security-features h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.security-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-3px);
  border-color: #4CAF50;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.security-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.security-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.security-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 0;
}

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

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

.review-img:hover {
  transform: scale(1.05);
}

.trust-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
  min-width: 200px;
}

.indicator-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-icon i {
  font-size: 1.2rem;
}

.indicator-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.indicator-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.indicator-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  line-height: 1;
}

.payment-reliability {
  background: rgba(76, 175, 80, 0.1);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  margin-bottom: 50px;
}

.reliability-header h3 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.reliability-header strong {
  color: #ffd700;
}

.reliability-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.reliability-text {
  flex: 1;
}

.reliability-text p {
  font-size: 1rem;
  color: #c0c0c0;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

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

.reliability-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

.stat-box {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #4CAF50;
  text-align: center;
  min-width: 120px;
}

.stat-box .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4CAF50;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: #b0b0b0;
  font-weight: 500;
  line-height: 1.3;
}

.customer-support {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #333;
  margin-bottom: 50px;
}

.support-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.support-text {
  flex: 1;
}

.support-text h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.support-text strong {
  color: #ffd700;
  font-weight: 700;
}

.support-text p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  color: #ffd700;
  font-weight: 500;
  min-width: 140px;
}

.channel-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.user-benefits {
  margin-bottom: 40px;
}

.user-benefits h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

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

.benefit-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #333;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

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

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

.benefit-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}

.external-validation {
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ffd700;
  text-align: center;
}

.validation-content p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.6;
  margin: 0;
}

.validation-content a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.validation-content a:hover {
  color: #ffed4e;
}

.validation-content strong {
  color: #ffd700;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .review-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .review-title {
    font-size: 2rem;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .reliability-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .reliability-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .support-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .support-channels {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #website-review {
    padding: 60px 0;
  }
  
  .review-title {
    font-size: 1.8rem;
  }
  
  .review-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .payment-reliability {
    padding: 30px 25px;
  }
  
  .customer-support {
    padding: 25px;
  }
  
  .reliability-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .support-channels {
    flex-direction: column;
  }
  
  .trust-indicator {
    position: static;
    margin-top: 20px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .review-container {
    padding: 0 15px;
  }
  
  .review-title {
    font-size: 1.6rem;
  }
  
  .security-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .security-icon {
    width: 45px;
    height: 45px;
  }
  
  .payment-reliability {
    padding: 25px 20px;
  }
  
  .customer-support {
    padding: 20px;
  }
  
  .reliability-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .stat-box {
    padding: 15px;
    min-width: 100px;
  }
  
  .stat-box .stat-number {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
  }
  
  .benefit-icon i {
    font-size: 1.3rem;
  }
  
  .channel-item {
    min-width: auto;
    width: 100%;
  }
  
  .trust-indicator {
    min-width: auto;
    width: 90%;
    padding: 12px 15px;
  }
  
  .indicator-title {
    font-size: 0.8rem;
  }
  
  .indicator-subtitle {
    font-size: 0.7rem;
  }
}

/* Promotions and Benefits Section */
#promotions-benefits {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#promotions-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.promotions-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.promotions-main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

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

.promotions-description p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.promotion-types h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.type-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.type-item:hover {
  transform: translateY(-3px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

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

.type-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.type-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 600;
}

.type-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 0;
}

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

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

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

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
}

.promo-badge i {
  font-size: 0.8rem;
}

.bonus-system {
  background: rgba(255, 215, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 50px;
}

.bonus-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.bonus-text {
  flex: 1;
}

.bonus-text h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.bonus-text strong {
  color: #ffd700;
  font-weight: 700;
}

.bonus-text p {
  font-size: 1rem;
  color: #c0c0c0;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

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

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

.bonus-text a:hover {
  color: #ffed4e;
}

.bonus-types {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #333;
  color: #fff;
  font-weight: 500;
  min-width: 160px;
  transition: all 0.3s ease;
}

.bonus-item:hover {
  border-color: #ffd700;
  transform: translateX(5px);
}

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

.bonus-icon i {
  font-size: 0.9rem;
  color: #000;
}

.platform-advantages {
  margin-bottom: 50px;
}

.advantages-header h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.advantages-header strong {
  color: #ffd700;
}

.advantages-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #333;
}

.advantages-text {
  flex: 1;
}

.advantages-text p {
  font-size: 1rem;
  color: #c0c0c0;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

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

.advantages-text strong {
  color: #ffd700;
  font-weight: 700;
}

.lottery-types {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lottery-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  color: #ffd700;
  font-weight: 500;
  min-width: 140px;
}

.lottery-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.service-features {
  margin-bottom: 50px;
}

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

.feature-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border-radius: 15px;
  border: 1px solid #333;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.feature-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-header .feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-header h4 {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
  font-weight: 600;
}

.feature-body {
  padding: 20px;
}

.feature-body p {
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.5;
  margin: 0;
}

.feature-body strong {
  color: #ffd700;
  font-weight: 700;
}

.registration-process {
  background: rgba(76, 175, 80, 0.1);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.2);
  margin-bottom: 50px;
}

.process-header h3 {
  font-size: 1.4rem;
  color: #4CAF50;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

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

.process-header a:hover {
  color: #ffed4e;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid #4CAF50;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.step-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  font-size: 0.85rem;
  color: #b0b0b0;
  line-height: 1.4;
  margin: 0;
}

.final-cta {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #ffd700;
  text-align: center;
}

.cta-content h3 {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-large {
  padding: 15px 35px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .promotions-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promotions-title {
    font-size: 2rem;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .bonus-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .bonus-types {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .advantages-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .lottery-types {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #promotions-benefits {
    padding: 60px 0;
  }
  
  .promotions-title {
    font-size: 1.8rem;
  }
  
  .promotions-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .bonus-system {
    padding: 30px 25px;
  }
  
  .bonus-types {
    flex-direction: column;
  }
  
  .advantages-content {
    padding: 25px;
  }
  
  .lottery-types {
    flex-direction: column;
  }
  
  .registration-process {
    padding: 30px 25px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .final-cta {
    padding: 30px 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .promotions-container {
    padding: 0 15px;
  }
  
  .promotions-title {
    font-size: 1.6rem;
  }
  
  .type-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .type-icon {
    width: 45px;
    height: 45px;
  }
  
  .bonus-system {
    padding: 25px 20px;
  }
  
  .bonus-item {
    min-width: auto;
    width: 100%;
  }
  
  .advantages-content {
    padding: 20px;
  }
  
  .advantages-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .lottery-item {
    min-width: auto;
    width: 100%;
  }
  
  .feature-header {
    padding: 15px;
  }
  
  .feature-body {
    padding: 15px;
  }
  
  .registration-process {
    padding: 25px 15px;
  }
  
  .step-item {
    padding: 20px 15px;
  }
  
  .final-cta {
    padding: 25px 20px;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.footer-brand {
  max-width: 100%;
}

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

.footer-logo .brand-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  border-color: #ffd700;
}

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

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: block;
  position: relative;
}

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

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.footer-links a:hover::before {
  width: 6px;
}

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

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

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

.contact-item a {
  color: #c0c0c0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #ffd700;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.copyright {
  font-size: 0.85rem;
  color: #999;
}

.copyright p {
  margin: 0;
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #b0b0b0;
  background: rgba(255, 215, 0, 0.05);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.responsible-gaming {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
}

.responsible-text {
  font-size: 0.85rem;
  color: #ffc107;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.responsible-text i {
  color: #ffc107;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 3;
    text-align: center;
  }
  
  .footer-brand .footer-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo .brand-text {
    font-size: 1.5rem;
  }
  
  .footer-logo .brand-icon {
    font-size: 1.7rem;
  }
  
  .footer-description {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .contact-info {
    gap: 10px;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge-item {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
  
  .responsible-gaming {
    padding: 12px 15px;
  }
  
  .responsible-text {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .copyright {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  padding: 10px 15px;
  gap: 8px;
  z-index: 998;
  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: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

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

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

.sticky-btn span {
  transition: all 0.3s ease;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #ffffff;
  border: 1px solid #4CAF50;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  color: #ffffff;
}

.sticky-btn-register {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: #ffffff;
  border: 1px solid #2196F3;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
  color: #ffffff;
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  border: 1px solid #ffd700;
  position: relative;
}

.sticky-btn-credit::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: all 0.8s ease;
}

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

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  color: #000000;
}

/* Add pulse animation to credit button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.sticky-btn-credit {
  animation: pulse 2s infinite;
}

/* Body padding for sticky buttons */
body {
  padding-bottom: 75px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 8px 10px;
    gap: 6px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.7rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  body {
    padding-bottom: 66px;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 6px 8px;
    gap: 4px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.65rem;
    min-height: 45px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  body {
    padding-bottom: 57px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    font-size: 0.6rem;
    padding: 6px 3px;
    min-height: 40px;
  }
  
  .sticky-btn i {
    font-size: 0.85rem;
  }
  
  body {
    padding-bottom: 52px;
  }
}

/* Ensure sticky buttons are above other elements but below modals */
.sticky-buttons {
  z-index: 998;
}

/* Adjust for very small text on tiny screens */
@media (max-width: 320px) {
  .sticky-btn span {
    font-size: 0.55rem;
  }
  
  .sticky-btn {
    min-height: 38px;
    padding: 5px 2px;
  }
  
  body {
    padding-bottom: 48px;
  }
}

/* Login Section Styles */
#login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  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 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.login-wrapper {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

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

.login-form-container {
  margin-bottom: 30px;
}

.error-message {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

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

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

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

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.password-toggle {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

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

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

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

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

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

.checkbox-checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-checkmark::after {
  opacity: 1;
}

.checkbox-text {
  color: #b0b0b0;
  font-size: 0.9rem;
}

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

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

.login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-btn.loading .btn-text {
  opacity: 0;
}

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

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

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

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

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

.divider span {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
}

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

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

.login-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4CAF50;
  font-size: 0.8rem;
  background: rgba(76, 175, 80, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  #login-section {
    min-height: calc(100vh - 60px);
    padding: 15px;
  }
  
  .login-wrapper {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .security-badges {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 100%;
  }
  
  .login-wrapper {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .login-wrapper {
    padding: 20px 15px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .security-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* Register Section Styles */
#register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  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 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

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

.register-wrapper {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

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

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

.register-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
  margin: 0;
}

.register-form-container {
  margin-bottom: 30px;
}

.error-message {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

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

.success-message {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

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

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

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

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

.form-input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

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

.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 0.8rem;
  margin-top: 5px;
}

.field-help i {
  font-size: 0.75rem;
}

.terms-agreement {
  margin: 15px 0;
}

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

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

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

.checkbox-checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-checkmark::after {
  opacity: 1;
}

.checkbox-text {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.4;
}

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

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

.register-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.register-btn.loading .btn-text {
  opacity: 0;
}

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

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

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

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

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

.divider span {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
}

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

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

.register-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4CAF50;
  font-size: 0.8rem;
  background: rgba(76, 175, 80, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

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

.benefits-preview {
  text-align: center;
}

.benefits-preview h4 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #b0b0b0;
  font-size: 0.8rem;
  background: rgba(255, 215, 0, 0.05);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  #register-section {
    min-height: calc(100vh - 60px);
    padding: 15px;
  }
  
  .register-wrapper {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .security-badges {
    gap: 10px;
  }
  
  .benefits-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-container {
    max-width: 100%;
  }
  
  .register-wrapper {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 1rem;
  }
  
  .checkbox-text {
    font-size: 0.8rem;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .register-wrapper {
    padding: 20px 15px;
  }
  
  .register-title {
    font-size: 1.3rem;
  }
  
  .security-badge,
  .benefit-item {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* Hero Section */
#hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 100px 0 80px;
  text-align: center;
  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, 215, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.badge-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
}

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

/* Promotion Sections */
.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
}

.promotion-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.promotion-badge.first-deposit {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
}

.promotion-badge.cashback {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
  color: #fff;
}

.promotion-badge.referral {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #fff;
}

.promotion-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

/* Alternating Section Backgrounds */
#new-member-promotion {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

#first-deposit-promotion {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

#cashback-promotion {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

#referral-promotion {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.promotion-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.feature-text h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.feature-text p {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

.promotion-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

.cta-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Platform Summary Section */
#platform-summary {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
}

#platform-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

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

.summary-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.summary-description {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: justify;
}

.summary-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

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

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

.summary-cta {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-features {
    grid-template-columns: 1fr;
  }
  
  .hero-badges {
    gap: 20px;
  }
  
  .summary-features {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-container,
  .promotion-container,
  .summary-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  #hero-section {
    padding: 80px 0 60px;
  }
  
  .promotion-container {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .summary-title {
    font-size: 1.9rem;
  }
  
  .promotion-content {
    padding: 30px 25px;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .summary-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .summary-feature {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .summary-title {
    font-size: 1.7rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .cta-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .badge-item {
    padding: 15px;
    width: 100%;
    max-width: 200px;
  }
  
  .summary-description {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .summary-title {
    font-size: 1.5rem;
  }
  
  .promotion-content {
    padding: 20px 15px;
  }
  
  .promotion-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}