/* Base Theme CSS */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #4ecdc4;
  --accent-color: #ffe66d;
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-lighter: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #888888;
  --border-color: #333333;
  --shadow-light: rgba(255, 107, 53, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), #e55a2b);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #3fb5ae);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
  color: white;
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('pattern.png') repeat;
  opacity: 0.1;
  animation: float 20s linear infinite;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

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

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  animation: slideInRight 1s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.hero-img:hover {
  transform: translateY(-10px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

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

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .btn {
    width: 100%;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    max-width: 250px;
  }

  .feature-item {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    max-width: 900px;
  }

  .hero-content {
    gap: 35px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* Header Styles */
.header {
  background: var(--bg-darker);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

/* Logo Styles */
.logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-text {
  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;
}

/* Desktop Navigation */
.nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

.nav-link:hover {
  color: var(--primary-color);
  background: var(--bg-lighter);
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 0.9rem;
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
}

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

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-darker);
  border-left: 1px solid var(--border-color);
  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: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

.mobile-nav-item:last-child {
  border-bottom: none;
  margin-top: 1rem;
}

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

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

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

.mobile-nav-link:hover {
  color: var(--primary-color);
  background: var(--bg-lighter);
  transform: translateX(10px);
}

.mobile-nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.mobile-cta-item {
  padding: 1rem 1.5rem;
}

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

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
  color: white;
}

/* Responsive Design */
@media (max-width: 970px) {
  .header-container {
    padding: 0 15px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 60px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .mobile-menu {
    width: 100vw;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
  }

  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }

  .nav-list {
    gap: 1.5rem;
  }

  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

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

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.about-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.feature-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-lighter);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: var(--bg-darker);
  transform: translateX(5px);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  min-width: 20px;
}

.highlight-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-conclusion {
  color: var(--text-secondary);
  font-style: italic;
  padding: 1.5rem;
  background: var(--bg-lighter);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-conclusion strong {
  color: var(--primary-color);
}

.about-cta {
  text-align: left;
}

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

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

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

.trust-badges {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.badge {
  background: var(--bg-lighter);
  padding: 0.75rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-color);
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}

.badge:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

.badge:hover i {
  color: white;
}

.badge span {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge:hover span {
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-description p {
    font-size: 0.95rem;
  }

  .feature-highlights {
    gap: 0.75rem;
  }

  .highlight-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .about-conclusion {
    padding: 1rem;
    font-size: 0.9rem;
  }

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

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .badge {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.4rem;
  }

  .about-description p {
    font-size: 0.9rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .highlight-item span {
    font-size: 0.85rem;
  }

  .about-conclusion {
    font-size: 0.85rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-container {
    padding: 0 30px;
  }

  .about-content {
    gap: 3rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .trust-badges {
    flex-wrap: wrap;
  }

  .badge {
    min-width: calc(50% - 0.5rem);
  }
}

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

.slot-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="50" y="50" width="20" height="20" fill="rgba(255,107,53,0.1)" rx="5"/><rect x="130" y="30" width="15" height="15" fill="rgba(78,205,196,0.1)" rx="3"/><rect x="80" y="120" width="25" height="25" fill="rgba(255,230,109,0.1)" rx="8"/></svg>') repeat;
  opacity: 0.2;
  animation: slidePattern 30s linear infinite;
}

@keyframes slidePattern {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(-200px) translateY(-200px);
  }
}

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

.slot-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.slot-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px var(--shadow-dark);
  transition: all 0.4s ease;
  border: 2px solid var(--border-color);
}

.slot-img:hover {
  transform: scale(1.03) rotateY(5deg);
  box-shadow: 0 30px 60px var(--shadow-dark);
  border-color: var(--primary-color);
}

.slot-providers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.provider-badge {
  background: var(--bg-lighter);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  justify-content: center;
}

.provider-badge:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow-light);
}

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

.provider-badge:hover i {
  color: white;
}

.provider-badge span {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
}

.provider-badge:hover span {
  color: white;
}

.slot-text {
  animation: slideInRight 0.8s ease-out;
}

.slot-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.slot-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.slot-description {
  margin-bottom: 2.5rem;
}

.slot-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.slot-description a:hover {
  color: var(--accent-color);
}

.slot-features {
  margin-bottom: 2rem;
}

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

.feature-card {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  background: var(--bg-dark);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 25px var(--shadow-light);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.feature-card h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.slot-cta {
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .slot-section {
    padding: 60px 0;
  }

  .slot-container {
    padding: 0 15px;
  }

  .slot-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .slot-image {
    order: -1;
  }

  .slot-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .slot-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .slot-description p {
    font-size: 0.95rem;
  }

  .slot-providers {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-card {
    padding: 1.2rem;
  }

  .feature-card i {
    font-size: 1.5rem;
  }

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

@media (max-width: 480px) {
  .slot-title {
    font-size: 1.4rem;
  }

  .slot-description p {
    font-size: 0.9rem;
  }

  .provider-badge {
    padding: 0.6rem 0.8rem;
  }

  .provider-badge span {
    font-size: 0.8rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card h4 {
    font-size: 0.9rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .slot-container {
    padding: 0 30px;
  }

  .slot-content {
    gap: 3rem;
  }

  .slot-title {
    font-size: 1.8rem;
  }

  .slot-providers {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Direct Website Section */
.direct-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

.direct-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-secondary);
}

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

.direct-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.direct-text {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.direct-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.direct-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.direct-description {
  margin-bottom: 2.5rem;
}

.direct-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.direct-description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.direct-features {
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-number {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-lighter);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.feature-number:hover {
  background: var(--bg-darker);
  transform: translateX(8px);
  box-shadow: 0 8px 20px var(--shadow-dark);
}

.feature-number .number {
  background: var(--gradient-secondary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.access-info {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.access-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.access-info p:last-child {
  margin-bottom: 0;
}

.access-info strong {
  color: var(--primary-color);
}

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

.access-info a:hover {
  color: var(--accent-color);
}

.direct-cta {
  text-align: left;
}

.direct-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.direct-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-dark);
  transition: transform 0.3s ease;
  border: 2px solid var(--border-color);
}

.direct-img:hover {
  transform: scale(1.02) rotateY(-5deg);
  border-color: var(--secondary-color);
}

.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.security-item:hover {
  background: var(--gradient-secondary);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

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

.security-item:hover i {
  color: white;
}

.security-item span {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-item:hover span {
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .direct-section {
    padding: 60px 0;
  }

  .direct-container {
    padding: 0 15px;
  }

  .direct-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .direct-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .direct-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .direct-description p {
    font-size: 0.95rem;
  }

  .feature-list {
    gap: 1rem;
  }

  .feature-number {
    padding: 1rem;
  }

  .feature-number .number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .feature-content h4 {
    font-size: 0.9rem;
  }

  .feature-content p {
    font-size: 0.8rem;
  }

  .access-info {
    padding: 1.2rem;
  }

  .access-info p {
    font-size: 0.9rem;
  }

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

  .security-badges {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .security-item {
    padding: 0.8rem 0.5rem;
  }

  .security-item i {
    font-size: 1.1rem;
  }

  .security-item span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .direct-title {
    font-size: 1.4rem;
  }

  .direct-description p {
    font-size: 0.9rem;
  }

  .feature-number {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .feature-content h4 {
    font-size: 0.85rem;
  }

  .feature-content p {
    font-size: 0.75rem;
  }

  .security-badges {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .direct-container {
    padding: 0 30px;
  }

  .direct-content {
    gap: 3rem;
  }

  .direct-title {
    font-size: 1.8rem;
  }

  .feature-number {
    padding: 1rem;
  }

  .security-badges {
    grid-template-columns: 1fr 1fr;
  }
}

/* Auto System Section */
.auto-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-lighter) 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.auto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><polygon points="75,15 90,45 120,45 99,66 105,96 75,81 45,96 51,66 30,45 60,45" fill="rgba(78,205,196,0.1)"/><circle cx="25" cy="25" r="3" fill="rgba(255,230,109,0.1)"/><circle cx="125" cy="125" r="2" fill="rgba(255,107,53,0.1)"/></svg>') repeat;
  opacity: 0.2;
  animation: rotatePattern 40s linear infinite;
}

@keyframes rotatePattern {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

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

.auto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.auto-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px var(--shadow-dark);
  transition: all 0.4s ease;
  border: 3px solid var(--border-color);
}

.auto-img:hover {
  transform: scale(1.02) rotateZ(2deg);
  box-shadow: 0 30px 60px var(--shadow-dark);
  border-color: var(--accent-color);
}

.system-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.system-badge {
  background: var(--bg-darker);
  padding: 1rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  text-align: center;
}

.system-badge:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px var(--shadow-light);
}

.system-badge i {
  color: var(--accent-color);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.system-badge:hover i {
  color: white;
  transform: scale(1.2);
}

.system-badge span {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.system-badge:hover span {
  color: white;
}

.auto-text {
  animation: slideInRight 0.8s ease-out;
}

.auto-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.auto-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.auto-description {
  margin-bottom: 2.5rem;
}

.auto-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.auto-description strong {
  color: var(--accent-color);
  font-weight: 700;
}

.tech-highlights {
  margin-bottom: 2rem;
}

.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tech-row:last-child {
  margin-bottom: 0;
}

.tech-item {
  background: var(--bg-lighter);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.tech-item:hover {
  background: var(--bg-darker);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 230, 109, 0.2);
}

.tech-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tech-content h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.tech-content p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.auto-cta {
  text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .auto-section {
    padding: 60px 0;
  }

  .auto-container {
    padding: 0 15px;
  }

  .auto-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .auto-image {
    order: -1;
  }

  .auto-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .auto-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .auto-description p {
    font-size: 0.95rem;
  }

  .system-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .system-badge {
    padding: 0.8rem 0.5rem;
  }

  .system-badge i {
    font-size: 1.2rem;
  }

  .system-badge span {
    font-size: 0.75rem;
  }

  .tech-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .tech-item {
    padding: 1rem;
  }

  .tech-item i {
    font-size: 1.3rem;
  }

  .tech-content h4 {
    font-size: 0.9rem;
  }

  .tech-content p {
    font-size: 0.75rem;
  }

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

@media (max-width: 480px) {
  .auto-title {
    font-size: 1.4rem;
  }

  .auto-description p {
    font-size: 0.9rem;
  }

  .system-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .tech-item {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
    padding: 0.8rem;
  }

  .tech-content h4 {
    font-size: 0.85rem;
  }

  .tech-content p {
    font-size: 0.7rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .auto-container {
    padding: 0 30px;
  }

  .auto-content {
    gap: 3rem;
  }

  .auto-title {
    font-size: 1.8rem;
  }

  .system-features {
    grid-template-columns: 1fr 1fr;
  }

  .tech-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Register Section */
.register-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

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

.register-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.register-text {
  animation: fadeInUp 0.8s ease-out;
}

.register-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.register-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.register-description {
  margin-bottom: 2.5rem;
}

.register-description p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.register-description a:hover {
  color: var(--accent-color);
}

.register-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-lighter);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--bg-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: var(--bg-darker);
  transform: translateX(10px);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  min-width: 20px;
}

.benefit-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.payment-info {
  background: var(--bg-lighter);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.payment-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-secondary);
}

.payment-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.payment-info p:last-child {
  margin-bottom: 0;
}

.payment-info strong {
  color: var(--secondary-color);
}

.payment-info a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.payment-info a:hover {
  color: var(--primary-color);
}

.register-cta {
  text-align: left;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.register-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-dark);
  transition: transform 0.3s ease;
  border: 2px solid var(--border-color);
}

.register-img:hover {
  transform: scale(1.02) rotateY(5deg);
  border-color: var(--accent-color);
}

.bonus-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.bonus-card {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

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

.bonus-card:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px var(--shadow-light);
}

.bonus-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.bonus-card:hover i {
  color: white;
}

.bonus-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.bonus-card:hover h4 {
  color: white;
}

.bonus-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.bonus-card:hover p {
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 0;
  }

  .register-container {
    padding: 0 15px;
  }

  .register-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .register-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .register-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .register-description p {
    font-size: 0.95rem;
  }

  .register-benefits {
    padding: 1.2rem;
  }

  .benefit-item {
    padding: 0.6rem;
  }

  .benefit-item span {
    font-size: 0.9rem;
  }

  .payment-info {
    padding: 1.5rem;
  }

  .payment-info p {
    font-size: 0.9rem;
  }

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

  .btn-large {
    width: 100%;
    max-width: 300px;
  }

  .bonus-highlights {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    padding: 1.2rem;
  }

  .bonus-card i {
    font-size: 1.6rem;
  }

  .bonus-card h4 {
    font-size: 1rem;
  }

  .bonus-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .register-title {
    font-size: 1.4rem;
  }

  .register-description p {
    font-size: 0.9rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .benefit-item span {
    font-size: 0.85rem;
  }

  .payment-info {
    padding: 1.2rem;
  }

  .payment-info p {
    font-size: 0.85rem;
  }

  .bonus-card {
    padding: 1rem;
  }

  .bonus-card i {
    font-size: 1.4rem;
  }

  .bonus-card h4 {
    font-size: 0.9rem;
  }

  .bonus-card p {
    font-size: 0.75rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .register-container {
    padding: 0 30px;
  }

  .register-content {
    gap: 3rem;
  }

  .register-title {
    font-size: 1.8rem;
  }

  .bonus-highlights {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.footer {
  background: var(--bg-darker);
  border-top: 2px solid var(--border-color);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem 0;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-about {
  padding-right: 1rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-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;
}

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

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

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

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

.footer-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

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

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

.footer-link i {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-security {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

.security-badge:hover {
  background: var(--bg-dark);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.2);
}

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

.security-badge span {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

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

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.footer-disclaimer i {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0 1.5rem 0;
  }

  .footer-about {
    padding-right: 0;
    text-align: center;
  }

  .footer-title {
    text-align: center;
    font-size: 1rem;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-link {
    justify-content: center;
  }

  .footer-link:hover {
    transform: translateX(0) scale(1.05);
  }

  .security-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .security-badge {
    padding: 0.8rem;
  }

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

  .security-badge span {
    font-size: 0.75rem;
  }

  .footer-bottom-content {
    gap: 0.8rem;
  }

  .footer-disclaimer p {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1.5rem 0 1rem 0;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .contact-item {
    font-size: 0.85rem;
    justify-content: center;
  }

  .security-badges {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
  }

  .footer-disclaimer p {
    font-size: 0.75rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-info {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }

  .footer-info .footer-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
  }

  .security-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1281px) {
  .footer-content {
    gap: 3rem;
    padding: 4rem 0 2.5rem 0;
  }

  .footer-about {
    padding-right: 2rem;
  }
}

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

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

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

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

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

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

/* Individual Button Colors */
.sticky-btn-login:hover {
  background: var(--gradient-secondary);
  color: white;
}

.sticky-btn-login:hover i,
.sticky-btn-login:hover .sticky-btn-text {
  color: white;
  transform: scale(1.1);
}

.sticky-btn-register {
  background: linear-gradient(135deg, var(--primary-color), #e55a2b);
  color: white;
}

.sticky-btn-register .sticky-btn-text,
.sticky-btn-register i {
  color: white;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #e55a2b, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

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

.sticky-btn-bonus:hover {
  background: var(--gradient-primary);
  color: white;
}

.sticky-btn-bonus:hover i,
.sticky-btn-bonus:hover .sticky-btn-text {
  color: white;
  transform: scale(1.1);
}

/* Pulse Animation for Bonus Button */
.sticky-btn-bonus {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 230, 109, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 230, 109, 0.6), 0 0 30px rgba(255, 230, 109, 0.4);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top: 2px solid var(--border-color);
  }

  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
  }

  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }

  .sticky-btn-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
  }

  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .sticky-btn-text {
    font-size: 0.7rem;
    letter-spacing: 0.1px;
  }
}

@media (max-width: 360px) {
  .sticky-btn-text {
    font-size: 0.65rem;
  }

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

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .sticky-btn {
    padding: 14px 10px;
    min-height: 65px;
  }

  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  .sticky-btn-text {
    font-size: 0.85rem;
  }
}

/* Large Desktop */
@media (min-width: 1025px) {
  .sticky-btn {
    padding: 16px 12px;
    min-height: 70px;
  }

  .sticky-btn i {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .sticky-btn-text {
    font-size: 0.9rem;
  }
}

/* Ensure sticky buttons don't interfere with content */
body {
  padding-bottom: 60px;
}

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

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

@media (min-width: 769px) and (max-width: 1024px) {
  body {
    padding-bottom: 65px;
  }
}

@media (min-width: 1025px) {
  body {
    padding-bottom: 70px;
  }
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(78,205,196,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,230,109,0.1)"/></svg>') repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

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

.login-box {
  background: var(--bg-lighter);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
}

.login-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.login-form-container {
  margin-bottom: 2rem;
}

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

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.password-input-container {
  position: relative;
}

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

.password-toggle:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.input-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.input-error:before {
  content: '⚠';
  font-size: 0.7rem;
}

.login-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

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

.btn-loading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.register-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.login-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: var(--accent-color);
}

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

.login-security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

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

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

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

.security-item span {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .login-container {
    padding: 0 15px;
  }

  .login-box {
    padding: 2rem;
    border-radius: 15px;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .login-title {
    font-size: 1.6rem;
  }

  .login-subtitle {
    font-size: 0.9rem;
  }

  .login-links {
    flex-direction: column;
    gap: 1rem;
  }

  .login-security {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .form-input {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 120px 0;
  }

  .login-box {
    padding: 1.5rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .login-title {
    font-size: 1.4rem;
  }

  .login-subtitle {
    font-size: 0.85rem;
  }

  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .login-btn {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .register-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .login-link {
    font-size: 0.85rem;
  }

  .security-item {
    padding: 0.8rem;
  }

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

  .security-item span {
    font-size: 0.75rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .login-container {
    max-width: 500px;
    padding: 0 30px;
  }

  .login-box {
    padding: 3rem;
  }

  .login-security {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,107,53,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(78,205,196,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,230,109,0.1)"/></svg>') repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

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

.register-box {
  background: var(--bg-lighter);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  animation: slideInUp 0.8s ease-out;
}

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

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

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

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
}

.register-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.register-form-container {
  margin-bottom: 2rem;
}

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

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #28a745;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  animation: bounceIn 0.5s ease-in-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.form-group {
  margin-bottom: 2rem;
}

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

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

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

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

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  animation: shake 0.5s ease-in-out;
}

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}

.input-error:before {
  content: '⚠';
  font-size: 0.8rem;
}

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

.input-helper i {
  color: var(--secondary-color);
  font-size: 0.7rem;
}

.register-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px var(--shadow-light);
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-light);
}

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

.btn-loading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.register-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.register-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: var(--accent-color);
}

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

.register-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.feature-item:hover {
  background: var(--bg-darker);
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

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

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

.register-benefits {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.benefits-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: center;
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.benefits-list li i {
  color: var(--accent-color);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .register-container {
    padding: 0 15px;
  }

  .register-box {
    padding: 2rem;
    border-radius: 15px;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }

  .register-title {
    font-size: 1.6rem;
  }

  .register-subtitle {
    font-size: 0.9rem;
  }

  .register-links {
    flex-direction: column;
    gap: 1rem;
  }

  .register-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 120px 0;
  }

  .register-box {
    padding: 1.5rem;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .register-title {
    font-size: 1.4rem;
  }

  .register-subtitle {
    font-size: 0.85rem;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .register-btn {
    padding: 14px 16px;
    font-size: 1.1rem;
  }

  .login-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .register-link {
    font-size: 0.85rem;
  }

  .feature-item {
    padding: 0.8rem;
  }

  .feature-item i {
    font-size: 1.1rem;
  }

  .feature-item span {
    font-size: 0.75rem;
  }

  .register-benefits {
    padding: 1.2rem;
  }

  .benefits-title {
    font-size: 1rem;
  }

  .benefits-list li {
    font-size: 0.85rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .register-container {
    max-width: 500px;
    padding: 0 30px;
  }

  .register-box {
    padding: 3rem;
  }

  .register-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,20 120,80 180,80 135,120 155,180 100,145 45,180 65,120 20,80 80,80" fill="rgba(255,230,109,0.1)" opacity="0.5"/><circle cx="50" cy="50" r="3" fill="rgba(255,107,53,0.1)"/><circle cx="150" cy="150" r="2" fill="rgba(78,205,196,0.1)"/></svg>') repeat;
  opacity: 0.3;
  animation: sparkle 25s linear infinite;
}

@keyframes sparkle {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  100% {
    transform: translateX(-200px) translateY(-200px) rotate(360deg);
  }
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

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

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

.highlight-item {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.highlight-item:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px var(--shadow-light);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.highlight-item:hover i {
  color: white;
}

.highlight-item span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: color 0.3s ease;
}

.highlight-item:hover span {
  color: white;
}

.hero-cta {
  margin-top: 2rem;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

.promotion-section.promotion-alt {
  background: var(--bg-lighter);
}

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

.promotion-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.promotion-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.promotion-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.promotion-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px var(--shadow-light);
  margin-bottom: 1rem;
}

.promotion-badge.promotion-hot {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px var(--shadow-light);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--shadow-light);
  }
}

.promotion-description {
  text-align: center;
  margin-bottom: 2.5rem;
}

.promotion-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

.promotion-features {
  margin-bottom: 2.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.feature-item {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-alt .feature-item {
  background: var(--bg-dark);
}

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

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

.feature-item:hover {
  background: var(--bg-darker);
  transform: translateX(10px);
  box-shadow: 0 8px 25px var(--shadow-dark);
  border-left-color: var(--secondary-color);
}

.feature-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
  min-width: 24px;
  text-align: center;
}

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

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

/* Button Variations */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-light);
  color: white;
}

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

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
  }

  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-item {
    padding: 1.2rem;
  }

  .highlight-item i {
    font-size: 1.5rem;
  }

  .promotion-section {
    padding: 60px 0;
  }

  .promotion-title {
    font-size: 1.6rem;
  }

  .promotion-description p {
    font-size: 1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .feature-item:hover {
    transform: translateY(-5px);
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .highlight-item i {
    font-size: 1.3rem;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }

  .promotion-title {
    font-size: 1.4rem;
  }

  .promotion-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .feature-item i {
    font-size: 1.1rem;
  }

  .feature-item span {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }

  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .promotion-title {
    font-size: 1.8rem;
  }

  .feature-item {
    flex-direction: row;
    padding: 1.3rem;
  }
}

/* Large Desktop */
@media (min-width: 1281px) {
  .hero-section {
    padding: 120px 0 100px 0;
  }

  .promotion-section {
    padding: 100px 0;
  }

  .hero-title {
    font-size: 3rem;
  }

  .promotion-title {
    font-size: 2.2rem;
  }
}