:root {
    --primary-color: #b40000;
    --secondary-color: #FFD700;
    --text-color: #333;
    --background-color: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
/* General Header Styles */
header {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem; /* Adjusted for better spacing */
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adds a shadow for better separation from content */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    width: 50px;
    height: auto;
    vertical-align: middle;
}

.bet11-banner {
    width: 150px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 17px;
    cursor: pointer;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
/* Privacy Policy Section */
.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0a3d62;
    text-align: center;
}

.privacy-policy h2 {
    color: #0a3d62;
    margin-top: 20px;
}

.privacy-policy p,
.privacy-policy ul {
    margin-bottom: 20px;
}

.privacy-policy ul {
    list-style-type: disc;
    padding-left: 20px;
}
/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner-img.webp') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.2rem;
}
/* Mobile-Responsive Styles */
@media (max-width: 768px) {
    /* Adjust header padding for smaller screens */
    header {
        padding: 0.5rem;
    }

    /* Hide nav-links and show hamburger menu */
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        width: 100%;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .nav-links li {
        margin: 10px 0; /* Adjust spacing between links */
    }

    .nav-links a {
        font-size: 1rem; /* Increase text size for better readability */
    }

    .nav-links.active {
        display: flex; /* Show the links when active */
    }

    .hamburger {
        display: flex; /* Show hamburger menu on mobile */
    }
    .privacy-policy h1 {
        font-size: 2rem;
    }
}

/* Optional: Hamburger Animation for Active State */
.hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner-img.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6c200;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Games Section */
.games {
    padding: 40px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #333;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .game-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .game-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .game-card h3 {
    padding: 15px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .game-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    .game-grid {
      grid-template-columns: 1fr;
    }
  }

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-item {
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    padding: 20px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid,
    .game-grid,
    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}