/* Site-wide Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Font Stacks - Mandatory */
:root {
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Theme Colors - Jungle King */
    --bg-primary: #041a06;
    --site-primary: #7dff6b;
    --site-secondary: #ffd700;
    --site-accent: #ff6b35;
    --text-primary: #e6ffea;
    --text-muted: rgba(230, 255, 234, 0.7);
    --surface-1: rgba(255, 255, 255, 0.05); /* Subtle background for cards/panels */
    --border-soft: rgba(255, 255, 255, 0.1);
    --card-bg-overlay: rgba(0, 20, 6, 0.4); /* Darker overlay for glass cards */
}

/* Global Styles */
body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6, .clmw95-logo {
    font-family: var(--font-heading);
    color: var(--site-primary); /* Headings are often primary color for emphasis */
    margin-bottom: 16px;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--site-primary);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* Layout & Containers */
.clmw95-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Padding */
main > section {
    padding: 80px 0;
}

/* Glass Effects */
.clmw95-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(4, 26, 6, 0.8); /* Darker, slightly transparent base for header */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
}

.clmw95-card, .clmw95-panel {
    background: var(--card-bg-overlay);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clmw95-card:hover, .clmw95-panel:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.clmw95-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-primary); /* Text color for buttons */
    background: linear-gradient(135deg, var(--site-primary) 0%, var(--site-secondary) 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(125, 255, 107, 0.4); /* Primary color glow */
    white-space: nowrap;
}

.clmw95-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 255, 107, 0.6);
    color: var(--bg-primary);
}

.clmw95-btn-secondary {
    background: linear-gradient(135deg, var(--site-accent) 0%, var(--site-secondary) 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4); /* Accent color glow */
}

.clmw95-btn-secondary:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* Game Grid */
.clmw95-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

/* Game Card */
.clmw95-game-card {
    background: var(--card-bg-overlay);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensures image doesn't break rounded corners */
    display: flex;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}

.clmw95-game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.clmw95-game-card img {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area without distortion */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.clmw95-game-card-content {
    padding: 16px;
    flex-grow: 1; /* Allows content to take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if needed */
}

.clmw95-game-card h3 {
    font-size: 1.3rem;
    color: var(--site-secondary);
    margin-bottom: 8px;
}

.clmw95-game-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1; /* Allows description to take up space */
    margin-bottom: 16px;
}

.clmw95-game-card .clmw95-btn {
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: auto; /* Pushes button to the bottom */
}

/* Trust Badges */
.clmw95-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--site-primary);
    border: 1px solid rgba(125, 255, 107, 0.5);
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.clmw95-trust-badge img {
    width: 18px;
    height: 18px;
    filter: invert(85%) sepia(70%) saturate(1900%) hue-rotate(90deg) brightness(100%) contrast(100%); /* Green tint */
}

/* Footer */
.clmw95-footer {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2); /* Slightly darker than body for distinction */
    color: var(--text-muted);
    font-size: 0.9em;
}

.clmw95-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.clmw95-footer a {
    color: var(--text-muted);
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.clmw95-footer a:hover {
    opacity: 1;
    color: var(--site-primary);
}

.clmw95-footer-contact p {
    font-size: 0.9em;
    opacity: 0.9;
    color: var(--text-muted);
}

.clmw95-footer-contact strong {
    color: var(--site-primary);
}

.clmw95-copyright {
    margin-top: 15px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.85em;
}

.clmw95-copyright a {
    color: var(--text-muted);
    opacity: 0.8;
}

.clmw95-copyright a:hover {
    opacity: 1;
    color: var(--site-primary);
}

/* Mobile Menu Styles */
.clmw95-mobile-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.clmw95-mobile-menu button {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.clmw95-mobile-menu button:hover {
    color: var(--site-primary);
}

.clmw95-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clmw95-mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.clmw95-mobile-menu a:hover {
    opacity: 1;
    color: var(--site-primary);
}

/* Disclosure Bar */
#clmw95-disclosure-bar {
    background: var(--surface-1);
    color: var(--text-muted);
    text-align: center;
    padding: 9px 16px;
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border-soft);
    width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 64px; /* Below the header */
    z-index: 999;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .clmw95-container {
        padding: 0 16px;
    }

    main > section {
        padding: 60px 0;
    }

    .clmw95-game-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .clmw95-game-card img {
        height: 150px;
    }

    .clmw95-game-card-content {
        padding: 12px;
    }

    .clmw95-game-card h3 {
        font-size: 1.1rem;
    }

    .clmw95-game-card p {
        font-size: 0.85rem;
    }

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

    .clmw95-trust-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .clmw95-footer {
        padding: 30px 15px;
    }

    .clmw95-footer ul {
        gap: 15px;
        justify-content: center;
    }

    .clmw95-footer-contact p {
        font-size: 0.85em;
    }

    .clmw95-copyright {
        font-size: 0.75em;
    }

    #clmw95-disclosure-bar {
        font-size: 0.75em;
        padding: 8px 12px;
    }
}

/* Hide desktop nav and show hamburger on small screens */
@media (max-width: 992px) {
    .clmw95-desktop-nav {
        display: none !important;
    }
    .clmw95-hamburger {
        display: block !important;
    }
}
<!--__END__-->