/* Base Reset and Dark Theme Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b35;
  --secondary-color: #ffd700;
  --accent-color: #00d4aa;
  --bg-dark: #0a0a0a;
  --bg-dark-secondary: #1a1a1a;
  --bg-dark-tertiary: #2a2a2a;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --text-muted: #888888;
  --border-color: #333333;
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #ff6b35, #ff8c42);
  --gradient-secondary: linear-gradient(135deg, #ffd700, #ffed4e);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

/* Base Styles */
body {
  font-family: 'Sarabun', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.btn::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.5s ease;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

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

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--bg-dark);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-dark);
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-dark-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--bg-dark-tertiary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-item span {
  font-weight: 600;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-dark);
  animation: pulse 2s infinite;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1.25rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-badge {
    position: static;
    margin-bottom: 1rem;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    max-width: 100%;
  }
  
  .feature-item {
    padding: 0.5rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

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

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

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

.logo-link i {
  font-size: 2rem;
  color: var(--primary-color);
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
  background: rgba(255, 107, 53, 0.1);
}

.nav-link i {
  font-size: 0.9rem;
  color: var(--primary-color);
}

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

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

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

.mobile-menu-toggle {
  display: none;
  flex-shrink: 0;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-color);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--bg-dark-secondary);
  color: var(--primary-color);
}

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

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

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover {
  color: var(--text-light);
  background: var(--bg-dark-secondary);
}

