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

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

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

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

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

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

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

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

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

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

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  transform: translateY(-3px);
}

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

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

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

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

.feature-item span {
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e0e6ed;
  text-align: center;
}

.hero-image {
  position: relative;
  padding-left: 20px;
}

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

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

.hero-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stats-item {
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  min-width: 140px;
}

.stats-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 8px;
  display: block;
}

.stats-number {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 4px;
}

.stats-label {
  font-size: 0.9rem;
  color: #e0e6ed;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    padding-right: 0;
    order: 2;
  }
  
  .hero-image {
    padding-left: 0;
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .hero-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .stats-item {
    min-width: 120px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .feature-item {
    padding: 15px 10px;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .hero-overlay {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-item {
    min-width: 100px;
    padding: 12px;
  }
  
  .stats-number {
    font-size: 1.1rem;
  }
  
  .stats-label {
    font-size: 0.8rem;
  }
}

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

.main-header.scrolled {
  background: rgba(10, 14, 26, 0.98);
  border-bottom-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-link {
  color: #e0e6ed;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button i {
  font-size: 1.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;
  gap: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-nav-list li {
  margin-bottom: 30px;
}

.mobile-nav-link {
  color: #e0e6ed;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  padding: 15px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link: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.5s ease;
}

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

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

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

.mobile-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.mobile-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-list {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 65px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1.3rem;
    padding: 12px 15px;
  }
  
  .mobile-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

/* About Heng2525 Section */
.about-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0e1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.about-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e6ed;
}

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

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

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid #ffd700;
  transition: all 0.3s ease;
}

.feature-list-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.feature-list-item i {
  font-size: 1.3rem;
  color: #ffd700;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-list-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e6ed;
}

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

.about-footer {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e6ed;
  padding: 25px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.about-footer strong {
  color: #ffd700;
  font-weight: 700;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}

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

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

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid #ffd700;
  border-radius: 15px;
  min-width: 90px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.1);
}

.badge i {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 8px;
}

.badge span {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
  
  .about-image {
    position: static;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-text {
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .feature-list-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .feature-list-item:hover {
    transform: translateY(-5px);
  }
  
  .trust-badges {
    justify-content: center;
    gap: 10px;
  }
  
  .badge {
    min-width: 80px;
    padding: 15px;
  }
  
  .badge i {
    font-size: 1.5rem;
  }
  
  .badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-footer {
    font-size: 1rem;
    padding: 20px;
  }
  
  .feature-list-item {
    padding: 12px;
  }
  
  .feature-list-item i {
    font-size: 1.2rem;
  }
  
  .feature-list-item span {
    font-size: 0.9rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    min-width: 120px;
  }
}

/* Tips Section */
.tips-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.tips-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tips-header {
  text-align: center;
  margin-bottom: 40px;
}

.tips-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tips-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e6ed;
  max-width: 900px;
  margin: 0 auto;
}

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

.tips-content-body {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.tips-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tip-paragraph {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.tip-paragraph:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
  border-left-width: 6px;
}

.tip-paragraph p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e6ed;
  margin: 0;
}

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

.tips-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 120px;
}

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

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

.checklist-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 50px;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.checklist-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(10, 14, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  counter-increment: step-counter;
  position: relative;
}

.checklist-item::before {
  content: counter(step-counter);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.checklist {
  counter-reset: step-counter;
}

.checklist-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.checklist-item i {
  font-size: 1.5rem;
  color: #ffd700;
  margin-left: 25px;
  flex-shrink: 0;
}

.checklist-item span {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e6ed;
}

.checklist-item strong {
  color: #ffd700;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tips-content-body {
    gap: 40px;
  }
  
  .tips-title {
    font-size: 2.4rem;
  }
  
  .tips-intro {
    font-size: 1.1rem;
  }
  
  .tips-image {
    position: static;
  }
  
  .checklist-section {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .tips-section {
    padding: 80px 0;
  }
  
  .tips-content {
    gap: 50px;
  }
  
  .tips-content-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tips-text {
    order: 2;
  }
  
  .tips-image {
    order: 1;
  }
  
  .tips-title {
    font-size: 2rem;
  }
  
  .tips-intro {
    font-size: 1rem;
  }
  
  .tip-paragraph {
    padding: 20px;
  }
  
  .tip-paragraph p {
    font-size: 1rem;
  }
  
  .checklist-title {
    font-size: 1.8rem;
  }
  
  .checklist-section {
    padding: 30px;
  }
  
  .checklist-item {
    padding: 15px;
    padding-left: 35px;
  }
  
  .checklist-item::before {
    width: 35px;
    height: 35px;
    left: -10px;
    font-size: 1rem;
  }
  
  .checklist-item i {
    font-size: 1.3rem;
    margin-left: 20px;
  }
  
  .checklist-item span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tips-container {
    padding: 0 15px;
  }
  
  .tips-title {
    font-size: 1.8rem;
  }
  
  .tips-intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .tip-paragraph {
    padding: 15px;
  }
  
  .tip-paragraph p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .checklist-section {
    padding: 25px;
    border-radius: 20px;
  }
  
  .checklist-title {
    font-size: 1.6rem;
  }
  
  .checklist-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    padding-top: 30px;
  }
  
  .checklist-item::before {
    position: static;
    transform: none;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .checklist-item i {
    margin-left: 0;
    align-self: flex-start;
  }
  
  .checklist-item span {
    font-size: 0.95rem;
  }
}

/* Guide Section */
.guide-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0e1a 50%, #1a1f2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.guide-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.guide-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e6ed;
  max-width: 1000px;
  margin: 0 auto;
}

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

.link-highlight {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.link-highlight:hover {
  border-bottom-color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

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

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e6ed;
  margin: 0;
}

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

.step-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: rgba(255, 215, 0, 0.3);
  z-index: 1;
}

.guide-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

.safety-card,
.login-card {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.safety-card:hover,
.login-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
}

.safety-icon,
.login-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
}

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

.safety-description,
.login-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e6ed;
  margin-bottom: 20px;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.image-container {
  overflow: hidden;
  border-radius: 20px;
}

.guide-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-content {
    gap: 40px;
  }
  
  .guide-title {
    font-size: 2.4rem;
  }
  
  .guide-intro {
    font-size: 1.1rem;
  }
  
  .guide-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 80px 0;
  }
  
  .guide-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guide-steps {
    order: 2;
  }
  
  .guide-sidebar {
    order: 1;
  }
  
  .guide-title {
    font-size: 2rem;
  }
  
  .guide-intro {
    font-size: 1rem;
  }
  
  .step-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
  
  .step-icon {
    position: static;
    margin-top: 15px;
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .guide-sidebar {
    gap: 25px;
  }
  
  .safety-card,
  .login-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .guide-container {
    padding: 0 15px;
  }
  
  .guide-title {
    font-size: 1.8rem;
  }
  
  .guide-intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .step-card {
    padding: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .safety-card,
  .login-card {
    padding: 20px;
  }
  
  .safety-icon,
  .login-icon {
    font-size: 2rem;
  }
  
  .safety-title,
  .login-title {
    font-size: 1.2rem;
  }
  
  .safety-description,
  .login-description {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Betting Techniques Section */
.techniques-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.techniques-header {
  text-align: center;
  margin-bottom: 70px;
}

.techniques-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.techniques-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e6ed;
  max-width: 1000px;
  margin: 0 auto;
}

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

.techniques-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
}

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

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

.technique-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: rotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.technique-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  position: relative;
  z-index: 2;
}

