/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #f4f1e8;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Egyptian Color Palette */
  :root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4a1;
    --gold-dark: #b8941f;
    --bronze: #cd7f32;
    --dark-brown: #2d1810;
    --light-brown: #8b4513;
    --cream: #f4f1e8;
    --dark-bg: #1a1a1a;
    --accent-blue: #4a90e2;
    --success-green: #27ae60;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    color: var(--gold-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  p {
    margin-bottom: 1rem;
    color: var(--cream);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
  }
  
  .btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-dark);
  }
  
  .nav {
    padding: 1rem 0;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
  }
  
  .nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: var(--gold-primary);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
  }
  
  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 24, 16, 0.8) 100%);
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 80px;
  }
  
  .hero-text {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0.9;
  }
  
  .game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid var(--gold-dark);
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }
  
  .stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
  }
  
  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  /* Section Styles */
  section {
    padding: 5rem 0;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Casinos Section */
  .casinos-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-brown) 100%);
  }
  
  .casinos-section h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .casino-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(45, 24, 16, 0.1) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .casino-card.featured {
    border: 2px solid var(--gold-primary);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  }
  
  .casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  }
  
  .casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .casino-header img {
    height: 50px;
    object-fit: contain;
  }
  
  .rating {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
  }
  
  .casino-features {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .casino-features li {
    padding: 0.5rem 0;
    color: var(--cream);
    opacity: 0.9;
  }
  
  .casino-bonuses {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }
  
  .casino-bonuses h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
  }
  
  .casino-bonuses ul {
    list-style: none;
  }
  
  .casino-bonuses li {
    padding: 0.3rem 0;
    color: var(--cream);
  }
  
  /* Features Section */
  .features-section {
    background: var(--dark-bg);
  }
  
  .features-section h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(45, 24, 16, 0.1) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  /* How to Play Section */
  .how-to-play-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-bg) 100%);
  }
  
  .how-to-play-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 1rem;
  }
  
  .how-to-play-section .section-subtitle {
    text-align: center;
    color: var(--cream);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--gold-dark);
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 161, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .step:hover::before {
    opacity: 1;
  }
  
  .step:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  }
  
  .step-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--dark-brown), var(--light-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-dark);
  }
  
  .step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .step:hover .step-img {
    transform: scale(1.05);
  }
  
  .step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(45, 24, 16, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .step:hover .step-overlay {
    opacity: 1;
  }
  
  .step-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 3;
  }
  
  .step-content {
    position: relative;
    z-index: 2;
  }
  
  .step-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  
  .step-content p {
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .step-details {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .step-details li {
    color: var(--cream);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .step-details li:last-child {
    border-bottom: none;
  }
  
  .how-to-play-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--gold-dark);
    margin-top: 2rem;
  }
  
  .how-to-play-cta .cta-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  .how-to-play-cta .cta-content p {
    color: var(--cream);
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .how-to-play-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .how-to-play-cta .btn {
    min-width: 250px;
  }
  
  /* Screenshots Section */
  .screenshots-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.03">𓂀</text></svg>') repeat;
    pointer-events: none;
    z-index: 0;
  }
  
  .screenshots-section .container {
    position: relative;
    z-index: 1;
  }
  
  .screenshots-section h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .screenshots-gallery {
    margin-top: 3rem;
  }
  
  .main-screenshot {
    margin-bottom: 2rem;
  }
  
  .main-screenshot img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  }
  
  .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(45, 24, 16, 0.1) 100%);
    border: 1px solid var(--gold-dark);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  
  .screenshot-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-primary);
  }
  
  .screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .screenshot-item:hover img {
    transform: scale(1.1);
  }
  
  .screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  
  .screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
  }
  
  .screenshot-overlay h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  
  .screenshot-overlay p {
    color: var(--cream);
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }
  
  .main-screenshot .screenshot-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .main-screenshot:hover .screenshot-overlay {
    opacity: 1;
  }
  
  .main-screenshot .screenshot-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .main-screenshot .screenshot-overlay p {
    font-size: 1rem;
  }
  
  .screenshots-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Screenshot Modal (for future enhancement) */
  .screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
  }
  
  .screenshot-modal img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
  }
  
  .screenshot-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gold-primary);
    color: var(--dark-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Demo Section */
  .demo-section {
    background: var(--dark-bg);
    text-align: center;
  }
  
  .demo-content h2 {
    margin-bottom: 1rem;
  }
  
  .demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
  }
  
  .demo-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: var(--cream);
  }
  
  .demo-icon {
    font-size: 1.5rem;
  }
  
  /* FAQ Section */
  .faq-section {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-bg) 100%);
  }
  
  .faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .faq-grid {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
  }
  
  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: bold;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--cream);
    opacity: 0.9;
  }
  
  /* Footer */
  .footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--gold-dark);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.3rem;
  }
  
  .footer-logo img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section li {
    padding: 0.3rem 0;
  }
  
  .footer-section a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .footer-section a:hover {
    opacity: 1;
    color: var(--gold-primary);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-dark);
    color: var(--cream);
    opacity: 0.8;
  }
  
  /* Mobile Responsive Design */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      display: none;
    }
  
    .nav-cta {
      display: none;
    }
  
    .hero-content {
      padding-top: 100px;
    }
  
    .hero-ctas {
      flex-direction: column;
      align-items: center;
    }
  
    .btn-large {
      width: 100%;
      max-width: 300px;
    }
  
    .casinos-grid {
      grid-template-columns: 1fr;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
        .steps-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .step {
      padding: 1.5rem;
    }

    .step-image {
      height: 180px;
      margin-bottom: 1rem;
    }

    .step-number {
      top: -10px;
      right: 15px;
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }

    .step-content h3 {
      font-size: 1.2rem;
    }

    .how-to-play-cta {
      padding: 2rem 1rem;
    }

    .how-to-play-cta .cta-content h3 {
      font-size: 1.5rem;
    }

    .how-to-play-cta .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .how-to-play-cta .btn {
      min-width: 200px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .game-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .screenshots-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .screenshot-item img {
      height: 180px;
    }
  
    .main-screenshot .screenshot-overlay {
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      padding: 1.5rem;
    }
  
    .screenshots-cta {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    section {
      padding: 3rem 0;
    }
  
    .casino-card,
    .feature-card,
    .step {
      padding: 1.5rem;
    }
  
    .game-stats {
      grid-template-columns: 1fr;
      padding: 1.5rem;
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-text {
    animation: fadeInUp 1s ease-out;
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* Focus styles */
  button:focus,
  .btn:focus,
  a:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
  }
  
  /* Loading states */
  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  /* Hover effects for touch devices */
  @media (hover: hover) {
    .casino-card:hover,
    .feature-card:hover,
    .btn:hover {
      /* Hover effects only apply on devices that support hover */
    }
  }

  /* New Sections Styles */
  
  /* Overview Section */
  .overview-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(45, 35, 25, 0.95));
    padding: 4rem 0;
  }
  
  .overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .overview-text h3 {
    color: var(--gold-primary);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
  }
  
  .overview-features {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .overview-features li {
    padding: 0.5rem 0;
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .overview-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .overview-image:hover img {
    transform: scale(1.05);
  }
  
  /* Specifications Section */
  .specifications-section {
    background: linear-gradient(to bottom, var(--dark-bg), rgba(45, 35, 25, 0.9));
    padding: 4rem 0;
  }
  
  .specifications-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .spec-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(60, 45, 30, 0.8));
    border: 2px solid var(--gold-dark);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
  }
  
  .spec-card:hover::before {
    left: 100%;
  }
  
  .spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  }
  
  .spec-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
  
  .spec-card ul {
    list-style: none;
    text-align: left;
  }
  
  .spec-card li {
    padding: 0.5rem 0;
    color: var(--cream);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  .spec-card li:last-child {
    border-bottom: none;
  }
  
  .spec-card strong {
    color: var(--gold-primary);
  }
  
  /* Mobile responsiveness for new sections */
  @media (max-width: 768px) {
    .overview-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .overview-image {
      order: -1;
    }
    
    .overview-image img {
      height: 250px;
    }
    
    .specifications-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .spec-card {
      padding: 1.5rem;
    }
    
    .overview-features li {
      font-size: 1rem;
    }
  }

  /* Why Best Egyptian Tombs Slot Section */
  .why-best-section {
    background: linear-gradient(135deg, #2d1810 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
  }
  
  .why-best-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"><defs><pattern id="pyramidPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 45,40 5,40" fill="rgba(212,175,55,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pyramidPattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
  }
  
  .why-best-section .container {
    position: relative;
    z-index: 2;
  }
  
  .why-best-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
  }
  
  .comparison-card {
    background: rgba(45, 24, 16, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .comparison-card:hover::before {
    opacity: 1;
  }
  
  .comparison-card.highlight {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
  }
  
  .comparison-card.highlight::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    opacity: 1;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .card-header h3 {
    margin: 0;
    font-size: 1.8rem;
  }
  
  .badge-winner {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }
  
  .badge-standard {
    background: rgba(139, 69, 19, 0.8);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .card-content {
    position: relative;
    z-index: 2;
  }
  
  .advantage-item, .disadvantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .advantage-item {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--success-green);
  }
  
  .advantage-item:hover {
    background: rgba(39, 174, 96, 0.15);
    transform: translateX(5px);
  }
  
  .disadvantage-item {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
  }
  
  .disadvantage-item:hover {
    background: rgba(231, 76, 60, 0.15);
  }
  
  .advantage-icon, .disadvantage-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
  }
  
  .advantage-text h4, .disadvantage-text h4 {
    color: var(--gold-primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
  }
  
  .advantage-text p, .disadvantage-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .superiority-stats {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid var(--gold-dark);
  }
  
  .superiority-stats h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    display: block;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  
  .stat-comparison {
    display: block;
    font-size: 0.85rem;
    color: rgba(244, 241, 232, 0.7);
    font-style: italic;
  }
  
  .why-choose-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
  }
  
  .why-choose-cta::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="50" cy="50" r="2" fill="rgba(26,26,26,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
  }
  
  .cta-content h3 {
    color: var(--dark-bg);
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    color: var(--dark-bg);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .why-choose-cta .btn-primary {
    background: var(--dark-bg);
    color: var(--gold-primary);
    border: 2px solid var(--dark-bg);
  }
  
  .why-choose-cta .btn-primary:hover {
    background: transparent;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
  }
  
  .why-choose-cta .btn-secondary {
    background: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
  }
  
  .why-choose-cta .btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--gold-primary);
  }

  /* Demo Page Specific Styles */
  
  /* Demo Preview */
  .demo-preview {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
  }
  
  .demo-preview:hover {
    transform: scale(1.02);
  }
  
  .demo-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
  }
  
  .demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .demo-preview:hover .demo-overlay {
    opacity: 1;
  }
  
  .play-button {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--dark-bg);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .demo-preview:hover .play-button {
    transform: scale(1);
  }
  
  /* Demo Benefits Section */
  .demo-benefits-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(50, 40, 30, 0.95));
    padding: 4rem 0;
  }
  
  .demo-benefits-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .benefit-card {
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9), rgba(65, 50, 35, 0.8));
    border: 2px solid var(--gold-dark);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
  }
  
  .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .benefit-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  
  .benefit-card p {
    color: var(--cream);
    line-height: 1.6;
  }
  
  /* Demo Instructions Section */
  .demo-instructions-section {
    background: var(--dark-bg);
    padding: 4rem 0;
  }
  
  .demo-instructions-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .instruction-step {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(60, 45, 30, 0.8));
    border: 2px solid var(--gold-dark);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .instruction-step:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
  }
  
  .step-number {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--dark-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  }
  
  .instruction-step h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .instruction-step p {
    color: var(--cream);
    line-height: 1.6;
  }
  
  /* Comparison Table Section */
  .comparison-section {
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.95), rgba(45, 35, 25, 0.95));
    padding: 4rem 0;
  }
  
  .comparison-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
  }
  
  .comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(60, 45, 30, 0.8));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  .comparison-table th {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .comparison-table td {
    color: var(--cream);
  }
  
  .comparison-table td:first-child {
    color: var(--gold-primary);
    font-weight: 600;
  }
  
  .comparison-table tr:last-child td {
    border-bottom: none;
  }
  
  /* Strategy Guide Section */
  .strategy-guide-section {
    background: var(--dark-bg);
    padding: 4rem 0;
  }
  
  .strategy-guide-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .strategy-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--cream);
    line-height: 1.7;
  }
  
  .strategy-content h3 {
    color: var(--gold-primary);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
  }
  
  .strategy-content h4 {
    color: var(--gold-secondary);
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
  }
  
  .strategy-list {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .strategy-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-left: 3px solid var(--gold-dark);
    margin-bottom: 0.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 0 8px 8px 0;
  }
  
  .strategy-list li::before {
    content: '🏺';
    position: absolute;
    left: -0.5rem;
    top: 0.8rem;
    background: var(--dark-bg);
    padding: 0.2rem;
    border-radius: 50%;
  }
  
  /* Demo FAQ Section */
  .demo-faq-section {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(50, 40, 30, 0.95));
    padding: 4rem 0;
  }
  
  .demo-faq-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  /* Demo CTA Section */
  .demo-cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    padding: 4rem 0;
    text-align: center;
  }
  
  .cta-content h2 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  .cta-content p {
    color: var(--dark-bg);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-buttons .btn {
    min-width: 250px;
  }
  
  /* Active navigation state */
  .nav-menu a.active {
    color: var(--gold-primary);
    position: relative;
  }
  
  .nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
  }
  
  /* Breadcrumb Navigation Styles */
  .breadcrumb-nav {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(45, 35, 25, 0.95));
    padding: 1rem 0;
    border-bottom: 1px solid var(--gold-dark);
    margin-top: 80px;
  }
  
  .breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--cream);
    font-size: 0.9rem;
  }
  
  .breadcrumb-item:not(:last-child)::after {
    content: '▶';
    margin: 0 0.75rem;
    color: var(--gold-dark);
    font-size: 0.7rem;
  }
  
  .breadcrumb-item a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .breadcrumb-item a:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
  }
  
  .breadcrumb-item.active span {
    color: var(--gold-primary);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    border: 1px solid var(--gold-dark);
  }
  
  .breadcrumb-item span[itemprop="name"] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  /* Mobile responsiveness for demo page */
  @media (max-width: 768px) {
    .demo-image {
      height: 250px;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .instructions-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .comparison-table {
      font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
      padding: 0.8rem;
    }
    
    .strategy-content {
      padding: 0 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .demo-preview {
      margin: 1.5rem auto;
    }
    
    .play-button {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
    
    .breadcrumb-nav {
      padding: 0.75rem 0;
      margin-top: 70px;
    }
    
    .breadcrumb-item {
      font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
      margin: 0 0.5rem;
      font-size: 0.6rem;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active span {
      padding: 0.2rem 0.4rem;
    }
    
    /* Why Best Section Mobile Styles */
    .comparison-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .comparison-card {
      padding: 1.5rem;
    }
    
    .comparison-card.highlight {
      transform: none;
    }
    
    .card-header {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    
    .stat-item {
      padding: 1rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .superiority-stats {
      padding: 1.5rem;
    }
    
    .why-choose-cta {
      padding: 2rem;
    }
    
    .cta-content h3 {
      font-size: 1.8rem;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .advantage-item, .disadvantage-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
  }

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/interface/cryptofgiza-interface-bonuses.webp') center/cover;
  opacity: 0.05;
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.testimonials-section .section__subtitle {
  text-align: center;
  color: var(--cream);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 161, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.stars {
  margin-bottom: 1rem;
}

.stars span {
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.testimonial-content p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold-primary);
  position: absolute;
  top: -10px;
  left: -20px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-photo {
  transform: scale(1.1);
}

.author-info h4 {
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--cream);
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  color: var(--cream);
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .author-photo {
    width: 50px;
    height: 50px;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
  }
  
  .testimonial-content p::before {
    font-size: 2rem;
    top: -5px;
    left: -15px;
  }
  
  /* Why Best Section Small Mobile Styles */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-card {
    padding: 1rem;
  }
  
  .superiority-stats {
    padding: 1rem;
  }
  
  .superiority-stats h3 {
    font-size: 1.5rem;
  }
  
  .why-choose-cta {
    padding: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}
  
/* Text Links */
.text-link {
  color: var(--gold-primary);
  text-decoration: underline;
  text-decoration-color: var(--gold-primary);
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
  