/* Base Dark Theme Styles */
:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --accent-color: #ffd93d;
  --dark-bg: #0d1117;
  --darker-bg: #010409;
  --card-bg: #161b22;
  --border-color: #30363d;
  --text-primary: #f0f6fc;
  --text-secondary: #7d8590;
  --text-muted: #6e7681;
  --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --shadow-light: 0 2px 8px rgba(255, 107, 107, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 60px;
}

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

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

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

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-feature:last-child {
  border-bottom: none;
}

.hero-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.hero-feature span {
  color: var(--text-primary);
  font-weight: 500;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--card-bg);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

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

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

.hero-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 17, 23, 0.9);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

.stat-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px 40px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 16px 30px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    margin-bottom: 30px;
  }
  
  .hero-feature {
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
    flex: 1;
    min-width: 140px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stat-item i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 12px 20px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
}

/* Header Styles */
.site-header {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

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

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

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

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

.logo-link i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 107, 0.1);
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

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

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

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-color);
}

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

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

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

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

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

.mobile-menu {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.mobile-logo i {
  font-size: 1.8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 107, 0.1);
  color: var(--primary-color);
}

.mobile-menu-close i {
  font-size: 1.2rem;
}

.mobile-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.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;
  margin-top: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 107, 0.1);
  color: var(--primary-color);
}

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

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

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    gap: 24px;
  }
  
  .nav-link {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }
  
  .header-container {
    height: 60px;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 280px;
    max-width: 85vw;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-logo i {
    font-size: 1.5rem;
  }
  
  .mobile-logo span {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 16px 0;
  }
  
  .mobile-nav-link {
    padding: 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    margin-top: 16px;
    padding: 0 16px;
  }
  
  .mobile-cta-button {
    padding: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 12px;
  }
  
  .header-container {
    height: 55px;
  }
  
  .logo-link i {
    font-size: 1.4rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 14px;
  }
  
  .mobile-logo i {
    font-size: 1.3rem;
  }
  
  .mobile-logo span {
    font-size: 1.1rem;
  }
  
  .mobile-nav {
    padding: 12px 0;
  }
  
  .mobile-nav-link {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .mobile-cta-item {
    margin-top: 12px;
    padding: 0 12px;
  }
  
  .mobile-cta-button {
    padding: 14px;
    font-size: 0.95rem;
  }
}

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

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

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

/* Why Section Styles */
.why-section {
  background: var(--card-bg);
  padding: 80px 20px;
  position: relative;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.why-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-paragraph {
  background: rgba(13, 17, 23, 0.5);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.why-paragraph:hover {
  background: rgba(13, 17, 23, 0.7);
  transform: translateX(5px);
  box-shadow: var(--shadow-light);
}

.why-paragraph p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.why-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(78, 205, 196, 0.1);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.feature-item strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.why-image {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 107, 107, 0.95);
  padding: 16px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse 2s infinite;
}

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

.overlay-content i {
  color: white;
  font-size: 1.2rem;
}

.overlay-text {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .why-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .why-content {
    gap: 40px;
  }
  
  .why-paragraph {
    padding: 20px;
  }
  
  .why-paragraph p {
    font-size: 1rem;
  }
  
  .why-features {
    padding: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .why-section {
    padding: 50px 16px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-text {
    gap: 20px;
  }
  
  .why-paragraph {
    padding: 18px;
  }
  
  .why-paragraph:hover {
    transform: none;
  }
  
  .why-paragraph p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .why-features {
    padding: 18px;
  }
  
  .feature-item {
    gap: 12px;
    padding: 10px 0;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .image-overlay {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .overlay-content i {
    font-size: 1.1rem;
  }
  
  .overlay-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .why-section {
    padding: 40px 12px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .why-paragraph {
    padding: 16px;
  }
  
  .why-paragraph p {
    font-size: 0.9rem;
  }
  
  .why-features {
    padding: 16px;
  }
  
  .feature-item {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .feature-item i {
    margin-bottom: 4px;
  }
  
  .image-overlay {
    top: 10px;
    right: 10px;
    padding: 10px 14px;
  }
}

/* Dealers Section Styles */
.dealers-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.dealers-image {
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

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

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

.image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-light);
  animation: bounceIn 1s ease-out 0.5s both;
}

.image-badge i {
  color: white;
  font-size: 1.1rem;
}

.image-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dealers-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: slideInRight 0.8s ease-out;
}

.dealers-paragraph {
  background: rgba(22, 27, 34, 0.8);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dealers-paragraph:hover {
  background: rgba(22, 27, 34, 0.9);
  transform: translateX(5px);
  box-shadow: var(--shadow-light);
}

.dealers-paragraph p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.dealers-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.dealers-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(78, 205, 196, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.dealers-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.dealers-feature:last-child {
  border-bottom: none;
}

.dealers-feature:hover {
  transform: translateX(8px);
}

.dealers-feature i {
  color: var(--secondary-color);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.feature-content strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.dealers-cta {
  margin-top: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-secondary);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(78, 205, 196, 0.25);
}

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

/* Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .dealers-section {
    padding: 60px 20px;
  }
  
  .dealers-content {
    gap: 40px;
    margin-top: 40px;
  }
  
  .dealers-paragraph {
    padding: 20px;
  }
  
  .dealers-paragraph p {
    font-size: 1rem;
  }
  
  .dealers-features {
    padding: 20px;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .dealers-section {
    padding: 50px 16px;
  }
  
  .dealers-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .dealers-text {
    gap: 20px;
  }
  
  .dealers-paragraph {
    padding: 18px;
  }
  
  .dealers-paragraph:hover {
    transform: none;
  }
  
  .dealers-paragraph p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .dealers-features {
    padding: 18px;
    gap: 16px;
  }
  
  .dealers-feature {
    padding: 12px 0;
  }
  
  .dealers-feature:hover {
    transform: none;
  }
  
  .dealers-feature i {
    font-size: 1.2rem;
  }
  
  .feature-content h4 {
    font-size: 0.95rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .image-badge {
    top: 15px;
    left: 15px;
    padding: 10px 16px;
  }
  
  .image-badge i {
    font-size: 1rem;
  }
  
  .image-badge span {
    font-size: 0.8rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dealers-section {
    padding: 40px 12px;
  }
  
  .dealers-paragraph {
    padding: 16px;
  }
  
  .dealers-paragraph p {
    font-size: 0.9rem;
  }
  
  .dealers-features {
    padding: 16px;
  }
  
  .dealers-feature {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .dealers-feature i {
    margin-top: 0;
  }
  
  .feature-content h4 {
    font-size: 0.9rem;
  }
  
  .feature-content p {
    font-size: 0.8rem;
  }
  
  .image-badge {
    top: 10px;
    left: 10px;
    padding: 8px 14px;
  }
  
  .image-badge span {
    font-size: 0.75rem;
  }
}

/* Features Section Styles */
.features-section {
  background: var(--card-bg);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.features-content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.feature-card {
  background: rgba(13, 17, 23, 0.6);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.card-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.features-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-paragraph {
  background: rgba(22, 27, 34, 0.8);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.features-paragraph:hover {
  background: rgba(22, 27, 34, 0.9);
  transform: translateX(8px);
  box-shadow: var(--shadow-light);
}

.features-paragraph p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.features-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.features-paragraph a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.features-paragraph a:hover {
  color: var(--secondary-color);
}

.features-list {
  background: rgba(255, 107, 107, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.list-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.list-item span {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.list-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

.features-image {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.features-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

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

.image-stats {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-badge {
  background: rgba(13, 17, 23, 0.9);
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  animation: slideInRight 0.8s ease-out;
}

.stat-badge:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-badge i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.stat-badge span {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .features-section {
    padding: 60px 20px;
  }
  
  .features-content {
    margin-top: 40px;
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .features-paragraph {
    padding: 20px;
  }
  
  .features-paragraph p {
    font-size: 1rem;
  }
  
  .features-list {
    padding: 20px;
  }
  
  .features-image {
    margin-top: 30px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .features-section {
    padding: 50px 16px;
  }
  
  .features-content {
    margin-top: 30px;
    gap: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
  }
  
  .card-icon {
    width: 45px;
    height: 45px;
  }
  
  .card-icon i {
    font-size: 1.3rem;
  }
  
  .card-content h3 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
  
  .features-paragraph {
    padding: 18px;
  }
  
  .features-paragraph:hover {
    transform: none;
  }
  
  .features-paragraph p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .features-list {
    padding: 18px;
    gap: 12px;
  }
  
  .list-item {
    gap: 10px;
    padding: 6px 0;
  }
  
  .list-item i {
    font-size: 1rem;
  }
  
  .list-item span {
    font-size: 0.9rem;
  }
  
  .image-stats {
    top: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .stat-badge {
    padding: 10px 14px;
  }
  
  .stat-badge i {
    font-size: 0.9rem;
  }
  
  .stat-badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 12px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .card-content h3 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .features-paragraph {
    padding: 16px;
  }
  
  .features-paragraph p {
    font-size: 0.9rem;
  }
  
  .features-list {
    padding: 16px;
  }
  
  .list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .list-item span {
    font-size: 0.85rem;
  }
  
  .image-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
  }
  
  .stat-badge {
    padding: 8px 12px;
  }
}

/* Investment Section Styles */
.investment-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

.investment-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.investment-intro {
  background: rgba(22, 27, 34, 0.8);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.investment-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
}

.investment-intro strong {
  color: var(--text-primary);
  font-weight: 600;
}

.highlight-box {
  display: flex;
  gap: 16px;
  background: var(--gradient-primary);
  padding: 20px;
  border-radius: 12px;
  align-items: center;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.5rem;
  color: white;
}

.highlight-text {
  flex: 1;
}

.highlight-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.highlight-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.investment-paragraph {
  background: rgba(13, 17, 23, 0.6);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.investment-paragraph:hover {
  background: rgba(13, 17, 23, 0.8);
  transform: translateX(8px);
  box-shadow: var(--shadow-light);
}

.investment-paragraph p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.investment-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.professional-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(78, 205, 196, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.pro-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.pro-feature:last-child {
  border-bottom: none;
}

.pro-feature:hover {
  transform: translateX(8px);
}

.pro-feature i {
  color: var(--accent-color);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.pro-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.pro-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.pro-content strong {
  color: var(--accent-color);
  font-weight: 600;
}

.investment-image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

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

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

.vip-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-light);
  animation: glow 2s ease-in-out infinite alternate;
}

.vip-badge i {
  color: var(--darker-bg);
  font-size: 1.1rem;
}

.vip-badge span {
  color: var(--darker-bg);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.investment-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 16px;
}

.stat-box {
  flex: 1;
  background: rgba(13, 17, 23, 0.9);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
}

.stat-box i {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.investment-cta {
  margin-top: 60px;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-btn-professional {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
  color: var(--darker-bg);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.cta-btn-professional:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 215, 61, 0.3);
}

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

/* Animations */
@keyframes glow {
  0% {
    box-shadow: 0 2px 8px rgba(255, 215, 61, 0.3);
  }
  100% {
    box-shadow: 0 4px 16px rgba(255, 215, 61, 0.6);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .investment-section {
    padding: 60px 20px;
  }
  
  .investment-content {
    gap: 40px;
    margin-top: 40px;
  }
  
  .investment-intro {
    padding: 20px;
  }
  
  .highlight-box {
    padding: 18px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
  
  .highlight-title {
    font-size: 1.1rem;
  }
  
  .investment-paragraph {
    padding: 20px;
  }
  
  .professional-features {
    padding: 20px;
    gap: 16px;
  }
  
  .pro-feature {
    padding: 12px 0;
  }
  
  .investment-cta {
    margin-top: 40px;
    padding: 32px;
  }
  
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .cta-btn-professional {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .investment-section {
    padding: 50px 16px;
  }
  
  .investment-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .investment-text {
    gap: 20px;
  }
  
  .investment-intro {
    padding: 18px;
  }
  
  .investment-intro p {
    font-size: 1rem;
  }
  
  .highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  
  .highlight-title {
    font-size: 1rem;
  }
  
  .highlight-text p {
    font-size: 0.9rem;
  }
  
  .investment-paragraph {
    padding: 18px;
  }
  
  .investment-paragraph:hover {
    transform: none;
  }
  
  .investment-paragraph p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .professional-features {
    padding: 18px;
  }
  
  .pro-feature {
    padding: 10px 0;
  }
  
  .pro-feature:hover {
    transform: none;
  }
  
  .pro-feature i {
    font-size: 1.2rem;
  }
  
  .pro-content h4 {
    font-size: 1rem;
  }
  
  .pro-content p {
    font-size: 0.9rem;
  }
  
  .vip-badge {
    top: 15px;
    left: 15px;
    padding: 10px 16px;
  }
  
  .vip-badge i {
    font-size: 1rem;
  }
  
  .vip-badge span {
    font-size: 0.8rem;
  }
  
  .investment-stats {
    bottom: 15px;
    left: 15px;
    right: 15px;
    gap: 12px;
  }
  
  .stat-box {
    padding: 12px;
  }
  
  .stat-box i {
    font-size: 1.1rem;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .investment-cta {
    margin-top: 30px;
    padding: 24px;
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-btn-professional {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .investment-section {
    padding: 40px 12px;
  }
  
  .investment-intro {
    padding: 16px;
  }
  
  .highlight-box {
    padding: 14px;
  }
  
  .investment-paragraph {
    padding: 16px;
  }
  
  .investment-paragraph p {
    font-size: 0.9rem;
  }
  
  .professional-features {
    padding: 16px;
  }
  
  .pro-feature {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .pro-feature i {
    margin-top: 0;
  }
  
  .pro-content h4 {
    font-size: 0.95rem;
  }
  
  .pro-content p {
    font-size: 0.85rem;
  }
  
  .investment-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .investment-cta {
    padding: 20px;
  }
  
  .cta-content h3 {
    font-size: 1.2rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }
}

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

.comprehensive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.comprehensive-content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.comprehensive-intro {
  background: rgba(22, 27, 34, 0.8);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  backdrop-filter: blur(10px);
}

.comprehensive-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.comprehensive-intro strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

.comprehensive-card {
  background: rgba(13, 17, 23, 0.8);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
}

.comprehensive-card:nth-child(2) {
  animation-delay: 0.2s;
}

.comprehensive-card:nth-child(3) {
  animation-delay: 0.4s;
}

.comprehensive-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--secondary-color);
}

.card-header {
  background: var(--gradient-secondary);
  padding: 24px;
  text-align: center;
}

.card-header i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 12px;
  display: block;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.card-body {
  padding: 24px;
}

.card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.card-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.card-body a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-body a:hover {
  color: var(--primary-color);
}

.bonus-section {
  background: rgba(255, 107, 107, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
}

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

.bonus-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.bonus-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.bonus-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bonus-text a:hover {
  color: var(--secondary-color);
}

.bonus-image {
  position: relative;
}

.bonus-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
}

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

.bonus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-primary);
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-light);
  animation: bounce 2s infinite;
}

.bonus-badge i {
  color: white;
  font-size: 1rem;
}

.bonus-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.features-highlight {
  text-align: center;
}

.features-highlight h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.highlight-item {
  background: rgba(22, 27, 34, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
  border-color: var(--accent-color);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.highlight-icon i {
  font-size: 1.8rem;
  color: white;
}

.highlight-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

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

.betting-options {
  background: rgba(13, 17, 23, 0.6);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.options-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.options-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.options-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.trial-info {
  background: rgba(78, 205, 196, 0.1);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  margin-top: 24px;
}

.trial-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

.trial-info strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.conclusion {
  background: rgba(22, 27, 34, 0.8);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.conclusion p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
}

.conclusion strong {
  color: var(--text-primary);
  font-weight: 600;
}

.conclusion a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.conclusion a:hover {
  color: var(--secondary-color);
}

.final-cta {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-light);
}

.final-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.3);
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .comprehensive-section {
    padding: 60px 20px;
  }
  
  .comprehensive-content {
    margin-top: 40px;
    gap: 50px;
  }
  
  .comprehensive-intro {
    padding: 28px;
  }
  
  .comprehensive-intro p {
    font-size: 1.05rem;
  }
  
  .comprehensive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .card-header {
    padding: 20px;
  }
  
  .card-header i {
    font-size: 2.2rem;
  }
  
  .card-header h3 {
    font-size: 1.2rem;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .bonus-section {
    padding: 32px;
  }
  
  .bonus-content {
    gap: 32px;
  }
  
  .bonus-text h3 {
    font-size: 1.6rem;
  }
  
  .bonus-text p {
    font-size: 1rem;
  }
  
  .features-highlight h3 {
    font-size: 1.6rem;
  }
  
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .betting-options {
    padding: 28px;
  }
  
  .options-text h3 {
    font-size: 1.4rem;
  }
  
  .options-text p {
    font-size: 1rem;
  }
  
  .conclusion {
    padding: 28px;
  }
  
  .conclusion p {
    font-size: 1rem;
  }
  
  .final-cta {
    padding: 32px;
  }
  
  .final-cta h3 {
    font-size: 1.8rem;
  }
  
  .final-cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .comprehensive-section {
    padding: 50px 16px;
  }
  
  .comprehensive-content {
    margin-top: 30px;
    gap: 40px;
  }
  
  .comprehensive-intro {
    padding: 24px;
  }
  
  .comprehensive-intro p {
    font-size: 1rem;
  }
  
  .comprehensive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comprehensive-card:hover {
    transform: translateY(-4px);
  }
  
  .card-header {
    padding: 18px;
  }
  
  .card-header i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
  
  .card-body {
    padding: 18px;
  }
  
  .card-body p {
    font-size: 0.9rem;
  }
  
  .bonus-section {
    padding: 24px;
  }
  
  .bonus-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .bonus-text h3 {
    font-size: 1.4rem;
  }
  
  .bonus-text p {
    font-size: 0.95rem;
  }
  
  .bonus-badge {
    top: 12px;
    right: 12px;
    padding: 8px 14px;
  }
  
  .bonus-badge i {
    font-size: 0.9rem;
  }
  
  .bonus-badge span {
    font-size: 0.8rem;
  }
  
  .features-highlight h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-item:hover {
    transform: none;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-text h4 {
    font-size: 1rem;
  }
  
  .highlight-text p {
    font-size: 0.85rem;
  }
  
  .betting-options {
    padding: 24px;
  }
  
  .options-text h3 {
    font-size: 1.3rem;
  }
  
  .options-text p {
    font-size: 0.95rem;
  }
  
  .trial-info {
    padding: 20px;
  }
  
  .trial-info h4 {
    font-size: 1.1rem;
  }
  
  .trial-info p {
    font-size: 0.9rem;
  }
  
  .conclusion {
    padding: 24px;
  }
  
  .conclusion p {
    font-size: 0.95rem;
  }
  
  .final-cta {
    padding: 24px;
  }
  
  .final-cta h3 {
    font-size: 1.6rem;
  }
  
  .final-cta p {
    font-size: 1rem;
  }
  
  .final-cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .comprehensive-section {
    padding: 40px 12px;
  }
  
  .comprehensive-content {
    gap: 32px;
  }
  
  .comprehensive-intro {
    padding: 20px;
  }
  
  .comprehensive-intro p {
    font-size: 0.9rem;
  }
  
  .card-header {
    padding: 16px;
  }
  
  .card-header i {
    font-size: 1.8rem;
  }
  
  .card-header h3 {
    font-size: 1rem;
  }
  
  .card-body {
    padding: 16px;
  }
  
  .card-body p {
    font-size: 0.85rem;
  }
  
  .bonus-section {
    padding: 20px;
  }
  
  .bonus-text h3 {
    font-size: 1.2rem;
  }
  
  .bonus-text p {
    font-size: 0.9rem;
  }
  
  .features-highlight h3 {
    font-size: 1.2rem;
  }
  
  .highlight-item {
    padding: 18px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
  
  .highlight-text h4 {
    font-size: 0.95rem;
  }
  
  .highlight-text p {
    font-size: 0.8rem;
  }
  
  .betting-options {
    padding: 20px;
  }
  
  .options-text h3 {
    font-size: 1.2rem;
  }
  
  .options-text p {
    font-size: 0.9rem;
  }
  
  .trial-info {
    padding: 18px;
  }
  
  .trial-info h4 {
    font-size: 1rem;
  }
  
  .trial-info p {
    font-size: 0.85rem;
  }
  
  .conclusion {
    padding: 20px;
  }
  
  .conclusion p {
    font-size: 0.9rem;
  }
  
  .final-cta {
    padding: 20px;
  }
  
  .final-cta h3 {
    font-size: 1.4rem;
  }
  
  .final-cta p {
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  border-top: 1px solid var(--border-color);
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand {
  gap: 20px;
}

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

.footer-logo i {
  font-size: 2.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

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

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-link::before {
  content: '▶';
  color: var(--primary-color);
  font-size: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(22, 27, 34, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 12px;
  background: rgba(13, 17, 23, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
}

.feature-badge i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.feature-badge span {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}

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

.footer-copyright {
  order: 2;
}

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

.footer-disclaimer {
  order: 3;
  background: rgba(255, 107, 107, 0.1);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

.footer-cta {
  order: 1;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.footer-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.3);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .site-footer {
    padding: 50px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .feature-badge {
    padding: 14px 10px;
  }
  
  .feature-badge i {
    font-size: 1.3rem;
  }
  
  .feature-badge span {
    font-size: 0.8rem;
  }
  
  .footer-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .footer-brand {
    grid-column: 1;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-link {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-link:hover {
    transform: none;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px;
    margin-bottom: 24px;
  }
  
  .feature-badge {
    padding: 12px 8px;
  }
  
  .feature-badge i {
    font-size: 1.2rem;
  }
  
  .feature-badge span {
    font-size: 0.75rem;
  }
  
  .footer-bottom {
    gap: 16px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
  
  .footer-cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 12px 16px;
  }
  
  .footer-content {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-logo i {
    font-size: 1.6rem;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-contact {
    gap: 12px;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }
  
  .feature-badge {
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    text-align: left;
  }
  
  .feature-badge i {
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 8px;
  }
  
  .feature-badge span {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
  }
  
  .footer-cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Additional responsive fixes */
@media (max-width: 360px) {
  .footer-logo-text {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.8rem;
  }
  
  .footer-cta-button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  z-index: 999;
  padding: 8px;
  gap: 8px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.sticky-btn:hover::before {
  opacity: 0.1;
}

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

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

.btn-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Login Button */
.sticky-btn-login {
  color: var(--text-primary);
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

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

.sticky-btn-login:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.2);
}

.sticky-btn-login i {
  color: var(--secondary-color);
}

/* Register Button */
.sticky-btn-register {
  color: var(--text-primary);
  background: rgba(255, 215, 61, 0.1);
  border: 1px solid rgba(255, 215, 61, 0.3);
}

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

.sticky-btn-register:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(255, 215, 61, 0.2);
}

.sticky-btn-register i {
  color: var(--accent-color);
}

/* Bonus Button */
.sticky-btn-bonus {
  color: white;
  background: var(--gradient-primary);
  border: 1px solid var(--primary-color);
  animation: pulse-glow 2s infinite;
}

.sticky-btn-bonus::before {
  background: rgba(255, 255, 255, 0.2);
}

.sticky-btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  animation: none;
}

.sticky-btn-bonus i {
  color: white;
}

.sticky-btn-bonus .btn-text {
  color: white;
}

/* Pulse Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  }
  50% {
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
  }
  100% {
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-buttons {
    padding: 6px;
    gap: 6px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 4px;
    gap: 4px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .sticky-buttons {
    padding: 2px;
    gap: 2px;
  }
  
  .sticky-btn {
    padding: 6px 2px;
    min-height: 45px;
    border-radius: 4px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .btn-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

/* Very Small Mobile Styles */
@media (max-width: 360px) {
  .sticky-btn {
    padding: 5px 1px;
    min-height: 42px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.6rem;
  }
}

/* Ensure body has bottom padding to account for sticky buttons */
body {
  padding-bottom: 76px;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 67px;
  }
}

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

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

@media (max-width: 360px) {
  body {
    padding-bottom: 46px;
  }
}

/* Hide sticky buttons on very large screens if needed */
@media (min-width: 1400px) {
  .sticky-buttons {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}

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

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

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

.login-card {
  background: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
}

.login-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: rgba(13, 17, 23, 0.5);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.2);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.error-message {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 20px 30px 0;
  color: #dc3545;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

.error-message i {
  color: #dc3545;
  font-size: 1rem;
}

.login-form {
  padding: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: rgba(13, 17, 23, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input:focus + .input-icon,
.form-input:not(:placeholder-shown) + .input-icon {
  color: var(--primary-color);
}

.form-input.error {
  border-color: #dc3545;
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  z-index: 3;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.field-error {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

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

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

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

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: rgba(13, 17, 23, 0.8);
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: rgba(255, 107, 107, 0.1);
  border-color: var(--primary-color);
}

.checkbox-input:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.forgot-password {
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.login-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

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

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

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

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

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

.login-divider {
  position: relative;
  text-align: center;
  margin: 24px 30px;
}

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

.login-divider span {
  background: rgba(22, 27, 34, 0.95);
  color: var(--text-muted);
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 60px);
  margin: 0 30px 30px;
  padding: 14px;
  background: rgba(78, 205, 196, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-button:hover {
  background: rgba(78, 205, 196, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(78, 205, 196, 0.2);
}

.register-button i {
  font-size: 1rem;
}

.login-footer {
  background: rgba(13, 17, 23, 0.5);
  border-top: 1px solid var(--border-color);
  padding: 20px 30px;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.security-badge i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.login-terms {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.login-terms a {
  color: var(--primary-color);
  text-decoration: none;
}

.login-terms a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .login-section {
    padding: 30px 20px;
  }
  
  .login-container {
    max-width: 380px;
  }
  
  .login-header {
    padding: 35px 25px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-form {
    padding: 25px;
  }
  
  .error-message {
    margin: 16px 25px 0;
  }
  
  .login-divider {
    margin: 20px 25px;
  }
  
  .register-button {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
  }
  
  .login-footer {
    padding: 16px 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 16px;
    min-height: 100vh;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    border-radius: 16px;
    margin: 0;
  }
  
  .login-header {
    padding: 30px 20px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-form {
    padding: 20px;
  }
  
  .form-input {
    padding: 12px 14px 12px 44px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 14px;
    font-size: 1rem;
  }
  
  .login-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .error-message {
    margin: 12px 20px 0;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .login-divider {
    margin: 16px 20px;
  }
  
  .register-button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .login-footer {
    padding: 14px 20px;
  }
  
  .security-badges {
    gap: 16px;
    margin-bottom: 12px;
  }
  
  .security-badge {
    font-size: 0.75rem;
  }
  
  .login-terms {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 16px 12px;
  }
  
  .login-header {
    padding: 24px 16px 16px;
  }
  
  .logo-image {
    width: 55px;
    height: 55px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .login-form {
    padding: 16px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .form-input {
    padding: 10px 12px 10px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.95rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 0.95rem;
  }
  
  .form-options {
    margin-bottom: 20px;
  }
  
  .checkbox-label,
  .forgot-password {
    font-size: 0.85rem;
  }
  
  .login-button {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .error-message {
    margin: 10px 16px 0;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .login-divider {
    margin: 12px 16px;
  }
  
  .register-button {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .login-footer {
    padding: 12px 16px;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .security-badge {
    font-size: 0.7rem;
  }
  
  .login-terms {
    font-size: 0.7rem;
  }
}

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

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

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

.register-card {
  background: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
}

.register-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: rgba(13, 17, 23, 0.5);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(78, 205, 196, 0.2);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.error-message,
.success-message {
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 20px 30px 0;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

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

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

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

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

.register-form {
  padding: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(13, 17, 23, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-input:focus + .input-icon,
.form-input:not(:placeholder-shown) + .input-icon {
  color: var(--secondary-color);
}

.form-input.error {
  border-color: #dc3545;
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-error {
  display: block;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 16px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

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

.form-terms {
  margin-bottom: 24px;
}

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

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: rgba(13, 17, 23, 0.8);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: solid var(--secondary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
  background: rgba(78, 205, 196, 0.1);
  border-color: var(--secondary-color);
}

.checkbox-input:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.terms-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.register-button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-secondary);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.2);
}

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

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

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

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

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

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

.register-divider {
  position: relative;
  text-align: center;
  margin: 24px 30px;
}

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

.register-divider span {
  background: rgba(22, 27, 34, 0.95);
  color: var(--text-muted);
  padding: 0 16px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 60px);
  margin: 0 30px 30px;
  padding: 14px;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-button:hover {
  background: rgba(240, 246, 252, 0.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.1);
}

.login-button i {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.register-footer {
  background: rgba(13, 17, 23, 0.5);
  border-top: 1px solid var(--border-color);
  padding: 24px 30px;
}

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.security-badge i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.register-benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(78, 205, 196, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(78, 205, 196, 0.1);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.benefit-item span {
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

.register-terms {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.register-terms a {
  color: var(--secondary-color);
  text-decoration: none;
}

.register-terms a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .register-section {
    padding: 30px 20px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-header {
    padding: 35px 25px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-form {
    padding: 25px;
  }
  
  .error-message,
  .success-message {
    margin: 16px 25px 0;
  }
  
  .register-divider {
    margin: 20px 25px;
  }
  
  .login-button {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
  }
  
  .register-footer {
    padding: 20px 25px;
  }
  
  .security-badges {
    gap: 16px;
  }
  
  .register-benefits {
    gap: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 16px;
    min-height: 100vh;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    border-radius: 16px;
    margin: 0;
  }
  
  .register-header {
    padding: 30px 20px 20px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-form {
    padding: 20px;
  }
  
  .form-input {
    padding: 14px 14px 14px 44px;
  }
  
  .input-icon {
    left: 14px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .error-message,
  .success-message {
    margin: 12px 20px 0;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .register-divider {
    margin: 16px 20px;
  }
  
  .login-button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .register-footer {
    padding: 16px 20px;
  }
  
  .security-badges {
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .security-badge {
    font-size: 0.75rem;
  }
  
  .register-benefits {
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
  }
  
  .benefit-item i {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.7rem;
  }
  
  .register-terms {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 16px 12px;
  }
  
  .register-header {
    padding: 24px 16px 16px;
  }
  
  .logo-image {
    width: 55px;
    height: 55px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .register-form {
    padding: 16px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.95rem;
  }
  
  .form-terms {
    margin-bottom: 20px;
  }
  
  .checkbox-label,
  .terms-link {
    font-size: 0.85rem;
  }
  
  .register-button {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .error-message,
  .success-message {
    margin: 10px 16px 0;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .register-divider {
    margin: 12px 16px;
  }
  
  .login-button {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .register-footer {
    padding: 12px 16px;
  }
  
  .security-badges {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .security-badge {
    font-size: 0.7rem;
  }
  
  .register-benefits {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding: 10px;
  }
  
  .benefit-item {
    flex-direction: row;
    gap: 8px;
  }
  
  .benefit-item i {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
  
  .register-terms {
    font-size: 0.7rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

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

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

.promotion-section.alt {
  background: rgba(22, 27, 34, 0.3);
}

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

.promotion-card {
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.promotion-card.featured {
  border: 2px solid var(--primary-color);
  background: rgba(255, 107, 107, 0.05);
}

.promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13, 17, 23, 0.6);
}

.promotion-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-badge.secondary {
  background: var(--gradient-secondary);
}

.promotion-badge.accent {
  background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
  color: var(--darker-bg);
}

.promotion-badge.cashback {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

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

.promotion-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.promotion-content {
  padding: 30px;
}

.promotion-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient-primary);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.promotion-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  animation: stripes 20s linear infinite;
}

.promotion-highlight.alt {
  background: var(--gradient-secondary);
}

.promotion-highlight.accent {
  background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
}

.promotion-highlight.cashback {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.highlight-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  position: relative;
  z-index: 1;
}

.amount-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}

.amount-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.amount-currency {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 4px;
}

.highlight-percentage {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.promo-code {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: white;
  position: relative;
  z-index: 1;
}

.code-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}

.code-text {
  font-size: 1.8rem;
  font-weight: 900;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

.promotion-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.feature-item:hover {
  transform: translateX(8px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

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

.promotion-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.promotion-button.secondary {
  background: var(--gradient-secondary);
}

.promotion-button.accent {
  background: linear-gradient(135deg, #ffd93d 0%, #f39c12 100%);
  color: var(--darker-bg);
}
  
.promotion-button.cashback {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.promotion-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 107, 107, 0.3);
}

.promotion-button.secondary:hover {
  box-shadow: 0 12px 24px rgba(78, 205, 196, 0.3);
}

.promotion-button.accent:hover {
  box-shadow: 0 12px 24px rgba(255, 215, 61, 0.3);
}

.promotion-button.cashback:hover {
  box-shadow: 0 12px 24px rgba(40, 167, 69, 0.3);
}

.promotion-button i {
  font-size: 1.1rem;
}

/* Summary Section */
.summary-section {
  background: var(--card-bg);
  padding: 80px 20px;
  border-top: 1px solid var(--border-color);
}

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

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

.summary-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.summary-cta {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.summary-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.summary-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(78, 205, 196, 0.4);
}

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

/* Animations */
@keyframes stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-cta-button {
    padding: 18px 32px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-header {
    padding: 24px;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    padding: 24px;
  }
  
  .promotion-highlight {
    padding: 20px;
    margin-bottom: 24px;
  }
  
  .amount-number {
    font-size: 2.5rem;
  }
  
  .highlight-percentage {
    font-size: 3.5rem;
  }
  
  .promotion-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .summary-section {
    padding: 60px 20px;
  }
  
  .summary-text {
    font-size: 1.1rem;
  }
  
  .summary-button {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 16px 50px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-button {
    padding: 16px 28px;
    font-size: 1.1rem;
  }
  
  .hero-cta-button i {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 16px;
  }
  
  .promotion-card:hover {
    transform: translateY(-4px);
  }
  
  .promotion-header {
    padding: 20px;
  }
  
  .promotion-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-content {
    padding: 20px;
  }
  
  .promotion-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .highlight-amount {
    align-items: center;
  }
  
  .amount-number {
    font-size: 2.2rem;
  }
  
  .highlight-percentage {
    font-size: 3rem;
  }
  
  .code-text {
    font-size: 1.5rem;
    padding: 6px 12px;
  }
  
  .promotion-features {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .feature-item {
    padding: 10px 0;
  }
  
  .feature-item:hover {
    transform: none;
  }
  
  .feature-item i {
    font-size: 1.1rem;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .promotion-button {
    padding: 12px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .summary-section {
    padding: 50px 16px;
  }
  
  .summary-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .summary-button {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 12px 40px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .hero-cta-button {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 12px;
  }
  
  .promotion-header {
    padding: 16px;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-content {
    padding: 16px;
  }
  
  .promotion-highlight {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .amount-text {
    font-size: 0.9rem;
  }
  
  .amount-number {
    font-size: 2rem;
  }
  
  .amount-currency {
    font-size: 1.1rem;
  }
  
  .highlight-percentage {
    font-size: 2.5rem;
  }
  
  .code-text {
    font-size: 1.3rem;
    padding: 4px 10px;
  }
  
  .promotion-features {
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .feature-item {
    padding: 8px 0;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .promotion-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .summary-section {
    padding: 40px 12px;
  }
  
  .summary-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .summary-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}