.technique-icon i {
  font-size: 1.8rem;
  color: #0a0e1a;
}

.technique-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

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

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

.techniques-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

.legal-info-card,
.tips-list-card {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.legal-info-card:hover,
.tips-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
}

.legal-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.legal-title,
.tips-list-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

.legal-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e6ed;
  text-align: center;
}

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

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

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.tip-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.tip-item span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e6ed;
}

.tip-item strong {
  color: #ffd700;
  font-weight: 700;
}

.link-highlight {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.link-highlight:hover {
  border-bottom-color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.image-container {
  overflow: hidden;
  border-radius: 20px;
}

.techniques-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.conclusion-section {
  margin-top: 80px;
  text-align: center;
}

.conclusion-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 50px;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.conclusion-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e6ed;
  margin-bottom: 40px;
}

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

.conclusion-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.conclusion-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .techniques-content {
    gap: 40px;
  }
  
  .techniques-grid {
    gap: 25px;
  }
  
  .techniques-title {
    font-size: 2.4rem;
  }
  
  .techniques-intro {
    font-size: 1.1rem;
  }
  
  .techniques-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .techniques-section {
    padding: 80px 0;
  }
  
  .techniques-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
    order: 2;
  }
  
  .techniques-sidebar {
    order: 1;
  }
  
  .techniques-title {
    font-size: 2rem;
  }
  
  .techniques-intro {
    font-size: 1rem;
  }
  
  .technique-card {
    padding: 25px;
  }
  
  .technique-icon {
    width: 60px;
    height: 60px;
  }
  
  .technique-icon i {
    font-size: 1.5rem;
  }
  
  .technique-title {
    font-size: 1.2rem;
  }
  
  .technique-description {
    font-size: 0.95rem;
  }
  
  .legal-info-card,
  .tips-list-card {
    padding: 25px;
  }
  
  .conclusion-content {
    padding: 40px;
  }
  
  .conclusion-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .techniques-container {
    padding: 0 15px;
  }
  
  .techniques-title {
    font-size: 1.8rem;
  }
  
  .techniques-intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .technique-card {
    padding: 20px;
  }
  
  .technique-icon {
    width: 50px;
    height: 50px;
  }
  
  .technique-icon i {
    font-size: 1.3rem;
  }
  
  .technique-title {
    font-size: 1.1rem;
  }
  
  .technique-description {
    font-size: 0.9rem;
  }
  
  .legal-info-card,
  .tips-list-card {
    padding: 20px;
  }
  
  .legal-icon {
    font-size: 2rem;
  }
  
  .legal-title,
  .tips-list-title {
    font-size: 1.2rem;
  }
  
  .legal-description {
    font-size: 0.9rem;
  }
  
  .tip-item {
    padding: 12px;
  }
  
  .tip-item span {
    font-size: 0.9rem;
  }
  
  .conclusion-content {
    padding: 30px;
    border-radius: 20px;
  }
  
  .conclusion-title {
    font-size: 1.6rem;
  }
  
  .conclusion-description {
    font-size: 1rem;
  }
  
  .conclusion-cta {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Analysis Section */
.analysis-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0e1a 50%, #1a1f2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.analysis-header {
  text-align: center;
  margin-bottom: 70px;
}

