/* FunGroupPlay.org - Fresh Community Gaming Design */
/* Color Palette: Fresh Green (#10B981), Lime (#84CC16), White (#FFFFFF), Light (#F9FAFB), Dark (#111827) */

:root {
    --fungroupplay-primary: #10B981;
    --fungroupplay-secondary: #84CC16;
    --fungroupplay-accent: #059669;
    --fungroupplay-dark: #111827;
    --fungroupplay-darker: #0F172A;
    --fungroupplay-light: #F9FAFB;
    --fungroupplay-white: #FFFFFF;
    --fungroupplay-text: #1F2937;
    --fungroupplay-text-light: #6B7280;
    --fungroupplay-border: #E5E7EB;
    --fungroupplay-radius: 12px;
    --fungroupplay-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --fungroupplay-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--fungroupplay-text);
    background-color: var(--fungroupplay-white);
    line-height: 1.7;
    font-size: 16px;
}

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

/* Compliance Banner */
.fungroupplay-compliance-banner {
    background: linear-gradient(90deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.fungroupplay-compliance-banner p {
    margin: 0;
}

/* Navigation */
.fungroupplay-navbar {
    background: var(--fungroupplay-white);
    box-shadow: var(--fungroupplay-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fungroupplay-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.fungroupplay-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--fungroupplay-dark);
    font-weight: 700;
    font-size: 22px;
    gap: 10px;
}

.fungroupplay-navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.fungroupplay-navbar-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    margin: 0;
}

.fungroupplay-navbar-link {
    text-decoration: none;
    color: var(--fungroupplay-text);
    padding: 10px 16px;
    border-radius: var(--fungroupplay-radius);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.fungroupplay-navbar-link:hover {
    background-color: var(--fungroupplay-light);
    color: var(--fungroupplay-primary);
}

.fungroupplay-navbar-link.fungroupplay-active {
    background-color: var(--fungroupplay-primary);
    color: var(--fungroupplay-white);
}

.fungroupplay-navbar-cta {
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white) !important;
    padding: 10px 20px;
    border-radius: var(--fungroupplay-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.fungroupplay-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--fungroupplay-shadow-lg);
}

.fungroupplay-navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.fungroupplay-navbar-toggle-bar {
    width: 26px;
    height: 3px;
    background-color: var(--fungroupplay-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.fungroupplay-hero {
    background: linear-gradient(135deg, var(--fungroupplay-primary) 0%, var(--fungroupplay-secondary) 100%);
    color: var(--fungroupplay-white);
    padding: 80px 0;
    text-align: center;
}

.fungroupplay-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.fungroupplay-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.fungroupplay-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fungroupplay-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.fungroupplay-hero-cta {
    display: inline-block;
    background: var(--fungroupplay-white);
    color: var(--fungroupplay-primary);
    padding: 14px 32px;
    border-radius: var(--fungroupplay-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--fungroupplay-shadow-lg);
}

.fungroupplay-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Alt (for inner pages) */
.fungroupplay-hero-alt {
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    padding: 60px 0;
    text-align: center;
}

.fungroupplay-hero-alt-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fungroupplay-hero-alt-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.fungroupplay-hero-alt-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Sections */
.fungroupplay-section {
    padding: 70px 0;
}

.fungroupplay-section-sm {
    padding: 50px 0;
}

.fungroupplay-bg-white {
    background-color: var(--fungroupplay-white);
}

.fungroupplay-bg-light {
    background-color: var(--fungroupplay-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--fungroupplay-dark);
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.fungroupplay-text-center {
    text-align: center;
}

.fungroupplay-mb-3 {
    margin-bottom: 1.5rem;
}

.fungroupplay-mb-4 {
    margin-bottom: 2rem;
}

.fungroupplay-mb-5 {
    margin-bottom: 3rem;
}

.fungroupplay-mt-3 {
    margin-top: 1.5rem;
}

.fungroupplay-mt-5 {
    margin-top: 3rem;
}

/* Feature Grid */
.fungroupplay-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fungroupplay-feature-card {
    background: var(--fungroupplay-white);
    padding: 35px;
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.fungroupplay-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fungroupplay-shadow-lg);
}

.fungroupplay-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    border-radius: var(--fungroupplay-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.fungroupplay-feature-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-feature-desc {
    color: var(--fungroupplay-text-light);
    line-height: 1.7;
}

/* Games Grid */
.fungroupplay-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fungroupplay-game-card {
    background: var(--fungroupplay-white);
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.fungroupplay-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fungroupplay-shadow-lg);
}

.fungroupplay-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.fungroupplay-game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fungroupplay-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fungroupplay-game-content {
    padding: 25px;
}

.fungroupplay-game-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-game-desc {
    color: var(--fungroupplay-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.fungroupplay-game-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--fungroupplay-text-light);
}

.fungroupplay-game-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fungroupplay-game-play {
    width: 100%;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--fungroupplay-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fungroupplay-game-play:hover {
    transform: translateY(-2px);
    box-shadow: var(--fungroupplay-shadow);
}

/* Stats Grid */
.fungroupplay-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.fungroupplay-stat-card {
    background: var(--fungroupplay-white);
    padding: 30px;
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fungroupplay-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
}

.fungroupplay-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--fungroupplay-primary);
    margin-bottom: 8px;
}

.fungroupplay-stat-label {
    display: block;
    color: var(--fungroupplay-text-light);
    font-size: 15px;
    font-weight: 500;
}

.fungroupplay-stat-icon {
    margin-top: 10px;
    font-size: 24px;
    color: var(--fungroupplay-secondary);
}

/* Buttons */
.fungroupplay-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    padding: 14px 28px;
    border-radius: var(--fungroupplay-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.fungroupplay-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--fungroupplay-shadow-lg);
    color: var(--fungroupplay-white);
}

.fungroupplay-btn-secondary {
    background: var(--fungroupplay-white);
    color: var(--fungroupplay-primary);
    border: 2px solid var(--fungroupplay-primary);
}

.fungroupplay-btn-secondary:hover {
    background: var(--fungroupplay-primary);
    color: var(--fungroupplay-white);
}

/* Alerts */
.fungroupplay-alert {
    padding: 18px 24px;
    border-radius: var(--fungroupplay-radius);
    margin-bottom: 20px;
    border-left: 4px solid;
}

.fungroupplay-alert-info {
    background-color: #EFF6FF;
    color: #1E40AF;
    border-color: #3B82F6;
}

.fungroupplay-alert-success {
    background-color: #ECFDF5;
    color: #065F46;
    border-color: var(--fungroupplay-primary);
}

.fungroupplay-alert-danger {
    background-color: #FEF2F2;
    color: #991B1B;
    border-color: #EF4444;
}

/* Content Layouts */
.fungroupplay-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fungroupplay-content-medium {
    max-width: 900px;
    margin: 0 auto;
}

.fungroupplay-flex-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.fungroupplay-footer {
    background: var(--fungroupplay-darker);
    color: #D1D5DB;
    padding: 50px 0 20px;
}

.fungroupplay-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.fungroupplay-footer-section h3 {
    color: var(--fungroupplay-white);
    font-size: 18px;
    margin-bottom: 15px;
}

.fungroupplay-footer-section p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.fungroupplay-footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fungroupplay-footer-section a:hover {
    color: var(--fungroupplay-secondary);
}

.fungroupplay-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 25px;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.7;
}