.mobile-nav-link i {
  font-size: 1.1rem;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.mobile-cta {
  margin-top: 1rem;
  padding: 0 1.5rem;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Behavior */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  
  .cta-button {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 60px;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .hamburger-btn {
    width: 25px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 2px;
  }
}

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

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

/* About Section */
.about-section {
  background: var(--bg-dark-secondary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-description strong {
  color: var(--primary-color);
  font-weight: 700;
}

.about-challenge {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-tertiary);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-dark);
}

.challenge-icon {
  flex-shrink: 0;
}

.challenge-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.challenge-text p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.challenge-text strong {
  color: var(--accent-color);
  font-weight: 700;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.about-insights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.insight-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.insight-icon {
  margin-bottom: 1.5rem;
}

.insight-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.insight-content h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.insight-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.insight-content strong {
  color: var(--accent-color);
  font-weight: 700;
}

.insight-content a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.insight-content a:hover {
  color: var(--primary-color);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .about-challenge {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .challenge-icon i {
    font-size: 1.5rem;
  }
  
  .insight-card {
    padding: 1.5rem;
  }
  
  .insight-icon i {
    font-size: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
  }
  
  .about-challenge {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .about-insights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .insight-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .insight-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-description p {
    font-size: 0.9rem;
  }
  
  .about-challenge {
    padding: 1rem;
  }
  
  .challenge-text p {
    font-size: 0.9rem;
  }
  
  .insight-card {
    padding: 1.25rem;
  }
  
  .insight-content h3 {
    font-size: 1.1rem;
  }
  
  .insight-content p {
    font-size: 0.9rem;
  }
}

/* Verification Section */
.verification-section {
  background: var(--bg-dark);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.verification-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.verification-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verification-intro {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.verification-intro strong {
  color: var(--accent-color);
  font-weight: 700;
}

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

.verification-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.verification-point {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.verification-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.verification-point:hover::before {
  transform: scaleY(1);
}

.verification-point:hover {
  transform: translateX(5px);
  background: var(--bg-dark-tertiary);
  box-shadow: var(--shadow-dark);
}

.point-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.point-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.point-content h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.point-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.point-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.verification-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.verification-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.verification-checklist {
  background: var(--bg-dark-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
}

.checklist-title {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
}

.checklist-title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.checklist-item:hover {
  transform: translateY(-2px);
  background: var(--bg-dark-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.checklist-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-icon i {
  font-size: 1.25rem;
  color: var(--bg-dark);
}

.checklist-item span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .verification-section {
    padding: 60px 20px;
  }
  
  .verification-header {
    margin-bottom: 40px;
  }
  
  .verification-title {
    font-size: 2.2rem;
  }
  
  .verification-intro {
    font-size: 1rem;
  }
  
  .verification-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .verification-point {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .point-icon {
    width: 50px;
    height: 50px;
  }
  
  .point-icon i {
    font-size: 1.25rem;
  }
  
  .point-content h3 {
    font-size: 1.25rem;
  }
  
  .verification-checklist {
    padding: 2rem;
  }
  
  .checklist-title {
    font-size: 1.6rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .verification-section {
    padding: 40px 15px;
  }
  
  .verification-title {
    font-size: 1.8rem;
  }
  
  .verification-intro {
    font-size: 0.95rem;
  }
  
  .verification-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .verification-text {
    gap: 1.5rem;
  }
  
  .verification-point {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .verification-point:hover {
    transform: translateY(-2px);
  }
  
  .point-icon {
    align-self: center;
    margin-top: 0;
  }
  
  .point-content h3 {
    font-size: 1.2rem;
  }
  
  .point-content p {
    font-size: 0.95rem;
  }
  
  .verification-checklist {
    padding: 1.5rem;
  }
  
  .checklist-title {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .checklist-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .checklist-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .verification-title {
    font-size: 1.5rem;
  }
  
  .verification-intro {
    font-size: 0.9rem;
  }
  
  .verification-point {
    padding: 1.25rem;
  }
  
  .point-content h3 {
    font-size: 1.1rem;
  }
  
  .point-content p {
    font-size: 0.9rem;
  }
  
  .verification-checklist {
    padding: 1.25rem;
  }
  
  .checklist-title {
    font-size: 1.2rem;
  }
  
  .checklist-item {
    padding: 1rem;
  }
  
  .checklist-item span {
    font-size: 0.9rem;
  }
}

/* Service Analysis Section */
.service-section {
  background: var(--bg-dark-secondary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.service-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.service-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-intro {
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
}

.service-intro p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.service-intro strong {
  color: var(--primary-color);
  font-weight: 700;
}

.service-analysis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.analysis-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.analysis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.analysis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.analysis-card.warning {
  border-left: 4px solid var(--secondary-color);
}

.analysis-card.warning::before {
  background: var(--gradient-secondary);
}

.analysis-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.analysis-card.warning .analysis-icon {
  background: var(--gradient-secondary);
}

.analysis-card.warning .analysis-icon i {
  color: var(--bg-dark);
}

.analysis-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.analysis-content h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.analysis-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.analysis-content strong {
  color: var(--accent-color);
  font-weight: 700;
}

.service-comparison {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-tertiary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  position: relative;
}

.service-comparison::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.comparison-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.comparison-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.comparison-content h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.comparison-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.comparison-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.service-warning {
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.service-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-secondary);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.warning-header i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.warning-header h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 700;
}

.warning-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.warning-content strong {
  color: var(--accent-color);
  font-weight: 700;
}

.warning-content a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.warning-content a:hover {
  color: var(--primary-color);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .service-section {
    padding: 60px 20px;
  }
  
  .service-header {
    margin-bottom: 40px;
  }
  
  .service-title {
    font-size: 2.2rem;
  }
  
  .service-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .service-text {
    gap: 1.5rem;
  }
  
  .service-intro,
  .analysis-card,
  .service-comparison {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .analysis-icon,
  .comparison-icon {
    width: 50px;
    height: 50px;
  }
  
  .analysis-icon i,
  .comparison-icon i {
    font-size: 1.25rem;
  }
  
  .analysis-content h3,
  .comparison-content h3 {
    font-size: 1.25rem;
  }
  
  .service-warning {
    padding: 2rem;
  }
  
  .warning-header h3 {
    font-size: 1.4rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .service-section {
    padding: 40px 15px;
  }
  
  .service-title {
    font-size: 1.8rem;
  }
  
  .service-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .service-text {
    gap: 1.25rem;
  }
  
  .service-intro p {
    font-size: 1rem;
  }
  
  .analysis-card,
  .service-comparison {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .analysis-icon,
  .comparison-icon {
    align-self: center;
    margin-top: 0;
  }
  
  .analysis-content h3,
  .comparison-content h3 {
    font-size: 1.2rem;
  }
  
  .analysis-content p,
  .comparison-content p {
    font-size: 0.95rem;
  }
  
  .service-warning {
    padding: 1.5rem;
  }
  
  .warning-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .warning-header h3 {
    font-size: 1.3rem;
  }
  
  .warning-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-title {
    font-size: 1.5rem;
  }
  
  .service-intro,
  .analysis-card,
  .service-comparison {
    padding: 1.25rem;
  }
  
  .service-intro p {
    font-size: 0.9rem;
  }
  
  .analysis-content h3,
  .comparison-content h3 {
    font-size: 1.1rem;
  }
  
  .analysis-content p,
  .comparison-content p {
    font-size: 0.9rem;
  }
  
  .service-warning {
    padding: 1.25rem;
  }
  
  .warning-header h3 {
    font-size: 1.2rem;
  }
  
  .warning-content p {
    font-size: 0.95rem;
  }
}

/* Safety Access Section */
.safety-section {
  background: var(--bg-dark);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.safety-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 40% 20%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.safety-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.safety-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.safety-intro {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-secondary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
}

.intro-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.intro-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.intro-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.safety-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.safety-point {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-tertiary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.safety-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.safety-point:hover::before {
  transform: scaleY(1);
}

.safety-point:hover {
  transform: translateX(5px);
  background: var(--bg-dark-secondary);
  box-shadow: var(--shadow-dark);
}

.point-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.point-icon i {
  font-size: 1.25rem;
  color: var(--bg-dark);
}

.point-content h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.point-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.point-content strong {
  color: var(--accent-color);
  font-weight: 700;
}

.point-content a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.point-content a:hover {
  color: var(--primary-color);
}

.safety-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.safety-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.safety-checklist {
  background: var(--bg-dark-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 6px 30px rgba(0, 212, 170, 0.1);
  position: relative;
}

.safety-checklist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.checklist-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checklist-header i {
  font-size: 2rem;
  color: var(--accent-color);
}

.checklist-header h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 700;
}

.checklist-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  transform: translateY(-2px);
  background: var(--bg-dark-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.item-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.checklist-item span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.4;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .safety-section {
    padding: 60px 20px;
  }
  
  .safety-header {
    margin-bottom: 40px;
  }
  
  .safety-title {
    font-size: 2.2rem;
  }
  
  .safety-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .safety-text {
    gap: 1.5rem;
  }
  
  .safety-intro,
  .safety-point {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .intro-icon {
    width: 50px;
    height: 50px;
  }
  
  .intro-icon i {
    font-size: 1.25rem;
  }
  
  .point-icon {
    width: 45px;
    height: 45px;
  }
  
  .point-icon i {
    font-size: 1.1rem;
  }
  
  .point-content h3 {
    font-size: 1.2rem;
  }
  
  .safety-checklist {
    padding: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .safety-section {
    padding: 40px 15px;
  }
  
  .safety-title {
    font-size: 1.8rem;
  }
  
  .safety-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .safety-text {
    gap: 1.25rem;
  }
  
  .safety-intro,
  .safety-point {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .safety-point:hover {
    transform: translateY(-2px);
  }
  
  .intro-icon,
  .point-icon {
    align-self: center;
    margin-top: 0;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
  
  .point-content h3 {
    font-size: 1.15rem;
  }
  
  .point-content p {
    font-size: 0.95rem;
  }
  
  .safety-checklist {
    padding: 1.5rem;
  }
  
  .checklist-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .checklist-header h3 {
    font-size: 1.4rem;
  }
  
  .checklist-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .item-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .safety-title {
    font-size: 1.5rem;
  }
  
  .safety-intro,
  .safety-point {
    padding: 1.25rem;
  }
  
  .intro-content p {
    font-size: 0.9rem;
  }
  
  .point-content h3 {
    font-size: 1.1rem;
  }
  
  .point-content p {
    font-size: 0.9rem;
  }
  
  .safety-checklist {
    padding: 1.25rem;
  }
  
  .checklist-header h3 {
    font-size: 1.3rem;
  }
  
  .checklist-item {
    padding: 1rem;
  }
  
  .checklist-item span {
    font-size: 0.9rem;
  }
}

/* Beginner Guide Section */
.beginner-section {
  background: var(--bg-dark-secondary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.beginner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.beginner-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.beginner-intro {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
  position: relative;
}

.beginner-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.intro-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.intro-icon i {
  font-size: 1.5rem;
  color: var(--bg-dark);
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.intro-content strong {
  color: var(--primary-color);
  font-weight: 700;
}

.beginner-warnings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.warning-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-dark-tertiary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.warning-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.warning-item:hover::after {
  opacity: 1;
}

.warning-item:hover {
  transform: translateX(5px);
  background: var(--bg-dark);
  box-shadow: var(--shadow-dark);
  border-color: var(--primary-color);
}

.warning-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.warning-icon i {
  font-size: 1.25rem;
  color: var(--text-light);
}

.warning-content h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.warning-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.warning-content strong {
  color: var(--accent-color);
  font-weight: 700;
}

.warning-content a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.warning-content a:hover {
  color: var(--primary-color);
}

.beginner-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.beginner-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.3s ease;
}

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

.beginner-tips {
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
  position: relative;
}

.beginner-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-secondary);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tips-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tips-header i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.tips-header h3 {
  font-size: 1.6rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 700;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tip-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-dark-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tip-card:hover::before {
  transform: scaleY(1);
}

.tip-card:hover {
  transform: translateY(-3px);
  background: var(--bg-dark-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.tip-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon i {
  font-size: 1.1rem;
  color: var(--bg-dark);
}

.tip-content h4 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tip-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .beginner-section {
    padding: 60px 20px;
  }
  
  .beginner-header {
    margin-bottom: 40px;
  }
  
  .beginner-title {
    font-size: 2.2rem;
  }
  
  .beginner-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .beginner-text {
    gap: 1.5rem;
  }
  
  .beginner-intro,
  .warning-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .intro-icon {
    width: 50px;
    height: 50px;
  }
  
  .intro-icon i {
    font-size: 1.25rem;
  }
  
  .warning-icon {
    width: 45px;
    height: 45px;
  }
  
  .warning-icon i {
    font-size: 1.1rem;
  }
  
  .warning-content h3 {
    font-size: 1.2rem;
  }
  
  .beginner-tips {
    padding: 2rem;
  }
  
  .tips-grid {
    gap: 1.25rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .beginner-section {
    padding: 40px 15px;
  }
  
  .beginner-title {
    font-size: 1.8rem;
  }
  
  .beginner-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .beginner-text {
    gap: 1.25rem;
  }
  
  .beginner-intro,
  .warning-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .warning-item:hover {
    transform: translateY(-2px);
  }
  
  .intro-icon,
  .warning-icon {
    align-self: center;
    margin-top: 0;
  }
  
  .intro-content p {
    font-size: 1rem;
  }
  
  .warning-content h3 {
    font-size: 1.15rem;
  }
  
  .warning-content p {
    font-size: 0.95rem;
  }
  
  .beginner-tips {
    padding: 1.5rem;
  }
  
  .tips-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tips-header h3 {
    font-size: 1.4rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tip-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .tip-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .beginner-title {
    font-size: 1.5rem;
  }
  
  .beginner-intro,
  .warning-item {
    padding: 1.25rem;
  }
  
  .intro-content p {
    font-size: 0.9rem;
  }
  
  .warning-content h3 {
    font-size: 1.1rem;
  }
  
  .warning-content p {
    font-size: 0.9rem;
  }
  
  .beginner-tips {
    padding: 1.25rem;
  }
  
  .tips-header h3 {
    font-size: 1.3rem;
  }
  
  .tip-card {
    padding: 1rem;
  }
  
  .tip-content h4 {
    font-size: 1rem;
  }
  
  .tip-content p {
    font-size: 0.85rem;
  }
}

/* Footer Styles */
.main-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.contact-item i {
  color: var(--primary-color);
  width: 18px;
  text-align: center;
}

.contact-item:hover {
  color: var(--text-light);
  cursor: pointer;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
}

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

.footer-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-menu li a:hover {
  color: var(--text-light);
  transform: translateX(5px);
}

.footer-menu li a i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-payment {
  background: var(--bg-dark-secondary);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.payment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-dark);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.payment-item:hover {
  transform: translateY(-2px);
  background: var(--bg-dark-tertiary);
  border-color: var(--primary-color);
}

.payment-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.payment-item span {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  max-width: 100%;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-disclaimer i {
  color: var(--secondary-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 2.5rem 15px 1rem;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-legal {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }
  
  .footer-legal .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 2rem 15px 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-about {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-legal .footer-menu {
    justify-items: center;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 1.5rem 10px 1rem;
  }
  
  .footer-content {
    gap: 1.25rem;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo i {
    font-size: 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.25rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu li a {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .footer-payment {
    padding: 1.25rem;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .payment-item {
    padding: 0.75rem;
  }
  
  .footer-disclaimer {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.75rem;
    flex-direction: column;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-color);
}

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

.sticky-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.3s ease;
}

.sticky-btn:hover::before {
  height: 4px;
}

.sticky-btn:active {
  transform: scale(0.98);
}

.sticky-login {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-color);
}

.sticky-login::before {
  background: var(--accent-color);
}

.sticky-login:hover {
  background: rgba(0, 212, 170, 0.2);
  color: var(--text-light);
}

.sticky-register {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.sticky-register::before {
  background: var(--primary-color);
}

.sticky-register:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--text-light);
}

.sticky-credit {
  background: rgba(255, 215, 0, 0.1);
  color: var(--secondary-color);
  animation: pulse-glow 2s infinite;
}

.sticky-credit::before {
  background: var(--secondary-color);
}

.sticky-credit:hover {
  background: rgba(255, 215, 0, 0.2);
  color: var(--bg-dark);
  animation: none;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: inset 0 0 0 rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
  }
}

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

.sticky-btn:hover i {
  transform: scale(1.1);
}

.sticky-btn span {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 4px;
    font-size: 0.7rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    border-top: 1px solid var(--border-color);
  }
  
  .sticky-btn {
    padding: 8px 2px;
    font-size: 0.65rem;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 1px;
  }
  
  .sticky-btn span {
    font-size: 0.55rem;
    line-height: 1.1;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 60px;
}

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

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

/* Login Section */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.login-card {
  background: var(--bg-dark-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-logo {
  margin-bottom: 1.5rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(220, 38, 27, 0.1);
  border: 1px solid #dc261b;
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
}

.error-message i {
  color: #ff6b6b;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-label i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--bg-dark-tertiary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.password-wrapper {
  position: relative;
}

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

.password-toggle:hover {
  color: var(--primary-color);
}

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 14px;
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn::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.5s ease;
}

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

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

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

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--text-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

.form-separator {
  position: relative;
  text-align: center;
  margin: 1rem 0;
}

.form-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.form-separator span {
  background: var(--bg-dark-secondary);
  padding: 0 1rem;
  color: var(--text-gray);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: var(--secondary-color);
  color: var(--bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.security-info i {
  color: var(--accent-color);
}

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

@media (max-width: 480px) {
  .login-section {
    padding: 10px;
    min-height: calc(100vh - 60px);
  }
  
  .login-card {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn,
  .register-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .security-info {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Register Section */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark-tertiary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

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

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

.register-card {
  background: var(--bg-dark-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-logo {
  margin-bottom: 1.5rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 25px 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: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 0.9rem;
  animation: slideDown 0.5s ease-in-out;
}

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

.success-message i {
  color: var(--accent-color);
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(220, 38, 27, 0.1);
  border: 1px solid #dc261b;
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
}

.error-message i {
  color: #ff6b6b;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-label i {
  color: var(--secondary-color);
  width: 16px;
  text-align: center;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--bg-dark-tertiary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input.success {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-error.show {
  opacity: 1;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.input-hint i {
  color: var(--accent-color);
}

.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 16px;
  background: var(--gradient-secondary);
  color: var(--bg-dark);
  border: none;
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-btn::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.5s ease;
}

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

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

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

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--bg-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

.form-separator {
  position: relative;
  text-align: center;
  margin: 1rem 0;
}

.form-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.form-separator span {
  background: var(--bg-dark-secondary);
  padding: 0 1rem;
  color: var(--text-gray);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.register-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.terms-info,
.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.terms-info i {
  color: var(--secondary-color);
}

.security-info i {
  color: var(--accent-color);
}

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

@media (max-width: 480px) {
  .register-section {
    padding: 10px;
    min-height: calc(100vh - 60px);
  }
  
  .register-card {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn,
  .login-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .terms-info,
  .security-info {
    font-size: 0.75rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .register-footer {
    gap: 0.75rem;
  }
}

/* Hero Section */
.hero-section {
  background: var(--bg-dark);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 18px 40px;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-cta::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.5s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

/* Promo Sections */
.promo-section {
  background: var(--bg-dark-secondary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.promo-section.promo-alt {
  background: var(--bg-dark);
}

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

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

.promo-card {
  background: var(--bg-dark-tertiary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.promo-section.promo-alt .promo-card {
  background: var(--bg-dark-secondary);
}

.promo-section.promo-alt .promo-card::before {
  background: var(--gradient-secondary);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 1.5rem;
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.promo-section.promo-alt .promo-icon {
  background: var(--gradient-secondary);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.promo-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.promo-section.promo-alt .promo-icon i {
  color: var(--bg-dark);
}

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.promo-content {
  padding: 0 2.5rem 2.5rem;
}

.promo-list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.promo-section.promo-alt .promo-list li {
  background: var(--bg-dark-tertiary);
  border-left-color: var(--secondary-color);
}

.promo-list li:hover {
  background: var(--bg-dark-secondary);
  transform: translateX(5px);
}

.promo-section.promo-alt .promo-list li:hover {
  background: var(--bg-dark);
}

.promo-list li i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.promo-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--bg-dark);
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-section.promo-alt .promo-highlight {
  background: var(--bg-dark-tertiary);
  border-color: var(--secondary-color);
}

.promo-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
  animation: shimmer 3s infinite;
}

.promo-section.promo-alt .promo-highlight::before {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 212, 170, 0.05));
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.highlight-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.promo-section.promo-alt .highlight-amount {
  color: var(--secondary-color);
}

.highlight-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.promo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.promo-section.promo-alt .promo-cta {
  background: var(--gradient-secondary);
  color: var(--bg-dark);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.promo-cta::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.5s ease;
}

.promo-cta:hover::before {
  left: 100%;
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.promo-section.promo-alt .promo-cta:hover {
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 60px 15px;
  }
  
  .promo-header {
    padding: 2rem 2rem 1rem;
  }
  
  .promo-content {
    padding: 0 2rem 2rem;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    font-size: 1rem;
    padding: 14px 30px;
  }
  
  .promo-section {
    padding: 40px 15px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    gap: 1rem;
  }
  
  .promo-content {
    padding: 0 1.5rem 2rem;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 1.75rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list li {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .highlight-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px 30px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
  
  .promo-section {
    padding: 30px 10px;
  }
  
  .promo-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .promo-content {
    padding: 0 1rem 1.5rem;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.2rem;
  }
  
  .promo-list li {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  .promo-highlight {
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .highlight-amount {
    font-size: 2rem;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
  
  .promo-cta {
    font-size: 1rem;
    padding: 14px 20px;
  }
}