.analysis-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.analysis-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e6ed;
  max-width: 1000px;
  margin: 0 auto;
}

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

.analysis-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.pros-cons-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pros-section,
.cons-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pros-header {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
  border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.cons-header {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(244, 67, 54, 0.1) 100%);
  border-bottom: 2px solid rgba(244, 67, 54, 0.3);
}

.pros-header i {
  color: #4caf50;
  font-size: 1.8rem;
}

.cons-header i {
  color: #f44336;
  font-size: 1.8rem;
}

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
}

.pros-content,
.cons-content {
  padding: 30px;
}

.pro-item,
.con-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.pro-item:hover,
.con-item:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.08);
}

.pro-item:last-child,
.con-item:last-child {
  margin-bottom: 0;
}

.pro-item i {
  color: #4caf50;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.con-item i {
  color: #f44336;
  font-size: 1.5rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.item-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 10px 0;
}

.item-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e6ed;
  margin: 0;
}

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

.link-highlight {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.link-highlight:hover {
  border-bottom-color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.analysis-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

.image-container {
  overflow: hidden;
  border-radius: 20px;
}

.analysis-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.risk-warning-card,
.important-info-card {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.risk-warning-card:hover,
.important-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
}

.warning-icon,
.info-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.warning-title,
.info-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.warning-description,
.info-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e6ed;
}

.warning-description strong,
.info-description strong {
  color: #ffd700;
  font-weight: 700;
}

.considerations-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
  padding: 60px;
  border-radius: 25px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.considerations-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.consideration-item {
  background: rgba(10, 14, 26, 0.6);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

.consideration-item i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.consideration-item h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.consideration-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e6ed;
}

.consideration-item strong {
  color: #ffd700;
  font-weight: 700;
}

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

.summary-card {
  background: rgba(10, 14, 26, 0.8);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-3px);
}

.advantages {
  border-color: rgba(76, 175, 80, 0.4);
}

.disadvantages {
  border-color: rgba(244, 67, 54, 0.4);
}

.warnings {
  border-color: rgba(255, 193, 7, 0.4);
}