.fungroupplay-disclaimer p {
    margin-bottom: 12px;
}

.fungroupplay-disclaimer a {
    color: var(--fungroupplay-secondary);
    text-decoration: underline;
}

.fungroupplay-footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

.fungroupplay-footer-bottom a {
    color: var(--fungroupplay-secondary);
    text-decoration: none;
}

/* Cookie Popup */
.fungroupplay-cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--fungroupplay-white);
    box-shadow: var(--fungroupplay-shadow-lg);
    border-radius: var(--fungroupplay-radius);
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fungroupplay-cookie-content {
    padding: 25px;
}

.fungroupplay-cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--fungroupplay-dark);
    margin-bottom: 12px;
}

.fungroupplay-cookie-text {
    font-size: 14px;
    color: var(--fungroupplay-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.fungroupplay-cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fungroupplay-cookie-accept {
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--fungroupplay-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fungroupplay-cookie-accept:hover {
    transform: translateY(-2px);
}

.fungroupplay-cookie-policy {
    color: var(--fungroupplay-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Page */
.fungroupplay-contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.fungroupplay-contact-info-card,
.fungroupplay-contact-form-card {
    background: var(--fungroupplay-white);
    padding: 35px;
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
}

.fungroupplay-contact-info-card h3,
.fungroupplay-contact-form-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fungroupplay-border);
}

.fungroupplay-contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fungroupplay-contact-detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    border-radius: var(--fungroupplay-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.fungroupplay-contact-detail-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-contact-detail-content p,
.fungroupplay-contact-detail-content a {
    color: var(--fungroupplay-text-light);
    margin: 0;
}

.fungroupplay-contact-detail-content a {
    text-decoration: none;
}

.fungroupplay-contact-detail-content a:hover {
    color: var(--fungroupplay-primary);
}

/* Form Styles */
.fungroupplay-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fungroupplay-form-group {
    margin-bottom: 20px;
}

.fungroupplay-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--fungroupplay-dark);
}

.fungroupplay-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--fungroupplay-border);
    border-radius: var(--fungroupplay-radius);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.fungroupplay-form-control:focus {
    outline: none;
    border-color: var(--fungroupplay-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

textarea.fungroupplay-form-control {
    resize: vertical;
    min-height: 120px;
}

.fungroupplay-contact-form-desc {
    color: var(--fungroupplay-text-light);
    margin-bottom: 25px;
}

/* Overview Cards */
.fungroupplay-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.fungroupplay-overview-card {
    background: var(--fungroupplay-white);
    padding: 30px;
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
    text-align: center;
}

.fungroupplay-overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fungroupplay-primary), var(--fungroupplay-secondary));
    color: var(--fungroupplay-white);
    border-radius: var(--fungroupplay-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}

.fungroupplay-overview-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fungroupplay-overview-card p {
    color: var(--fungroupplay-text-light);
    line-height: 1.6;
}

/* Legal Pages */
.fungroupplay-legal-content {
    background: var(--fungroupplay-white);
    padding: 40px;
    border-radius: var(--fungroupplay-radius);
    box-shadow: var(--fungroupplay-shadow);
    margin-top: 40px;
}

.fungroupplay-legal-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--fungroupplay-dark);
}

