/* Global Styles */
:root {
    --primary-color: #e91e63; /* Pink */
    --secondary-color: #9c27b0; /* Purple */
    --dark-color: #1a001a; /* Dark Purple/Black */
    --light-text-color: #f0f0f0;
    --dark-text-color: #333;
    --background-gradient: linear-gradient(135deg, #1a001a 0%, #3a003a 100%);
    --card-background: rgba(40, 0, 40, 0.8);
    --overlay-color: rgba(0, 0, 0, 0.7);
    --border-radius: 8px;
    --transition-speed: 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--background-gradient);
    color: var(--light-text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    color: inherit;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--light-text-color);
    margin-bottom: 60px;
    opacity: 0.8;
}

/* Adaptive Typography */
@media (min-width: 1024px) {
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 3.5rem; }
    .site-name { font-size: 1.8rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section-title { font-size: 1.9rem; }
    .hero-title { font-size: 2.8rem; }
    .site-name { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    .section-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 1rem; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.9rem; }
    .site-name { font-size: 1rem; }
    .nav-link, .footer-link, .footer-text { font-size: 0.9rem; }
    .copyright { font-size: 0.8rem; }
}

/* Header */
.header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo-link {
    display: flex;
    align-items: center;
    color: var(--light-text-color);
    text-decoration: none;
}

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

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-link {
    color: var(--light-text-color);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.burger-menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    background: none;
    border: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--light-text-color);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    margin-top: 40px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color: #fff;
}

/* Game Cards Grid (General Styling) */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.game-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-game-cards .game-card {
    max-width: 350px;
    margin: 0 auto;
}

.game-card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.game-card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 15px 10px 5px;
    flex-shrink: 0;
}

/* Hero specific game cards */
.hero-game-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 40px auto 0;
}

.hero-game-cards .game-card {
    display: none; /* Initially hidden for JS to show sequentially */
}

/* About Section */
.about-section {
    background-color: var(--dark-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text-color);
    opacity: 0.9;
}

.about-features-list {
    list-style: none;
    margin-bottom: 20px;
}

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

.feature-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Main Games Section */
.games-section {
    background: var(--background-gradient);
}

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

.main-games-grid .game-card {
    padding-bottom: 20px;
}

.game-card .game-link {
    display: block;
    height: 300px;
    overflow: hidden;
}

.game-card .game-link img {
    transition: transform var(--transition-speed);
}

.game-card .game-link:hover img {
    transform: scale(1.05);
}

.game-description {
    font-size: 0.95rem;
    color: var(--light-text-color);
    padding: 0 15px;
    margin-bottom: 20px;
    flex-grow: 1;
    opacity: 0.8;
}

.play-button {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    display: inline-block;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.play-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us-section {
    background-color: var(--dark-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-us-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.why-us-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-us-description {
    color: var(--light-text-color);
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background-gradient);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text-color);
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-date {
    font-weight: 400;
    color: var(--light-text-color);
    opacity: 0.7;
    font-size: 0.9em;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #2c002c; /* Slightly different dark background */
    padding: 60px 0;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
    margin-top: 40px;
}

.disclaimer-container {
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for content */
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--light-text-color);
}

.disclaimer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.disclaimer-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}

.disclaimer-title {
    font-size: 2rem;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.disclaimer-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.disclaimer-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.disclaimer-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.disclaimer-content ul li {
    margin-bottom: 8px;
}

.disclaimer-link {
    color: var(--primary-color);
}

.disclaimer-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    padding: 60px 0 20px;
    color: var(--light-text-color);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-sections-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links-list {
    list-style: none;
}

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

.footer-link, .footer-text {
    color: var(--light-text-color);
    opacity: 0.8;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: auto;
    max-width: 140px; /* Adjusted max-width for uniformity */
    object-fit: contain;
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--light-text-color);
    opacity: 0.7;
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.age-verification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-modal {
    background-color: var(--dark-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-color);
}

.age-verification-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.age-verification-text {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 25px;
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.age-verification-btn {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: var(--light-text-color);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1500;
    border: 1px solid var(--secondary-color);
}

.cookie-content {
    flex-grow: 1;
    min-width: 250px;
}

.cookie-text {
    font-size: 0.95rem;
    margin: 0;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.cookie-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Game Modal */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.game-modal.show {
    opacity: 1;
    visibility: visible;
}

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 10001;
    transition: background-color var(--transition-speed);
}

.game-modal-close:hover {
    background-color: var(--primary-color);
}

.game-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Mobile Adaptations */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .burger-menu-toggle {
        display: block;
    }

    .hero-game-cards {
        grid-template-columns: repeat(1, 1fr);
        max-width: 400px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image-wrapper {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }

    .main-games-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-sections-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        max-width: 300px;
    }

    .footer-heading {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-heading i {
        margin-left: 10px;
        transition: transform var(--transition-speed);
    }

    .footer-heading.active i {
        transform: rotate(180deg);
    }

    .footer-links-list {
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links-list.active {
        display: block;
    }

    .footer-heading i {
        display: none;
    }

    .footer-logos-wrapper {
        flex-direction: row;
        gap: 15px;
    }

    .footer-logo-img {
        max-width: 100px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }

    .age-verification-modal {
        padding: 30px 20px;
    }

    .age-verification-title {
        font-size: 1.7rem;
    }

    .age-verification-text {
        font-size: 1rem;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .age-verification-btn {
        width: 100%;
    }
}/*
 * New stock styles for common HTML elements within the .complianceVaultNode container.
 * These styles provide basic typography, spacing, and readability.
 */

/* Parent container padding */
.complianceVaultNode {
    padding: 1.5rem; /* Adds padding to the top, right, bottom, and left sides of the container */
}

/* Heading 1 styles */
.complianceVaultNode h1 {
    font-size: 2rem; /* Moderate font size for main headings */
    font-weight: 600; /* Semi-bold weight for prominence */
    line-height: 1.2; /* Improves readability for larger text */
    margin-top: 1.5rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

/* Heading 2 styles */
.complianceVaultNode h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1.25rem;
    margin-bottom: 0.8rem;
}

/* Heading 3 styles */
.complianceVaultNode h3 {
    font-size: 1.5rem; /* Standard sub-heading size */
    font-weight: 500; /* Medium weight */
    line-height: 1.3;
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

/* Heading 4 styles */
.complianceVaultNode h4 {
    font-size: 1.25rem; /* Smaller heading, often used for minor sections */
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0.8rem;
    margin-bottom: 0.6rem;
}

/* Heading 5 styles */
.complianceVaultNode h5 {
    font-size: 1.1rem; /* Smallest heading, suitable for labels or less important titles */
    font-weight: 400; /* Normal weight */
    line-height: 1.4;
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
}

/* Paragraph styles */
.complianceVaultNode p {
    font-size: 1rem; /* Base font size for body text */
    line-height: 1.6; /* Generous line height for good readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.complianceVaultNode ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 0.5rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for list items */
}

/* Ordered list styles */
.complianceVaultNode ol {
    list-style-type: decimal; /* Default numbered style */
    margin-top: 0.5rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 1.5rem; /* Indentation for list items */
}

/* List item styles (applies to both ul and ol) */
.complianceVaultNode li {
    line-height: 1.6; /* Ensures good spacing within list items */
    margin-bottom: 0.5rem; /* Space between individual list items */
}