.summary-card i {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.advantages i {
  color: #4caf50;
}

.disadvantages i {
  color: #f44336;
}

.warnings i {
  color: #ffc107;
}

.summary-card h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.summary-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-card li {
  font-size: 0.95rem;
  color: #e0e6ed;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.summary-card li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .analysis-content {
    gap: 40px;
  }
  
  .analysis-title {
    font-size: 2.4rem;
  }
  
  .analysis-intro {
    font-size: 1.1rem;
  }
  
  .consideration-grid,
  .summary-points {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .analysis-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .analysis-section {
    padding: 80px 0;
  }
  
  .analysis-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .pros-cons-container {
    order: 2;
  }
  
  .analysis-sidebar {
    order: 1;
  }
  
  .analysis-title {
    font-size: 2rem;
  }
  
  .analysis-intro {
    font-size: 1rem;
  }
  
  .pros-cons-container {
    gap: 40px;
  }
  
  .pro-item,
  .con-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .pro-item:hover,
  .con-item:hover {
    transform: translateY(-5px);
  }
  
  .considerations-section {
    padding: 40px;
  }
  
  .considerations-title {
    font-size: 1.8rem;
  }
  
  .consideration-item {
    padding: 25px;
  }
  
  .summary-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .analysis-container {
    padding: 0 15px;
  }
  
  .analysis-title {
    font-size: 1.8rem;
  }
  
  .analysis-intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .section-header {
    padding: 20px 25px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .pros-content,
  .cons-content {
    padding: 25px;
  }
  
  .pro-item,
  .con-item {
    padding: 15px;
  }
  
  .item-content h4 {
    font-size: 1.1rem;
  }
  
  .item-content p {
    font-size: 0.95rem;
  }
  
  .risk-warning-card,
  .important-info-card {
    padding: 25px;
  }
  
  .warning-icon,
  .info-icon {
    font-size: 2rem;
  }
  
  .warning-title,
  .info-title {
    font-size: 1.2rem;
  }
  
  .warning-description,
  .info-description {
    font-size: 0.9rem;
  }
  
  .considerations-section {
    padding: 30px;
    border-radius: 20px;
  }
  
  .considerations-title {
    font-size: 1.6rem;
  }
  
  .consideration-item {
    padding: 20px;
  }
  
  .consideration-item i {
    font-size: 2rem;
  }
  
  .consideration-item h4 {
    font-size: 1.2rem;
  }
  
  .consideration-item p {
    font-size: 0.95rem;
  }
  
  .summary-card {
    padding: 18px;
  }
  
  .summary-card i {
    font-size: 1.6rem;
  }
  
  .summary-card h4 {
    font-size: 1.1rem;
  }
  
  .summary-card li {
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b8c2d1;
  margin-bottom: 30px;
}

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

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 600;
}

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

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

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

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

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8c2d1;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(10px);
}

.footer-link i {
  font-size: 1.1rem;
  width: 18px;
  color: rgba(255, 215, 0, 0.7);
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid #ffd700;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
}

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

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

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

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

.social-link:hover {
  background: #ffd700;
  color: #0a0e1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 40px 0;
  background: rgba(10, 14, 26, 0.5);
}

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

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

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

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

.separator {
  color: rgba(255, 215, 0, 0.5);
  font-weight: 300;
}

.copyright {
  text-align: center;
}

.copyright p {
  color: #b8c2d1;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 15px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 20px;
}

.age-restriction i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .about-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-features {
    justify-content: center;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .age-restriction {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-link:hover {
    transform: translateY(-3px);
  }
  
  .contact-item:hover {
    transform: translateY(-3px);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    padding: 30px 0;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .main-footer {
    padding: 50px 0 0;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .footer-title {
    font-size: 1.3rem;
  }
  
  .footer-link {
    font-size: 0.95rem;
    padding: 6px 0;
  }
  
  .contact-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-item span {
    font-size: 0.95rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .copyright p {
    font-size: 0.9rem;
  }
  
  .legal-link {
    font-size: 0.9rem;
  }
  
  .age-restriction {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .feature-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  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: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.sticky-btn:active::before {
  transform: translateX(100%);
}

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

.sticky-btn span {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  text-align: center;
  transition: all 0.3s ease;
}

/* Individual button styles */
.login-btn {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(25, 118, 210, 0.8) 100%);
}

.login-btn:hover,
.login-btn:active {
  background: linear-gradient(135deg, rgba(33, 150, 243, 1) 0%, rgba(25, 118, 210, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.register-btn {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(67, 160, 71, 0.8) 100%);
}

.register-btn:hover,
.register-btn:active {
  background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(67, 160, 71, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.credit-btn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 193, 7, 0.9) 100%);
  color: #0a0e1a;
}

.credit-btn:hover,
.credit-btn:active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 193, 7, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  color: #0a0e1a;
}

.credit-btn i,
.credit-btn span {
  color: #0a0e1a;
}

/* Pulse animation for credit button */
.credit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 215, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2s infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  50% {
    width: 40px;
    height: 40px;
    opacity: 0.7;
  }
  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

@media (max-width: 320px) {
  .sticky-btn {
    padding: 6px 2px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

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

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

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

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

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

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

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

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

.login-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 30px 100px rgba(255, 215, 0, 0.1);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  color: #ff5252;
  font-size: 0.95rem;
  margin-bottom: 25px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

.form-label i {
  font-size: 1.1rem;
  width: 18px;
}

.form-input {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.form-input.error {
  border-color: #ff5252;
  background: rgba(244, 67, 54, 0.05);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.input-error {
  display: block;
  color: #ff5252;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  font-family: 'Sarabun', sans-serif;
}

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

.login-btn {
  width: 100%;
  height: 55px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  border: none;
  border-radius: 15px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

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

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

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

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

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

.register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  color: #ffd700;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.register-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

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

.login-footer {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 25px;
}

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

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #b8c2d1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-page-section {
    padding: 80px 15px 30px;
  }
  
  .login-card {
    padding: 40px 30px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-page-section {
    padding: 70px 10px 20px;
  }
  
  .login-card {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input,
  .login-btn {
    height: 50px;
  }
  
  .security-badges {
    gap: 15px;
  }
  
  .security-badge {
    font-size: 0.8rem;
  }
  
  .security-badge i {
    font-size: 1.1rem;
  }
}

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

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

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

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

.register-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 30px 100px rgba(255, 215, 0, 0.1);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  color: #4caf50;
  font-size: 0.95rem;
  margin-bottom: 25px;
  animation: slideIn 0.5s ease-in-out;
}

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

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

.error-message {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  color: #ff5252;
  font-size: 0.95rem;
  margin-bottom: 25px;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
}

.form-label i {
  font-size: 1.1rem;
  width: 18px;
}

.form-input {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.form-input.error {
  border-color: #ff5252;
  background: rgba(244, 67, 54, 0.05);
}

.form-input.success {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.05);
}

.input-error {
  display: block;
  color: #ff5252;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 20px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 500;
}

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

.register-btn {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  border: none;
  border-radius: 15px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

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

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

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

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

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

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

.login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 15px;
  color: #ffd700;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

.register-footer {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 25px;
}

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

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #b8c2d1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-page-section {
    padding: 80px 15px 30px;
  }
  
  .register-card {
    padding: 40px 30px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-page-section {
    padding: 70px 10px 20px;
  }
  
  .register-card {
    padding: 35px 25px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input,
  .register-btn {
    height: 55px;
  }
  
  .form-input {
    font-size: 1rem;
  }
  
  .security-badges {
    gap: 15px;
  }
  
  .security-badge {
    font-size: 0.8rem;
  }
  
  .security-badge i {
    font-size: 1.1rem;
  }
}

/* Promotion Page Styles */

/* Hero Section */
.promotion-hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 45px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

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

/* Promotion Sections */
.promotion-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0e1a 50%, #1a1f2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.promotion-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: rotate 15s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.promotion-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

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

.vip-card {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

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

.vip-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ff8f00 100%);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.promotion-icon i {
  font-size: 2rem;
  color: #0a0e1a;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 2;
}

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

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
  border-left-width: 6px;
}

.feature-item i {
  font-size: 1.4rem;
  color: #ffd700;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e6ed;
  font-weight: 500;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 35px;
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.promotion-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.vip-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e1a;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.vip-cta:hover {
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

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

/* Promotion Footer */
.promotion-footer-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 60px 0;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

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

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

.footer-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e6ed;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px;
  background: rgba(10, 14, 26, 0.6);
  border: 2px solid #ffd700;
  border-radius: 20px;
  min-width: 150px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

.badge span {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-card {
    padding: 40px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .promotion-hero {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-card {
    padding: 30px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  .footer-badges {
    gap: 20px;
  }
  
  .badge {
    min-width: 120px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container,
  .footer-container {
    padding: 0 15px;
  }
  
  .promotion-hero {
    padding: 100px 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 25px;
    border-radius: 20px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item span {
    font-size: 1rem;
  }
  
  .promotion-cta {
    padding: 15px 28px;
    font-size: 1rem;
  }
  
  .footer-text {
    font-size: 1.1rem;
  }
  
  .footer-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge {
    min-width: 200px;
  }
  
  .badge i {
    font-size: 2rem;
  }
  
  .badge span {
    font-size: 0.95rem;
  }
}