/* Base Styles and Variables */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #ff6b00;
  --secondary-color: #a435f0;
  --accent-color: #1ec0ff;
  --dark-bg: #0f1021;
  --darker-bg: #07081a;
  --dark-card: #191d36;
  --text-light: #ffffff;
  --text-gray: #b3b7d1;
  --text-dark: #717591;
  --gold-gradient: linear-gradient(135deg, #ffd700, #ff8a00);
  --purple-gradient: linear-gradient(135deg, #a435f0, #4b0082);
  --section-padding: 100px 0;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-family: 'Prompt', sans-serif;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--text-gray);
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 2.2rem;
}

.accent-line {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 0 auto;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.primary-btn {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

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

.secondary-btn {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(164, 53, 240, 0.2);
}

.secondary-btn:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(164, 53, 240, 0.3);
}

.accent-btn {
  background: var(--accent-color);
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(30, 192, 255, 0.3);
}

.accent-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 192, 255, 0.4);
}

/* Logo Styling Enhancements */
.logo-link, .footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-link:hover, .footer-logo-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.logo-icon, .footer-logo-icon {
  width: 38px;
  height: 38px;
  margin-right: 12px;
  filter: drop-shadow(0 2px 5px rgba(255, 107, 0, 0.5));
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon, 
.footer-logo-link:hover .footer-logo-icon {
  transform: rotate(10deg);
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
}

.logo h1, .footer-logo h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--text-light) 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.logo h1 span, .footer-logo h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
}

.logo h1:after, .footer-logo h2:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.logo-link:hover h1:after, 
.footer-logo-link:hover h2:after {
  width: 100%;
}

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

.footer-logo p {
  margin-top: 8px;
  margin-left: 44px;
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--text-gray);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(7, 8, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 15px 0;
}

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

.logo .logo-text {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
#hero {
  padding-top: 150px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(15, 16, 33, 0.9), rgba(10, 11, 25, 0.95)), url('0124_2_a-photo-of-three-very-sexy-asian-women-w_bbzuMGDTQkKznSmnWJek2A_qOSnCe3xS1iUFmMvROJBpA_cover.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(164, 53, 240, 0.2) 0%, rgba(30, 192, 255, 0.1) 50%, rgba(15, 16, 33, 0) 70%);
}

#hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(164, 53, 240, 0.2));
  z-index: 2;
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--darker-bg);
}

.section-gradient {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 60%),
              radial-gradient(circle at bottom left, rgba(164, 53, 240, 0.1), transparent 60%);
}

