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

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

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

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
  z-index: 0;
}

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

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

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.feature-text {
  font-size: 0.95rem;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #000;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay-icon {
  color: #ffd700;
  font-size: 1.2rem;
}

.overlay-text {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 600;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-overlay {
    top: 10px;
    right: 10px;
    padding: 10px 15px;
  }
  
  .overlay-text {
    font-size: 0.8rem;
  }
}

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

.main-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  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%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  transition: width 0.3s ease;
}

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

.nav-icon {
  font-size: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff8e8e, #ffed4e);
}

.cta-icon {
  font-size: 1rem;
}

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

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

.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #ffd700;
}

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

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

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

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

.mobile-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

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

.mobile-logo-icon {
  font-size: 1.5rem;
  color: #ffd700;
}

.mobile-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e0e0e0;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #e0e0e0;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

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

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

.mobile-nav-item {
  margin-bottom: 10px;
}

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

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

.mobile-nav-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-cta-item {
  margin-top: 30px;
  padding: 0 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mobile-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff8e8e, #ffed4e);
}

.mobile-cta-icon {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 20px;
  }
  
  .desktop-nav {
    gap: 30px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    font-size: 1.7rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-nav {
    padding: 20px 0;
  }
  
  .mobile-nav-link {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    margin-top: 20px;
  }
  
  .mobile-cta-button {
    padding: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
  
  .burger-line {
    width: 22px;
  }
  
  .mobile-menu-header {
    padding: 12px 15px;
  }
  
  .mobile-logo-icon {
    font-size: 1.3rem;
  }
  
  .mobile-logo-text {
    font-size: 1.1rem;
  }
  
  .mobile-menu-close {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .mobile-nav-icon {
    font-size: 1.1rem;
  }
  
  .mobile-cta-item {
    padding: 0 15px;
  }
  
  .mobile-cta-button {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .mobile-cta-icon {
    font-size: 1.1rem;
  }
}

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

@media (max-width: 768px) {
  body {
    padding-top: 65px;
  }
}

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

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

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

.lottery-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  z-index: 0;
}

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

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

.section-title {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 2px;
}

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

.overview-text {
  space-y: 30px;
}

.overview-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.overview-paragraph strong {
  color: #ffd700;
  font-weight: 700;
}

.overview-features {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

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

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.feature-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.overview-image {
  position: relative;
  grid-column: 1 / -1;
  text-align: center;
}

.overview-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
}

.overlay-badge {
  background: rgba(255, 215, 0, 0.9);
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.overlay-badge-icon {
  font-size: 1rem;
}

.overlay-badge-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-overview-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .overview-content {
    gap: 60px;
    margin-bottom: 60px;
  }
  
  .overview-paragraph {
    font-size: 1.05rem;
  }
  
  .overview-features {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .lottery-overview-section {
    padding: 80px 0;
  }
  
  .lottery-overview-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .overview-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .overview-features {
    padding: 25px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature-icon {
    font-size: 1.2rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
  }
  
  .image-overlay {
    top: 20px;
    left: 20px;
  }
  
  .overlay-badge {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .lottery-overview-section {
    padding: 60px 0;
  }
  
  .lottery-overview-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .overview-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .overview-paragraph {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .overview-features {
    padding: 20px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon {
    font-size: 1.1rem;
  }
  
  .image-overlay {
    top: 15px;
    left: 15px;
  }
  
  .overlay-badge {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* Two Digit Lottery Section */
.two-digit-lottery-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.two-digit-lottery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  z-index: 0;
}

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

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

.section-title {
  font-size: 2.6rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #4ecdc4, #ffd700, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #4ecdc4, #ffd700, #ff6b6b);
  border-radius: 2px;
}

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

.lottery-description {
  space-y: 30px;
}

.description-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.description-paragraph strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

.description-paragraph .backlink-target:hover {
  color: #ff6b6b;
}

.lottery-image {
  position: relative;
}

.lottery-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(78, 205, 196, 0.2);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #000;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.advantages-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.advantages-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

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

.advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

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

.advantage-title {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.play-types-section {
  margin-bottom: 100px;
}

.play-types-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.play-types-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 2px;
}

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

.play-type-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.play-type-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.play-type-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.play-type-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.play-type-name {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 0;
}

.play-type-description {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.guarantee-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}

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

.guarantee-title {
  font-size: 2rem;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.guarantee-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-align: justify;
}

.guarantee-description strong {
  color: #ff6b6b;
  font-weight: 700;
}

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

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

.guarantee-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.guarantee-icon {
  font-size: 1.5rem;
  color: #4ecdc4;
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 1rem;
  color: #d0d0d0;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .two-digit-lottery-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .lottery-content {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .description-paragraph {
    font-size: 1.05rem;
  }
  
  .advantages-grid {
    gap: 30px;
  }
  
  .advantage-item {
    padding: 30px 25px;
  }
  
  .play-types-grid {
    gap: 25px;
  }
  
  .play-type-card {
    padding: 30px 20px;
  }
  
  .guarantee-section {
    padding: 50px;
  }
  
  .guarantee-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .two-digit-lottery-section {
    padding: 100px 0;
  }
  
  .two-digit-lottery-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .description-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .advantages-section {
    margin-bottom: 60px;
  }
  
  .advantages-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .advantage-item {
    padding: 25px 20px;
  }
  
  .advantage-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .advantage-icon {
    font-size: 1.5rem;
  }
  
  .advantage-title {
    font-size: 1.1rem;
  }
  
  .play-types-section {
    margin-bottom: 60px;
  }
  
  .play-types-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .play-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .play-type-card {
    padding: 25px 20px;
  }
  
  .play-type-icon {
    font-size: 2rem;
  }
  
  .play-type-name {
    font-size: 1.2rem;
  }
  
  .guarantee-section {
    padding: 40px;
  }
  
  .guarantee-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .guarantee-title {
    font-size: 1.7rem;
  }
  
  .guarantee-description {
    font-size: 1rem;
    text-align: left;
  }
  
  .image-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .two-digit-lottery-section {
    padding: 80px 0;
  }
  
  .two-digit-lottery-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .lottery-content {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .description-paragraph {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .advantages-title,
  .play-types-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .advantage-item {
    padding: 20px 15px;
  }
  
  .advantage-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .advantage-icon {
    font-size: 1.3rem;
  }
  
  .advantage-title {
    font-size: 1rem;
  }
  
  .play-type-card {
    padding: 20px 15px;
  }
  
  .play-type-icon {
    font-size: 1.8rem;
  }
  
  .play-type-name {
    font-size: 1.1rem;
  }
  
  .play-type-description {
    font-size: 0.9rem;
  }
  
  .guarantee-section {
    padding: 30px 20px;
  }
  
  .guarantee-title {
    font-size: 1.5rem;
  }
  
  .guarantee-description {
    font-size: 0.95rem;
  }
  
  .guarantee-feature {
    padding: 15px;
  }
  
  .guarantee-icon {
    font-size: 1.3rem;
  }
  
  .guarantee-text {
    font-size: 0.9rem;
  }
  
  .image-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* Online Lottery Guide Section */
.online-lottery-guide-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 30%, #2d1b69 70%, #1a1a1a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.online-lottery-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 107, 0.06) 0%, transparent 50%);
  z-index: 0;
}

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

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

.section-title {
  font-size: 2.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

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

.guide-text {
  space-y: 30px;
}

.guide-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.guide-paragraph strong {
  color: #ffd700;
  font-weight: 700;
}

.registration-link {
  color: #4ecdc4;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.registration-link:hover {
  color: #ff6b6b;
}

.guide-image {
  position: relative;
}

.guide-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.overlay-icon {
  color: #ffd700;
  font-size: 1.5rem;
}

.overlay-text {
  color: #e0e0e0;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps-section {
  margin-bottom: 100px;
}

.steps-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.steps-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 2px;
}

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

.step-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

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

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 1;
}

.step-content {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
}

.step-icon {
  position: relative;
  z-index: 1;
}

.step-icon i {
  font-size: 1.5rem;
  color: #4ecdc4;
}

.features-section {
  margin-bottom: 60px;
}

.features-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4ecdc4, #ffd700);
  border-radius: 2px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

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

.feature-card-title {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .online-lottery-guide-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .guide-content {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .guide-paragraph {
    font-size: 1.05rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .features-grid {
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .online-lottery-guide-section {
    padding: 100px 0;
  }
  
  .online-lottery-guide-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .guide-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .steps-section {
    margin-bottom: 60px;
  }
  
  .steps-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 25px 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .step-icon i {
    font-size: 1.3rem;
  }
  
  .features-section {
    margin-bottom: 40px;
  }
  
  .features-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-card-icon {
    font-size: 1.5rem;
  }
  
  .feature-card-title {
    font-size: 1.1rem;
  }
  
  .feature-card-description {
    font-size: 0.9rem;
  }
  
  .image-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }
  
  .overlay-icon {
    font-size: 1.3rem;
  }
  
  .overlay-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .online-lottery-guide-section {
    padding: 80px 0;
  }
  
  .online-lottery-guide-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .guide-content {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .guide-paragraph {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .steps-title,
  .features-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .step-item {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-title {
    font-size: 0.95rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
  
  .step-icon i {
    font-size: 1.2rem;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .feature-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .feature-card-icon {
    font-size: 1.4rem;
  }
  
  .feature-card-title {
    font-size: 1rem;
  }
  
  .feature-card-description {
    font-size: 0.85rem;
  }
  
  .image-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
  }
  
  .overlay-icon {
    font-size: 1.2rem;
  }
  
  .overlay-text {
    font-size: 0.9rem;
  }
}

/* Website Comparison Section */
.website-comparison-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2a1843 70%, #1a1a1a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.website-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
  z-index: 0;
}

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

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

.section-title {
  font-size: 2.4rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffd700);
  border-radius: 2px;
}

.comparison-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.intro-text {
  space-y: 30px;
}

.intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.intro-paragraph strong {
  color: #ff6b6b;
  font-weight: 700;
}

.intro-image {
  position: relative;
}

.intro-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 107, 0.2);
}

.trust-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #000;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.trust-icon {
  font-size: 1rem;
}

.trust-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quality-criteria {
  margin-bottom: 100px;
}

.criteria-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.criteria-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

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

.criteria-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.criteria-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.criteria-icon-wrapper {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.criteria-icon {
  font-size: 2rem;
  color: #000;
}

.criteria-name {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.criteria-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-quality {
  margin-bottom: 100px;
}

.service-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4ecdc4, #ffd700);
  border-radius: 2px;
}

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

.service-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-align: justify;
}

.service-paragraph strong {
  color: #4ecdc4;
  font-weight: 700;
}

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

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

.service-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.service-icon {
  font-size: 1.8rem;
  color: #4ecdc4;
  flex-shrink: 0;
  margin-top: 5px;
}

.service-feature-content {
  flex: 1;
}

.service-feature-title {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.service-feature-text {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
}

.comparison-section {
  margin-bottom: 100px;
}

.comparison-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.comparison-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 2px;
}

.comparison-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 50px;
  text-align: justify;
}

.comparison-paragraph strong {
  color: #ffd700;
  font-weight: 700;
}

.comparison-factors {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.factors-title {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: center;
}

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

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

.factor-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.factor-icon {
  font-size: 1.3rem;
  color: #ffd700;
  flex-shrink: 0;
}

.factor-text {
  font-size: 0.95rem;
  color: #d0d0d0;
  font-weight: 600;
}

.security-section {
  margin-bottom: 60px;
}

.security-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.security-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
  border-radius: 2px;
}

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

.security-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  text-align: justify;
}

.security-paragraph strong {
  color: #4ecdc4;
  font-weight: 700;
}

.login-link {
  color: #ff6b6b;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #ffd700;
}

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

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

.security-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.security-feature-icon {
  font-size: 2.2rem;
  color: #000;
}

.security-feature-title {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 12px;
}

.security-feature-description {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .website-comparison-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .comparison-intro {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .intro-paragraph {
    font-size: 1.05rem;
  }
  
  .criteria-grid {
    gap: 25px;
  }
  
  .criteria-card {
    padding: 30px 25px;
  }
  
  .service-content {
    gap: 40px;
  }
  
  .factors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .security-content {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .website-comparison-section {
    padding: 100px 0;
  }
  
  .website-comparison-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .comparison-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .intro-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .quality-criteria {
    margin-bottom: 60px;
  }
  
  .criteria-title,
  .service-title,
  .comparison-title,
  .security-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .criteria-card {
    padding: 25px 20px;
  }
  
  .criteria-icon-wrapper {
    width: 65px;
    height: 65px;
  }
  
  .criteria-icon {
    font-size: 1.7rem;
  }
  
  .criteria-name {
    font-size: 1.1rem;
  }
  
  .service-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-paragraph,
  .comparison-paragraph,
  .security-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .service-feature {
    padding: 20px;
  }
  
  .service-icon {
    font-size: 1.5rem;
  }
  
  .comparison-section {
    margin-bottom: 60px;
  }
  
  .comparison-factors {
    padding: 30px;
  }
  
  .factors-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .factor-item {
    padding: 15px;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .security-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .security-feature-icon {
    font-size: 1.8rem;
  }
  
  .trust-badge {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .website-comparison-section {
    padding: 80px 0;
  }
  
  .website-comparison-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .comparison-intro {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .intro-paragraph {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .criteria-title,
  .service-title,
  .comparison-title,
  .security-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .criteria-card {
    padding: 20px 15px;
  }
  
  .criteria-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .criteria-icon {
    font-size: 1.5rem;
  }
  
  .criteria-name {
    font-size: 1rem;
  }
  
  .criteria-description {
    font-size: 0.9rem;
  }
  
  .service-feature {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .service-icon {
    margin-top: 0;
  }
  
  .service-feature-title {
    font-size: 1rem;
  }
  
  .service-feature-text {
    font-size: 0.9rem;
  }
  
  .comparison-paragraph,
  .security-paragraph {
    font-size: 0.95rem;
  }
  
  .comparison-factors {
    padding: 20px;
  }
  
  .factors-title {
    font-size: 1.3rem;
  }
  
  .factor-item {
    padding: 12px;
  }
  
  .factor-icon {
    font-size: 1.2rem;
  }
  
  .factor-text {
    font-size: 0.9rem;
  }
  
  .security-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .security-feature-icon {
    font-size: 1.6rem;
  }
  
  .security-feature-title {
    font-size: 1.1rem;
  }
  
  .security-feature-description {
    font-size: 0.9rem;
  }
  
  .trust-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* Banking System Section */
.banking-system-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 30%, #2d1b69 60%, #1a1a1a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.banking-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  z-index: 0;
}

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

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

.section-title {
  font-size: 2.3rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffd700, #4ecdc4, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #4ecdc4, #ff6b6b);
  border-radius: 2px;
}

.banking-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.intro-text {
  space-y: 30px;
}

.intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.intro-paragraph strong {
  color: #ffd700;
  font-weight: 700;
}

.intro-image {
  position: relative;
}

.intro-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.ai-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 12px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

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

.ai-icon {
  font-size: 1rem;
}

.ai-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transaction-steps {
  margin-bottom: 100px;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.deposit-steps,
.withdraw-steps {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.deposit-steps {
  border-left: 4px solid #4ecdc4;
}

.withdraw-steps {
  border-left: 4px solid #ff6b6b;
}

.steps-title {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.steps-icon {
  font-size: 1.3rem;
}

.deposit-steps .steps-icon {
  color: #4ecdc4;
}

.withdraw-steps .steps-icon {
  color: #ff6b6b;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

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

.step-text {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.5;
}

.promotions-section {
  margin-bottom: 100px;
}

.promotions-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.promotions-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 2px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.promotion-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.promotion-icon {
  font-size: 2rem;
  color: #ffd700;
}

.promotion-name {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin: 0;
}

.promotion-content {
  position: relative;
  z-index: 1;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.promotion-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
  animation: bounce 2s infinite;
}

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

.services-section {
  margin-bottom: 60px;
}

.services-title {
  font-size: 2.2rem;
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 60px;
  position: relative;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #4ecdc4, #ffd700);
  border-radius: 2px;
}

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

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

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

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

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

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

.service-name {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banking-system-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .banking-intro {
    gap: 50px;
    margin-bottom: 80px;
  }
  
  .intro-paragraph {
    font-size: 1.05rem;
  }
  
  .steps-container {
    gap: 40px;
  }
  
  .deposit-steps,
  .withdraw-steps {
    padding: 30px;
  }
  
  .promotions-grid {
    gap: 30px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .services-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .banking-system-section {
    padding: 100px 0;
  }
  
  .banking-system-container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .banking-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .intro-paragraph {
    font-size: 1rem;
    text-align: left;
  }
  
  .transaction-steps {
    margin-bottom: 60px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .deposit-steps,
  .withdraw-steps {
    padding: 25px;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
  
  .step-item {
    padding: 15px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .step-text {
    font-size: 0.95rem;
  }
  
  .promotions-section {
    margin-bottom: 60px;
  }
  
  .promotions-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    font-size: 1.7rem;
  }
  
  .promotion-name {
    font-size: 1.2rem;
  }
  
  .promotion-description {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .services-section {
    margin-bottom: 40px;
  }
  
  .services-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .service-icon {
    font-size: 1.3rem;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
  
  .ai-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .banking-system-section {
    padding: 80px 0;
  }
  
  .banking-system-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .banking-intro {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .intro-paragraph {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .deposit-steps,
  .withdraw-steps {
    padding: 20px;
  }
  
  .steps-title {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .step-item {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .step-text {
    font-size: 0.9rem;
  }
  
  .promotions-title,
  .services-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .promotion-card {
    padding: 20px 15px;
  }
  
  .promotion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .promotion-icon {
    font-size: 1.5rem;
  }
  
  .promotion-name {
    font-size: 1.1rem;
  }
  
  .promotion-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .promotion-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .service-icon {
    font-size: 1.2rem;
  }
  
  .service-name {
    font-size: 0.95rem;
  }
  
  .service-description {
    font-size: 0.8rem;
  }
  
  .ai-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .promotion-badge {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* Main Footer */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  z-index: 0;
}

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

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

/* Footer Brand Section */
.footer-brand {
  max-width: 100%;
}

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  -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;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  font-size: 1rem;
  color: #4ecdc4;
  width: 18px;
  text-align: center;
}

.contact-text {
  font-size: 0.95rem;
  color: #d0d0d0;
  font-weight: 600;
}

/* Footer Links Section */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

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

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

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

.footer-nav-link:hover,
.footer-service-link:hover {
  color: #ffd700;
  transform: translateX(8px);
}

.footer-nav-icon,
.footer-service-icon {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-nav-link:hover .footer-nav-icon,
.footer-service-link:hover .footer-service-icon {
  color: #ffd700;
}

/* Footer Payment Section */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

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

.payment-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.payment-icon {
  font-size: 1.2rem;
  color: #4ecdc4;
}

.payment-text {
  font-size: 0.9rem;
  color: #d0d0d0;
  font-weight: 600;
}

.footer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-badge-icon {
  font-size: 0.9rem;
  color: #ffd700;
}

.feature-badge-text {
  font-size: 0.8rem;
  color: #e0e0e0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.footer-legal {
  display: flex;
  justify-content: flex-start;
}

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

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

.legal-link:hover {
  color: #ffd700;
}

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

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

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

.copyright-icon {
  font-size: 0.8rem;
}

.footer-warning {
  display: flex;
  justify-content: flex-end;
}

.warning-text {
  font-size: 0.8rem;
  color: #ff6b6b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.warning-icon {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-payment {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 25px;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-logo-icon {
    font-size: 1.7rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .footer-warning {
    justify-content: center;
  }
  
  .payment-methods {
    gap: 12px;
  }
  
  .payment-item {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 1.2rem;
  }
  
  .footer-logo-icon {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav,
  .footer-service-list {
    align-items: center;
  }
  
  .footer-nav-link,
  .footer-service-link {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-separator {
    display: none;
  }
  
  .copyright-text,
  .warning-text {
    font-size: 0.8rem;
  }
  
  .payment-item {
    padding: 8px 10px;
  }
  
  .payment-text {
    font-size: 0.85rem;
  }
  
  .feature-badge {
    justify-content: center;
    padding: 6px 10px;
  }
  
  .feature-badge-text {
    font-size: 0.75rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.6s ease;
  z-index: 0;
}

.sticky-btn-login::before {
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
}

.sticky-btn-register::before {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
}

.sticky-btn-bonus::before {
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

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

.sticky-btn-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.sticky-btn-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Button Colors */
.sticky-btn-login {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.05));
}

.sticky-btn-login:active {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(68, 160, 141, 0.1));
  transform: scale(0.98);
}

.sticky-btn-login .sticky-btn-icon {
  color: #4ecdc4;
}

.sticky-btn-login:active .sticky-btn-icon,
.sticky-btn-login:active .sticky-btn-text {
  color: #4ecdc4;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.05));
}

.sticky-btn-register:active {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 142, 142, 0.1));
  transform: scale(0.98);
}

.sticky-btn-register .sticky-btn-icon {
  color: #ff6b6b;
}

.sticky-btn-register:active .sticky-btn-icon,
.sticky-btn-register:active .sticky-btn-text {
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 237, 78, 0.08));
  position: relative;
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  z-index: 2;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.sticky-btn-bonus:active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 237, 78, 0.15));
  transform: scale(0.98);
}

.sticky-btn-bonus .sticky-btn-icon {
  color: #ffd700;
}

.sticky-btn-bonus:active .sticky-btn-icon,
.sticky-btn-bonus:active .sticky-btn-text {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-bottom-buttons {
    background: rgba(0, 0, 0, 0.98);
  }
  
  .sticky-btn {
    padding: 12px 8px;
    min-height: 65px;
  }
  
  .sticky-btn-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 60px;
  }
  
  .sticky-btn-icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }
  
  .sticky-btn-bonus::after {
    width: 6px;
    height: 6px;
    top: 3px;
    right: 3px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 55px;
  }
  
  .sticky-btn-icon {
    font-size: 1.1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.6rem;
  }
}

/* Prevent content overlap */
body {
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  body {
    margin-bottom: 65px;
  }
}

@media (max-width: 480px) {
  body {
    margin-bottom: 60px;
  }
}

@media (max-width: 360px) {
  body {
    margin-bottom: 55px;
  }
}

/* Hide sticky buttons when mobile menu is open */
body.mobile-menu-open .sticky-bottom-buttons {
  display: none;
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  z-index: 0;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

/* Logo Section */
.logo-container {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.login-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

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

/* Error Message */
.error-message {
  display: none;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  animation: shake 0.5s ease-in-out;
}

.error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.error-icon {
  color: #ff6b6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.error-text {
  color: #ff6b6b;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-label {
  color: #e0e0e0;
  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: #4ecdc4;
  font-size: 1.1rem;
  z-index: 2;
}

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

.form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-input:focus + .toggle-password {
  color: #4ecdc4;
}

.form-input::placeholder {
  color: #888;
  font-size: 0.95rem;
}

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

.toggle-password:hover {
  color: #4ecdc4;
}

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

.field-error:empty {
  min-height: 0;
}

/* Buttons */
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.login-btn:hover {
  background: linear-gradient(135deg, #5ed7d0, #4bb5a3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

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

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

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

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

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

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.register-btn-icon {
  font-size: 1rem;
}

/* Login Footer */
.login-footer {
  margin-top: 30px;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-icon {
  color: #4ecdc4;
  font-size: 1rem;
}

.security-text {
  color: #b0b0b0;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Loading State */
.login-btn.loading {
  pointer-events: none;
}

.login-btn.loading .login-btn-icon {
  animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 30px 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 15px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 20px 10px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 13px 13px 13px 40px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 13px;
    font-size: 1rem;
  }
  
  .toggle-password {
    right: 13px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 20px 15px;
  }
  
  .login-logo {
    width: 55px;
    height: 55px;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.95rem;
  }
  
  .toggle-password {
    right: 12px;
    font-size: 0.95rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  z-index: 0;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.register-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

/* Logo Section */
.logo-container {
  text-align: center;
  margin-bottom: 40px;
}

.register-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.register-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

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

/* Messages */
.error-message,
.success-message {
  display: none;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  animation: slideIn 0.5s ease-in-out;
}

.error-message {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.success-message {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.error-message.show,
.success-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.error-icon {
  color: #ff6b6b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.success-icon {
  color: #4ecdc4;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.error-text,
.success-text {
  font-size: 0.95rem;
  font-weight: 600;
}

.error-text {
  color: #ff6b6b;
}

.success-text {
  color: #4ecdc4;
}

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-label {
  color: #e0e0e0;
  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: #4ecdc4;
  font-size: 1.1rem;
  z-index: 2;
}

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

.form-input:focus {
  outline: none;
  border-color: #4ecdc4;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-input::placeholder {
  color: #888;
  font-size: 0.95rem;
}

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

.field-error:empty {
  min-height: 0;
}

/* Buttons */
.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

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

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

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

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

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

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 12px;
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(78, 205, 196, 0.1);
  border-color: rgba(78, 205, 196, 0.5);
  color: #4ecdc4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

.login-btn-icon {
  font-size: 1rem;
}

/* Register Footer */
.register-footer {
  margin-top: 30px;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}

.security-icon {
  color: #4ecdc4;
  font-size: 1rem;
}

.security-text {
  color: #b0b0b0;
  font-size: 0.85rem;
  font-weight: 600;
}

.terms-info {
  padding: 12px;
  background: rgba(255, 107, 107, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 107, 0.1);
}

.terms-text {
  color: #d0d0d0;
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
}

.terms-icon {
  color: #ff6b6b;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Loading State */
.register-btn.loading {
  pointer-events: none;
}

.register-btn.loading .register-btn-icon {
  animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 30px 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 14px 14px 42px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 15px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 10px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 13px 13px 13px 40px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 13px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-text {
    font-size: 0.8rem;
  }
  
  .terms-text {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 20px 15px;
  }
  
  .register-logo {
    width: 55px;
    height: 55px;
  }
  
  .register-title {
    font-size: 1.3rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.95rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b69 70%, #1a1a1a 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(78, 205, 196, 0.06) 0%, transparent 50%);
  z-index: 0;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  max-width: 1000px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
  }
}

.hero-icon {
  font-size: 2rem;
  color: #ffd700;
}

.hero-text {
  font-size: 1.3rem;
  color: #e0e0e0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
  border: 3px solid transparent;
}

.hero-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, #ff8e8e, #ffed4e);
}

.cta-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

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

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

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

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

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

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

.promotion-title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 800;
  color: #e0e0e0;
  margin-bottom: 30px;
  position: relative;
}

.promotion-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #4ecdc4, #ffd700);
  border-radius: 2px;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.promotion-badge:hover::before {
  left: 100%;
}

.promotion-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.commission-badge {
  background: linear-gradient(135deg, #4ecdc4, #5ed7d0);
  color: #000;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.deposit-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bonus-badge {
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.badge-text {
  position: relative;
  z-index: 1;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  width: 100%;
  max-width: 900px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 1.5rem;
  color: #4ecdc4;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.benefit-text {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

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

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(78, 205, 196, 0.4);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

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

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

.promotion-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.5);
  background: linear-gradient(135deg, #5ed7d0, #4bb5a3);
}

.btn-icon {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 80px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-text {
    font-size: 1.2rem;
  }
  
  .hero-cta-btn {
    font-size: 1.3rem;
    padding: 18px 35px;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .benefit-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 20px;
  }
  
  .hero-content {
    gap: 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .hero-highlight {
    padding: 15px 25px;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-text {
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  
  .promotion-section {
    padding: 80px 0;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    gap: 40px;
  }
  
  .benefits-list {
    gap: 20px;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .benefit-text {
    font-size: 1rem;
  }
  
  .promotion-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 50px;
  }
  
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
  
  .hero-highlight {
    padding: 12px 20px;
  }
  
  .hero-icon {
    font-size: 1.5rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .cta-icon {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-badge {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
  
  .benefit-icon {
    font-size: 1.3rem;
    margin-top: 0;
  }
  
  .benefit-text {
    font-size: 0.95rem;
  }
  
  .promotion-btn {
    font-size: 1rem;
    padding: 12px 25px;
    width: 100%;
    max-width: 300px;
  }
  
  .btn-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-text {
    font-size: 0.8rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .benefit-item {
    padding: 12px;
  }
  
  .benefit-text {
    font-size: 0.9rem;
  }
}