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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  padding-right: 20px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

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

.secondary-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

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

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

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 24px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px 16px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.header {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  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-brand {
  flex-shrink: 0;
}

.brand-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-link:hover {
  transform: scale(1.02);
}

.brand-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 30px;
}

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

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

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

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

.header-cta-desktop {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  text-decoration: none;
  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);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

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

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

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

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

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

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

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 80px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  margin: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }
  
  .nav-desktop {
    gap: 20px;
    margin-right: 20px;
  }
  
  .brand-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .header-cta-desktop {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-container {
    padding: 0 16px;
  }
  
  .brand-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  .brand-name {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    max-width: 280px;
    padding: 16px;
  }
  
  .mobile-nav {
    margin-top: 70px;
  }
  
  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    margin: 16px;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

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

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 100%);
  padding: 80px 0;
  position: relative;
}

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

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

.about-text {
  padding-right: 20px;
}

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  color: #e0e0e0;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

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

.about-image {
  position: relative;
}

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

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-highlight {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-highlight:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-highlight:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

.feature-highlight h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

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

.feature-highlight p strong {
  color: #ffd700;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .feature-highlight {
    padding: 28px 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 1.6rem;
  }
  
  .feature-highlight h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 16px;
  }
  
  .about-section {
    padding: 50px 0;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-highlight {
    padding: 24px 16px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 1.4rem;
  }
  
  .feature-highlight h3 {
    font-size: 1.2rem;
  }
  
  .feature-highlight p {
    font-size: 0.95rem;
  }
}

/* Membership Section */
.membership-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
}

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

.membership-header {
  text-align: center;
  margin-bottom: 60px;
}

.membership-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.membership-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.membership-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.info-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.info-card p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.link-highlight:hover {
  color: #ffed4a;
  text-decoration: none;
}

.membership-image {
  position: relative;
}

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

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