.section-pattern {
  background-color: var(--dark-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23191d36' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Welcome Section */
.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-block {
  background-color: var(--dark-card);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-gradient);
  z-index: -1;
}

.content-block h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.content-block p {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.game-card {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.overlay i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.overlay span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-card:hover .overlay {
  opacity: 1;
}

.game-info {
  padding: 20px;
}

.game-info h3 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.game-features span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.game-features span i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Promotion Section */
.promotion-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.promotion-card {
  background-color: var(--dark-card);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promotion-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  z-index: -1;
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.promotion-icon {
  width: 70px;
  height: 70px;
  background: var(--purple-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(164, 53, 240, 0.3);
}

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

.promotion-card h3 {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* About Section */
.about-content {
  display: flex;
  justify-content: center;
}

.about-text {
  max-width: 800px;
  text-align: center;
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

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

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 70px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-links ul li a {
  color: var(--text-gray);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.social-icons a i {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  background-color: rgba(7, 8, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  padding: 15px 5px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
  background-color: var(--dark-card);
  color: var(--text-light);
}

.register {
  background: var(--gold-gradient);
  color: var(--dark-bg);
}

.free-credit {
  background: var(--purple-gradient);
  color: var(--text-light);
}

.sticky-btn:hover {
  filter: brightness(1.2);
}

/* Media Queries */
@media (max-width: 992px) {
  #hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .section-header {
    margin-bottom: 30px;
  }

  nav ul {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
  
  .content-block {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .footer-content {
    gap: 30px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .footer-logo-icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }
  
  .footer-logo h2 {
    font-size: 1.3rem;
  }
  
  .footer-logo p {
    margin-left: 34px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 50px 0;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

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

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .sticky-btn {
    padding: 12px 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
  }
  
  .game-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* About Casino Section */
.about-casino-wrapper {
  position: relative;
  z-index: 2;
}

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

.about-casino-content {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.about-casino-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.about-casino-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(164, 53, 240, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.about-casino-text {
  margin-bottom: 30px;
}

.about-casino-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-casino-text p:last-child {
  margin-bottom: 0;
}

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

.about-casino-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.feature-card {
  display: flex;
  background: linear-gradient(135deg, rgba(25, 29, 54, 0.7), rgba(15, 16, 33, 0.9));
  border-radius: var(--border-radius);
  padding: 25px;
  transition: var(--transition);
  border-left: 3px solid var(--secondary-color);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--purple-gradient);
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.feature-details h3 {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.casino-advantages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(25, 29, 54, 0.5), rgba(15, 16, 33, 0.6));
  border-radius: var(--border-radius);
  padding: 25px;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-width: 130px;
}

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

.advantage-item span {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-casino-content {
    padding: 30px 20px;
  }
  
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .about-casino-features {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .about-casino-features {
    grid-template-columns: 1fr;
  }
  
  .casino-advantages {
    gap: 20px;
    padding: 20px 15px;
  }
  
  .advantage-item {
    min-width: 110px;
  }
}

/* Login Guide Section */
.login-guide-wrapper {
  position: relative;
  z-index: 2;
}

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

.login-guide-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  position: relative;
}

.login-steps-container {
  position: relative;
}

.login-steps {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.login-steps:last-child {
  margin-bottom: 0;
}

.step-indicator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 40px;
  width: 3px;
  height: calc(100% + 30px);
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.3;
}

.login-steps:last-child .step-line {
  display: none;
}

.step-content {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 25px;
  flex-grow: 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid transparent;
  border-image: var(--purple-gradient);
  border-image-slice: 1;
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.step-content p:last-child {
  margin-bottom: 0;
}

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

.login-requirements {
  background-color: rgba(15, 16, 33, 0.5);
  border-radius: var(--border-radius);
  padding: 15px 20px;
  margin: 15px 0;
}

.login-requirements li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-light);
}

.login-requirements li:last-child {
  margin-bottom: 0;
}

.login-requirements li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.login-demonstration {
  position: sticky;
  top: 100px;
  align-self: start;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.login-demonstration:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.login-demo-card {
  background: linear-gradient(145deg, var(--dark-card), var(--darker-bg));
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.login-card-header {
  background: var(--purple-gradient);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-card-header i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.login-card-header h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.3rem;
}

.login-simulation {
  padding: 25px;
}

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

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

.form-group-demo label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-light);
}

.form-group-demo label i {
  color: var(--primary-color);
}

.input-demo {
  height: 45px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn-demo {
  margin-top: 10px;
  width: 100%;
}

.login-help {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.9rem;
}

.login-help span {
  color: var(--text-gray);
  transition: var(--transition);
  cursor: pointer;
}

.login-help span:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .login-guide-content {
    grid-template-columns: 1fr;
  }

  .login-demonstration {
    position: static;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .login-steps {
    flex-direction: column;
  }

  .step-indicator {
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 15px;
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .step-content {
    padding: 20px 15px;
  }
}

/* Slot Games Section */
.slot-section-wrapper {
  position: relative;
  z-index: 2;
}

.slot-header {
  text-align: center;
  margin-bottom: 50px;
}

.slot-content {
  position: relative;
}

/* Slot Highlight Section */
.slot-highlight {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.slot-main-content {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.slot-main-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.slot-main-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.slot-main-content p:last-child {
  margin-bottom: 0;
}

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

.slot-providers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.slot-provider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.provider-icon {
  width: 60px;
  height: 60px;
  background: var(--purple-gradient);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(164, 53, 240, 0.3);
  transition: var(--transition);
}

.slot-provider-item:hover .provider-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(164, 53, 240, 0.4);
}

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

/* Slot Features Section */
.slot-features {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slot-feature-box {
  background: linear-gradient(145deg, rgba(25, 29, 54, 0.9), rgba(15, 16, 33, 0.9));
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.slot-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.slot-feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.feature-box-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-box-content i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-box-content h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  margin: 0;
}

.feature-box-content p {
  margin: 0;
  line-height: 1.7;
}

.slot-game-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-machine {
  width: 250px;
  height: 300px;
  background: linear-gradient(145deg, #232644, #11122a);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slot-screen {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  margin: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slot-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(164, 53, 240, 0.1));
  z-index: 1;
}

.slot-screen i {
  font-size: 2.5rem;
  color: var(--text-light);
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  animation: pulse 2s infinite;
}

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

.slot-screen i:nth-child(1) { animation-delay: 0s; }
.slot-screen i:nth-child(2) { animation-delay: 0.3s; }
.slot-screen i:nth-child(3) { animation-delay: 0.6s; }

.slot-handle {
  position: absolute;
  top: 50px;
  right: -15px;
  width: 30px;
  height: 80px;
  background: var(--gold-gradient);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.slot-handle::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: var(--gold-gradient);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
}

.slot-base {
  height: 70px;
  background: linear-gradient(to bottom, #232644, #11122a);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slot-button {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.slot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

/* Slot Advantages Section */
.slot-advantages {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.slot-advantages::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(164, 53, 240, 0.1), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.advantages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advantages-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.advantages-text p:last-child {
  margin-bottom: 0;
}

.start-playing {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

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

.start-playing .btn i {
  margin-left: 10px;
}

/* Media Queries */
@media (max-width: 992px) {
  .slot-features {
    grid-template-columns: 1fr;
  }
  
  .slot-game-display {
    order: -1;
    margin-bottom: 30px;
  }
  
  .slot-machine {
    width: 220px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .slot-providers {
    gap: 15px;
  }
  
  .provider-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .feature-box-content {
    padding: 20px;
  }
  
  .slot-advantages {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .slot-main-content {
    padding: 25px 20px;
  }
  
  .slot-machine {
    width: 200px;
    height: 250px;
  }
  
  .start-playing .btn {
    width: 100%;
  }
}

/* Special Promotions Section */
.promo-section-wrapper {
  position: relative;
  z-index: 2;
}

.promo-header {
  text-align: center;
  margin-bottom: 50px;
}

.promo-content {
  position: relative;
}

.promo-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  background-color: rgba(25, 29, 54, 0.7);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.promo-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

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

/* Promo Carousel */
.promo-carousel {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}

.promo-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  min-height: auto;
}

.promo-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 15px;
  transition: opacity 0.3s ease;
  opacity: 0.4;
  min-height: auto;
}

.promo-slide.active {
  opacity: 1;
}

.promo-card {
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
}

.promo-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.promo-card:hover .promo-card-inner {
  transform: none;
}

.promo-card-front,
.promo-card-back {
  position: relative;
  width: 100%;
  backface-visibility: visible;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.promo-card-front {
  background: linear-gradient(135deg, var(--dark-card), var(--darker-bg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  min-height: auto;
}

.promo-card-back {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-card));
  transform: none;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.promo-card-front::after {
  content: '';
  display: block;
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 15px auto 0;
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold-gradient);
  color: var(--dark-bg);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: var(--purple-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(164, 53, 240, 0.3);
}

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

.promo-card-front h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.promo-highlight {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}

.promo-card-back p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.promo-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.promo-prev,
.promo-next {
  background: var(--dark-card);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-prev:hover,
.promo-next:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.promo-indicators {
  display: flex;
  gap: 10px;
}

.promo-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.promo-indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Promo Details */
.promo-details {
  margin-bottom: 50px;
}

.promo-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.promo-detail-item {
  display: flex;
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  position: relative;
}

.promo-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.promo-detail-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--purple-gradient);
}

.detail-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 25px 15px;
  background: rgba(15, 16, 33, 0.5);
}

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

.detail-content {
  padding: 25px;
  flex: 1;
}

.detail-content h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.detail-content p {
  margin-bottom: 0;
  line-height: 1.7;
}

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

/* Promo Footer */
.promo-footer {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.promo-tip {
  display: flex;
  padding: 30px;
  background: linear-gradient(135deg, rgba(25, 29, 54, 0.7), rgba(15, 16, 33, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-right: 25px;
}

.tip-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-top: 5px;
}

.tip-content h4 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.tip-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.tip-content p:last-child {
  margin-bottom: 0;
}

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

.promo-cta {
  padding: 30px;
  display: flex;
  justify-content: center;
}

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

.promo-cta .btn i {
  margin-left: 10px;
}

/* Media Queries */
@media (max-width: 992px) {
  .promo-tip {
    flex-direction: column;
  }
  
  .tip-icon {
    margin-right: 0;
    margin-bottom: 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .promo-intro {
    padding: 20px;
  }
  
  .promo-card-front,
  .promo-card-back {
    padding: 30px 20px;
  }
  
  .promo-details-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-detail-item {
    flex-direction: column;
  }
  
  .detail-icon {
    padding: 20px;
    justify-content: flex-start;
  }
  
  .promo-tip,
  .promo-cta {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .promo-carousel-inner {
    min-height: 400px;
  }
  
  .promo-card-front,
  .promo-card-back {
    min-height: 400px;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 1.8rem;
  }
  
  .promo-card-front h3 {
    font-size: 1.6rem;
  }
  
  .promo-highlight {
    font-size: 2.5rem;
  }
  
  .promo-cta .btn {
    width: 100%;
  }
}

/* Why Choose Us Section */
#why-choose-us {
  position: relative;
  background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
  overflow: hidden;
}

#why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

#why-choose-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(164, 53, 240, 0.1), transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.why-choose-wrapper {
  position: relative;
  z-index: 1;
}

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

.why-choose-header h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.intro-paragraph {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
  font-size: 1.1rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.why-choose-card {
  background-color: rgba(25, 29, 54, 0.6);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 1.4rem;
}

.why-choose-highlight {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.highlight-image {
  background: linear-gradient(135deg, rgba(25, 29, 54, 0.9), rgba(7, 8, 26, 0.95));
  border-radius: var(--border-radius);
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-icons {
  display: flex;
  gap: 40px;
}

.floating-icons i {
  font-size: 3rem;
  color: var(--primary-color);
  animation: float 3s ease-in-out infinite;
  opacity: 0.8;
}

.floating-icons i:nth-child(2) {
  animation-delay: 0.5s;
  color: var(--secondary-color);
}

.floating-icons i:nth-child(3) {
  animation-delay: 1s;
  color: var(--accent-color);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.highlight-content {
  padding: 20px;
}

.highlight-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.point-text h4 {
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 1.3rem;
}

.why-choose-conclusion {
  background: rgba(25, 29, 54, 0.6);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.why-choose-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.why-choose-conclusion p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-highlight {
    grid-template-columns: 1fr;
  }

  .highlight-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .why-choose-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .card-icon {
    margin-bottom: 15px;
  }

  .point {
    flex-direction: column;
  }

  .point i {
    margin-bottom: 10px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Navigation adjustment */
@media (max-width: 970px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--darker-bg);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }

  nav ul.active {
    display: flex;
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
  }

  .mobile-menu.active i:before {
    content: "\f00d";
  }
}
