/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #e94560;
}

a {
    color: #e94560;
    text-decoration: none;
}

a:hover {
    color: #fc778e;
}

.btn-primary {
    background-color: #e94560;
    border-color: #e94560;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #fc778e;
    border-color: #fc778e;
}

.btn-secondary {
    background-color: #0f3460;
    border-color: #0f3460;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #164e8d;
    border-color: #164e8d;
}

.btn-info {
    background-color: #533483;
    border-color: #533483;
    color: #ffffff;
}

.btn-info:hover {
    background-color: #6e4ea9;
    border-color: #6e4ea9;
}

.btn-success {
    background-color: #216d21;
    border-color: #216d21;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #2e942e;
    border-color: #2e942e;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #e94560;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #e94560;
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar {
    background-color: #0f3460;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    color: #e0e0e0 !important;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #e94560 !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 56px; /* Adjust for fixed navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #e94560;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.play-now-btn {
    padding: 15px 40px;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.play-now-btn:hover {
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    background-color: #16213e;
    color: #e0e0e0;
}

.about-section img {
    max-height: 400px;
    object-fit: cover;
}

/* Games Section */
.games-section {
    background-color: #0f3460;
    color: #e0e0e0;
}

.game-disclaimer {
    font-style: italic;
    color: #cccccc;
}

.game-card {
    background-color: #1a1a2e;
    border: 1px solid #2e2e4a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.game-card img {
    width: 100%;
    height: 330px;
    object-fit: contain;
    border-bottom: 1px solid #2e2e4a;
}

.game-card .card-body {
    padding: 1.5rem;
}

.game-card .card-title {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.game-card .card-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Game Modal */
.game-modal-content {
    background-color: #1a1a2e;
    border: 1px solid #e94560;
    border-radius: 10px;
    overflow: hidden;
}

.game-modal-content .modal-header {
    background-color: #0f3460;
    border-bottom: 1px solid #e94560;
    color: #e0e0e0;
}

.game-modal-content .modal-title {
    color: #e94560;
}

.game-modal-content .btn-close-white {
    filter: invert(1);
}

.game-modal-content .modal-body {
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-content iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #16213e;
    color: #e0e0e0;
}

.testimonial-card {
    background-color: #1a1a2e;
    border: 1px solid #2e2e4a;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid #e94560;
}

.testimonial-card h6 {
    color: #e94560;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #cccccc;
}

/* Contact Section */
.contact-section {
    background-color: #0f3460;
    color: #e0e0e0;
}

.contact-form-container {
    background-color: #1a1a2e;
    border: 1px solid #2e2e4a;
}

.contact-form-container .form-label {
    color: #e0e0e0;
}

.contact-form-container .form-control {
    background-color: #2e2e4a;
    border: 1px solid #533483;
    color: #e0e0e0;
}

.contact-form-container .form-control::placeholder {
    color: #888;
}

.contact-form-container .form-control:focus {
    background-color: #3e3e5a;
    border-color: #e94560;
    box-shadow: 0 0 0 0.25rem rgba(233, 69, 96, 0.25);
}

.contact-form-container .invalid-feedback {
    color: #ff6b6b;
}

/* Disclaimer Block */
.disclaimer-section {
    background-color: #2e2e4a; /* Distinct background */
    color: #e0e0e0;
    border-top: 5px solid #e94560; /* Top border */
    border-bottom: 5px solid #e94560; /* Bottom border */
    padding: 3rem 0;
}

.disclaimer-content {
    background-color: #1a1a2e; /* Inner content background */
    border: 2px solid #e94560; /* Border around content */
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.disclaimer-icon {
    font-size: 3rem;
    color: #e94560;
}

.disclaimer-heading {
    color: #e94560;
    font-weight: 700;
    font-size: 2rem;
}

.disclaimer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}

/* Footer */
.footer {
    background-color: #0a1128;
    color: #cccccc;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-brand {
    color: #e0e0e0 !important;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-text {
    font-size: 0.9rem;
}

.footer-link {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e94560;
}

.footer-heading {
    color: #e94560;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-divider {
    border-color: #2e2e4a;
}

.age-restriction-icon {
    font-size: 3rem;
    color: #e94560; /* Reddish color for 18+ */
}

.footer-partners {
    margin-top: 2rem;
}

.footer-partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px; /* Fixed height for alignment */
}

.footer-partner-logo {
    width: 140px; /* Adjusted from 100-150px to fit 4 logos */
    height: 50px; /* Ensure logos don't exceed height */
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
}

/* Cookie Consent Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.cookie-modal-content {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    color: #e0e0e0;
    border: 1px solid #e94560;
}

.cookie-modal-title {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cookie-modal-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cookie-policy-link {
    color: #fc778e;
    text-decoration: underline;
}

.cookie-categories .form-check {
    margin-bottom: 10px;
}

.cookie-categories .form-check-label {
    color: #cccccc;
}

.cookie-categories .form-check-input[type="checkbox"]:checked {
    background-color: #e94560;
    border-color: #e94560;
}

.cookie-categories .form-check-input[type="checkbox"] {
    background-color: #2e2e4a;
    border-color: #533483;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex-grow: 1;
    padding: 10px 15px;
}

.cookie-settings {
    margin-top: 20px;
    border-top: 1px solid #2e2e4a;
    padding-top: 20px;
    text-align: right;
}

.cookie-settings .btn {
    padding: 10px 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #0f3460;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
    }
    .navbar-nav .nav-link {
        text-align: center;
        margin: 10px 0;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-section img {
        margin-top: 2rem;
    }
    .footer-brand, .footer-heading {
        justify-content: center;
    }
    .footer-partners {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .play-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .game-card .card-text {
        font-size: 0.85rem;
    }
    .game-modal-content .modal-body {
        min-height: 400px;
    }
    .disclaimer-content {
        padding: 1.5rem;
    }
    .disclaimer-heading {
        font-size: 1.5rem;
    }
    .disclaimer-text {
        font-size: 0.9rem;
    }
    .footer-brand, .footer-heading, .footer-text {
        text-align: center !important;
    }
}
/* Styles for content within the privacyNestZone */
.privacyNestZone {
    padding-top: 40px; /* Top padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    padding-bottom: 40px; /* Bottom padding for the content area */
    max-width: 960px; /* Max width for readability */
    margin-left: auto; /* Center the content area */
    margin-right: auto; /* Center the content area */
    color: #e0e0e0; /* Default text color for this zone */
    font-family: 'Open Sans', sans-serif; /* Default font for this zone */
}

/* Heading styles */
.privacyNestZone h1 {
    font-size: 2.2rem; /* Moderate size for H1 */
    margin-top: 2.5rem; /* Top margin for H1 */
    margin-bottom: 1.2rem; /* Bottom margin for H1 */
    color: #e94560; /* Heading color */
    font-family: 'Roboto', sans-serif; /* Consistent heading font */
    line-height: 1.2; /* Line height for readability */
}

.privacyNestZone h2 {
    font-size: 1.8rem; /* Moderate size for H2 */
    margin-top: 2rem; /* Top margin for H2 */
    margin-bottom: 1rem; /* Bottom margin for H2 */
    color: #e94560; /* Heading color */
    font-family: 'Roboto', sans-serif; /* Consistent heading font */
    line-height: 1.3; /* Line height for readability */
}

.privacyNestZone h3 {
    font-size: 1.5rem; /* Moderate size for H3 */
    margin-top: 1.8rem; /* Top margin for H3 */
    margin-bottom: 0.9rem; /* Bottom margin for H3 */
    color: #e94560; /* Heading color */
    font-family: 'Roboto', sans-serif; /* Consistent heading font */
    line-height: 1.4; /* Line height for readability */
}

.privacyNestZone h4 {
    font-size: 1.25rem; /* Moderate size for H4 */
    margin-top: 1.5rem; /* Top margin for H4 */
    margin-bottom: 0.8rem; /* Bottom margin for H4 */
    color: #e94560; /* Heading color */
    font-family: 'Roboto', sans-serif; /* Consistent heading font */
    line-height: 1.5; /* Line height for readability */
}

.privacyNestZone h5 {
    font-size: 1.1rem; /* Moderate size for H5 */
    margin-top: 1.2rem; /* Top margin for H5 */
    margin-bottom: 0.7rem; /* Bottom margin for H5 */
    color: #e94560; /* Heading color */
    font-family: 'Roboto', sans-serif; /* Consistent heading font */
    line-height: 1.6; /* Line height for readability */
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Line height for readability */
    color: #e0e0e0; /* Paragraph text color */
}

/* Unordered list styles */
.privacyNestZone ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for list items */
}

/* List item styles */
.privacyNestZone li {
    font-size: 1rem; /* Standard list item font size */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: #e0e0e0; /* List item text color */
}

/* Media queries for responsiveness */
@media (max-width: 767.98px) {
    .privacyNestZone {
        padding-top: 25px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 25px;
    }

    .privacyNestZone h1 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .privacyNestZone h2 {
        font-size: 1.5rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .privacyNestZone h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }
    .privacyNestZone h4 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }
    .privacyNestZone h5 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .privacyNestZone p,
    .privacyNestZone li {
        font-size: 0.95rem;
    }

    .privacyNestZone ul {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
.foot-links {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
}

.foot-links a:last-child {
    grid-column: 1 / -1; 
    justify-self: center; 
}


}

.foot-links {
    display: grid !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px !important;
}