/* Benefits Section */
.benefits-section {
  margin-bottom: 60px;
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.benefit-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

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

.benefit-icon {
  font-size: 1.2rem;
  color: #ffd700;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Security Info */
.security-info {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

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

.security-text h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.security-text p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.security-text p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.security-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.02);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .membership-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .membership-title {
    font-size: 2.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .security-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .membership-section {
    padding: 60px 0;
  }
  
  .membership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .membership-title {
    font-size: 1.9rem;
  }
  
  .membership-subtitle {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .security-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .membership-container {
    padding: 0 16px;
  }
  
  .membership-section {
    padding: 50px 0;
  }
  
  .membership-title {
    font-size: 1.7rem;
  }
  
  .membership-subtitle {
    font-size: 1rem;
  }
  
  .info-card {
    padding: 24px;
  }
  
  .benefits-title {
    font-size: 1.6rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .benefit-content {
    text-align: center;
  }
  
  .security-info {
    padding: 30px 20px;
  }
  
  .security-text h3 {
    font-size: 1.4rem;
  }
  
  .security-text p {
    font-size: 0.95rem;
  }
}

/* Support Section */
.support-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #16213e 50%, #1a1a2e 100%);
  padding: 80px 0;
  position: relative;
}

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

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

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

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

.support-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffb800, #ffd700);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.contact-icon i {
  font-size: 1.8rem;
  color: #000;
}

.contact-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.contact-card p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-card p strong {
  color: #ffd700;
  font-weight: 600;
}

.support-image {
  position: relative;
}

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

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

/* Services Grid */
.services-grid {
  margin-bottom: 60px;
}

.services-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

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

.service-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.service-item:hover::after {
  transform: translateX(100%);
}

.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.service-icon i {
  font-size: 1.4rem;
  color: #000;
}

.service-item h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-item p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-item p strong {
  color: #ffd700;
  font-weight: 600;
}

/* Additional Services */
.additional-services {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 45px;
}

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

.additional-text h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.additional-text p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: scale(1.05);
}

.contact-method i {
  color: #ffd700;
  font-size: 1.2rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .support-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .support-title {
    font-size: 2.1rem;
  }
  
  .service-items {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  .additional-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 60px 0;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .support-title {
    font-size: 1.9rem;
  }
  
  .support-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-card {
    padding: 30px;
  }
  
  .services-title {
    font-size: 1.6rem;
  }
  
  .service-items {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .additional-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .support-container {
    padding: 0 16px;
  }
  
  .support-section {
    padding: 50px 0;
  }
  
  .support-title {
    font-size: 1.7rem;
  }
  
  .support-subtitle {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 25px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.6rem;
  }
  
  .services-title {
    font-size: 1.5rem;
  }
  
  .service-items {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    padding: 25px 20px;
  }
  
  .additional-services {
    padding: 30px 20px;
  }
  
  .additional-text h3 {
    font-size: 1.6rem;
  }
  
  .additional-text p {
    font-size: 0.95rem;
  }
  
  .contact-method {
    padding: 12px 16px;
  }
}

/* Lottery Section */
.lottery-section {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f3460 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
}

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

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

.lottery-header {
  text-align: center;
  margin-bottom: 60px;
}

.lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lottery-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.lottery-image {
  position: relative;
}

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

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

.lottery-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lottery-highlight {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
}

.lottery-highlight:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.highlight-icon i {
  font-size: 1.6rem;
  color: #000;
}

.lottery-highlight h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.lottery-highlight p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.7;
}

.lottery-highlight p strong {
  color: #ffd700;
  font-weight: 600;
}

/* Features Section */
.features-section {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.main-feature {
  text-align: center;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.main-feature h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.main-feature p strong {
  color: #ffd700;
  font-weight: 600;
}

.payout-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  border: 2px solid #ffd700;
}

.rate-number {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.rate-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

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

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

.feature-card h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.feature-card p strong {
  color: #ffd700;
  font-weight: 600;
}

/* Betting Options */
.betting-options {
  margin-bottom: 60px;
}

.options-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.option-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: scale(1.05);
}

.option-item i {
  font-size: 1.3rem;
  color: #ffd700;
}

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

/* Additional Services */
.additional-services {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

.service-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

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

/* Lottery Types */
.lottery-types {
  margin-bottom: 60px;
}

.types-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.type-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.type-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

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

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

.type-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.type-card p {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Conclusion Section */
.conclusion-section {
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.conclusion-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.conclusion-content p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.backlink:hover {
  color: #ffed4a;
  text-decoration: none;
}

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

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-btn.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-content {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 2.2rem;
  }
  
  .features-section {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .main-feature {
    grid-column: 1 / -1;
  }
  
  .types-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .lottery-section {
    padding: 60px 0;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .lottery-subtitle {
    font-size: 1.1rem;
  }
  
  .features-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .main-feature {
    grid-column: auto;
  }
  
  .rate-number {
    font-size: 2.5rem;
  }
  
  .options-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .types-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 16px;
  }
  
  .lottery-section {
    padding: 50px 0;
  }
  
  .lottery-title {
    font-size: 1.8rem;
  }
  
  .lottery-subtitle {
    font-size: 1rem;
  }
  
  .lottery-highlight {
    padding: 25px;
  }
  
  .options-title, .types-title {
    font-size: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
  }
  
  .additional-services, .conclusion-section {
    padding: 30px 20px;
  }
  
  .rate-number {
    font-size: 2rem;
  }
  
  .action-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Credibility Section */
.credibility-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0;
  position: relative;
}

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

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

.credibility-header {
  text-align: center;
  margin-bottom: 60px;
}

.credibility-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credibility-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.credibility-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.credibility-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.info-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffd700, transparent);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.info-section:hover::after {
  transform: translateY(100%);
}

.info-section:hover {
  transform: translateY(-8px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.info-section:hover .info-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.info-icon i {
  font-size: 1.8rem;
  color: #000;
}

.info-section h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.info-section p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.7;
}

.info-section p strong {
  color: #ffd700;
  font-weight: 600;
}

.credibility-image {
  position: relative;
}

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

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

/* Reviews Section */
.reviews-section {
  margin-bottom: 60px;
}

.reviews-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.08);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.review-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.review-icon i {
  font-size: 1.4rem;
  color: #000;
}

.review-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.review-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-card p strong {
  color: #ffd700;
  font-weight: 600;
}

.review-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.review-status.positive {
  background: rgba(0, 255, 127, 0.1);
  color: #00ff7f;
}

.review-status.neutral {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.review-status i {
  font-size: 0.9rem;
}

/* System Reliability */
.system-reliability {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 45px;
  margin-bottom: 60px;
}

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

.reliability-text h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reliability-text p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

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

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

.reliability-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: scale(1.05);
}

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

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

/* Issues Handling */
.issues-handling {
  margin-bottom: 60px;
}

.issues-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.issue-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

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

.issue-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.issue-icon.warning {
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
}

.issue-icon.security {
  background: linear-gradient(135deg, #00a8ff 0%, #0078d0 100%);
}

.issue-icon i {
  font-size: 1.4rem;
  color: #000;
}

.issue-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.issue-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.issue-card p strong {
  color: #ffd700;
  font-weight: 600;
}

/* Final Verdict */
.final-verdict {
  background: rgba(0, 255, 127, 0.05);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: 24px;
  padding: 45px;
  margin-bottom: 60px;
}

.verdict-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #00ff7f 0%, #00cc66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verdict-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.verdict-content p:last-of-type {
  margin-bottom: 30px;
}

.verdict-content p strong {
  color: #ffd700;
  font-weight: 600;
}

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

.link-highlight:hover {
  color: #ffed4a;
  text-decoration: none;
}

.verdict-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.summary-item.positive {
  background: rgba(0, 255, 127, 0.1);
  color: #00ff7f;
}

.summary-item i {
  font-size: 1rem;
}

/* User Experience */
.user-experience {
  margin-bottom: 40px;
}

.experience-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.experience-content p strong {
  color: #ffd700;
  font-weight: 600;
}

.channel-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.channel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.channel-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: scale(1.05);
}

.channel-item i {
  font-size: 1.3rem;
  color: #ffd700;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .credibility-content {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .credibility-title {
    font-size: 2.1rem;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .reliability-content {
    gap: 40px;
  }
  
  .issues-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .credibility-section {
    padding: 60px 0;
  }
  
  .credibility-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .credibility-title {
    font-size: 1.9rem;
  }
  
  .credibility-subtitle {
    font-size: 1.1rem;
  }
  
  .info-section {
    padding: 30px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .reliability-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .reliability-features {
    grid-template-columns: 1fr;
  }
  
  .channel-options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .credibility-container {
    padding: 0 16px;
  }
  
  .credibility-section {
    padding: 50px 0;
  }
  
  .credibility-title {
    font-size: 1.7rem;
  }
  
  .credibility-subtitle {
    font-size: 1rem;
  }
  
  .info-section {
    padding: 25px;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
  }
  
  .info-icon i {
    font-size: 1.6rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 25px 20px;
  }
  
  .system-reliability, .final-verdict {
    padding: 30px 20px;
  }
  
  .issue-card {
    padding: 25px;
  }
  
  .verdict-summary {
    grid-template-columns: 1fr;
  }
  
  .channel-options {
    grid-template-columns: 1fr;
  }
  
  .experience-title, .reviews-title, .issues-title {
    font-size: 1.6rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 50%, #000000 100%);
  padding: 60px 0 0;
  position: relative;
  margin-top: 80px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

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

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

.footer-section {
  color: #ffffff;
}

.footer-brand {
  padding-right: 20px;
}

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

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

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

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

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

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

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffd700;
}

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

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-link i {
  color: #ffd700;
  width: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer Security */
.footer-security {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-bottom: 30px;
}

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

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

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

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

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

.footer-copyright {
  color: #cccccc;
}

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

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: #999999 !important;
  margin-top: 5px !important;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-content .footer-section:last-child {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .security-badges {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-brand-name {
    font-size: 1.8rem;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .security-badges {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    margin-bottom: 25px;
  }
  
  .footer-brand-name {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .security-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .security-badge {
    padding: 12px 16px;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    font-size: 0.75rem !important;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
}

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

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

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

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

.login-btn {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: linear-gradient(135deg, #5ba0f2 0%, #4a90e2 100%);
  transform: translateY(-2px);
}

.register-btn {
  background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn:hover {
  background: linear-gradient(135deg, #6cc76c 0%, #5cb85c 100%);
  transform: translateY(-2px);
}

.credit-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
}

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

.sticky-btn i {
  font-size: 1rem;
  flex-shrink: 0;
}

.sticky-btn span {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 14px 8px;
    font-size: 0.85rem;
    gap: 6px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 12px 6px;
    font-size: 0.8rem;
    gap: 4px;
  }
  
  .sticky-btn i {
    font-size: 0.85rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .sticky-btn span {
    display: none;
  }
  
  .sticky-btn {
    padding: 16px 8px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
}

/* Add bottom padding to main content to prevent overlap */
body {
  padding-bottom: 70px;
}

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

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

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

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

.login-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

.login-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Error Message */
.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

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

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

/* Form Styles */
.login-form {
  text-align: left;
}

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

.form-label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.input-group i {
  position: absolute;
  left: 16px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 1;
}

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

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

.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.error {
  border-color: #ff6b6b;
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

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

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
}

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

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

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

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

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

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

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

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

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.btn-loading {
  display: none;
}

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

.login-btn.loading .btn-loading {
  display: block;
  position: absolute;
}

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

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

.register-link i {
  font-size: 0.95rem;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 0 16px;
  }
  
  .login-box {
    padding: 30px 24px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .remember-me {
    justify-content: center;
  }
  
  .forgot-password {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .login-box {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 44px;
  }
  
  .login-btn, .register-link {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .login-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
}

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

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

.register-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

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

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

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

.register-content {
  text-align: center;
}

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

.register-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Messages */
.error-message, .success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  animation: slideIn 0.3s ease;
}

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

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

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

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

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

/* Form Styles */
.register-form {
  text-align: left;
}

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

.form-label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.input-group i {
  position: absolute;
  left: 16px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 1;
}

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

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

.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.error {
  border-color: #ff6b6b;
}

.form-input.success {
  border-color: #28a745;
}

.field-error {
  display: block;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 16px;
}

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

.field-hint i {
  font-size: 0.8rem;
  color: #cccccc;
}

/* Terms Group */
.terms-group {
  margin-bottom: 25px;
}

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

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

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

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

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

.terms-text {
  flex: 1;
}

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

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

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #6cc76c 0%, #5cb85c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
}

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

.btn-loading {
  display: none;
}

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

.register-btn.loading .btn-loading {
  display: block;
  position: absolute;
}

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

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

.login-link i {
  font-size: 0.95rem;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 0 16px;
  }
  
  .register-box {
    padding: 30px 24px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .register-box {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 16px 12px 44px;
  }
  
  .register-btn, .login-link {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .terms-checkbox {
    font-size: 0.8rem;
  }
}

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

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

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

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

/* Promotion Sections */
.promotion-section {
  padding: 60px 0;
  position: relative;
}

.promotion-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

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

.promotion-card.main-promo {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.08);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-badge.deposit {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
}

.promo-badge.cashback {
  background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
  color: #ffffff;
}

.promo-badge.referral {
  background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
  color: #000;
}

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

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

.promo-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.highlight-percent {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.highlight-text {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.promo-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

.promo-features i {
  color: #ffd700;
  margin-top: 2px;
  flex-shrink: 0;
}

.promo-features i.fa-info-circle {
  color: #4a90e2;
}

.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.promo-cta-btn.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
  color: #000;
}

.promo-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

.promo-cta-btn.secondary {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
}

.promo-cta-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
  background: linear-gradient(135deg, #5ba0f2 0%, #4a90e2 100%);
}

.promo-cta-btn.tertiary {
  background: linear-gradient(135deg, #5cb85c 0%, #449d44 100%);
  color: #ffffff;
}

.promo-cta-btn.tertiary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
  background: linear-gradient(135deg, #6cc76c 0%, #5cb85c 100%);
}

.promo-cta-btn.quaternary {
  background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
  color: #000;
}

.promo-cta-btn.quaternary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 173, 78, 0.3);
  background: linear-gradient(135deg, #f2c572 0%, #f0ad4e 100%);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .highlight-amount, .highlight-percent {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-container {
    padding: 0 16px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .highlight-amount, .highlight-percent {
    font-size: 2.5rem;
  }
  
  .highlight-text {
    font-size: 1.1rem;
  }
  
  .promo-features li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .promo-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .promo-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .promo-highlight {
    flex-direction: column;
    gap: 5px;
    padding: 15px;
  }
  
  .highlight-amount, .highlight-percent {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
  
  .promo-features li {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .promo-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}