.fungroupplay-legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--fungroupplay-text);
}

.fungroupplay-legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.fungroupplay-legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.fungroupplay-legal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}

.fungroupplay-legal-list-plain {
    list-style: none;
    padding-left: 0;
}

.fungroupplay-legal-list-plain li {
    padding-left: 0;
}

/* Game Modal */
.fungroupplay-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.fungroupplay-modal.fungroupplay-active {
    display: flex;
}

.fungroupplay-modal-content {
    background: var(--fungroupplay-white);
    border-radius: var(--fungroupplay-radius);
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
}

.fungroupplay-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--fungroupplay-border);
}

.fungroupplay-modal-title {
    font-size: 20px;
    margin: 0;
}

.fungroupplay-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--fungroupplay-text-light);
    transition: color 0.3s ease;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fungroupplay-modal-close:hover {
    color: var(--fungroupplay-dark);
}

.fungroupplay-modal-body {
    padding: 0;
}

.fungroupplay-modal-iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fungroupplay-navbar-toggle {
        display: flex;
    }

    .fungroupplay-navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--fungroupplay-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--fungroupplay-shadow-lg);
        display: none;
        gap: 10px;
    }

    .fungroupplay-navbar-menu.fungroupplay-active {
        display: flex;
    }

    .fungroupplay-navbar-link,
    .fungroupplay-navbar-cta {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .fungroupplay-hero-title {
        font-size: 32px;
    }

    .fungroupplay-hero-subtitle {
        font-size: 16px;
    }

    .fungroupplay-hero-alt-content h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .fungroupplay-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fungroupplay-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fungroupplay-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fungroupplay-contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fungroupplay-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fungroupplay-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fungroupplay-cookie-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .fungroupplay-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .fungroupplay-modal-iframe {
        height: 60vh;
    }

    .fungroupplay-section {
        padding: 50px 0;
    }

    .fungroupplay-overview-grid {
        grid-template-columns: 1fr;
    }

    .fungroupplay-legal-content {
        padding: 25px;
    }

    .fungroupplay-navbar-toggle-bar {
        background-color: var(--fungroupplay-primary);
    }
}

@media (max-width: 480px) {
    .fungroupplay-hero {
        padding: 60px 0;
    }

    .fungroupplay-hero-title {
        font-size: 28px;
    }

    .fungroupplay-hero-subtitle {
        font-size: 15px;
    }

    .fungroupplay-stats-grid {
        grid-template-columns: 1fr;
    }

    .fungroupplay-stat-number {
        font-size: 36px;
    }

    .fungroupplay-navbar-brand {
        font-size: 18px;
    }

    .fungroupplay-navbar-logo {
        height: 35px;
    }
}

