/* FunWorldGames.org - Bright & Cheerful Card Design */

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

body {
    font-family: 'Verdana', 'Geneva', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
}

.funworldgames-navbar {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    padding: 1.3rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(47, 128, 237, 0.3);
}

.funworldgames-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.funworldgames-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.7rem;
    transition: all 0.3s ease;
}

.funworldgames-navbar-brand:hover {
    transform: scale(1.05);
    color: #fff;
}

.funworldgames-navbar-logo {
    height: 45px;
    width: auto;
    margin-right: 12px;
    border-radius: 12px;
    border: 3px solid white;
}

.funworldgames-navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.funworldgames-navbar-link {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.7rem 1.3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.funworldgames-navbar-link:hover,
.funworldgames-navbar-link.active {
    background: rgba(255, 255, 255, 0.25);
}

.funworldgames-navbar-cta {
    background: white;
    color: #2f80ed;
    padding: 0.85rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.funworldgames-navbar-cta:hover {
    transform: scale(1.08);
    color: #2f80ed;
}

.funworldgames-navbar-toggle {
    display: none;
    flex-direction: column;
    background: white;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
}

.funworldgames-navbar-toggle-bar {
    width: 24px;
    height: 3px;
    background: #2f80ed;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.funworldgames-hero {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    padding: 9rem 0 6rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(47, 128, 237, 0.3);
}

.funworldgames-hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
}

.funworldgames-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.funworldgames-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.95;
}

.funworldgames-hero-cta {
    display: inline-block;
    background: white;
    color: #2f80ed;
    padding: 1.3rem 3.5rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.funworldgames-hero-cta:hover {
    transform: scale(1.1);
    color: #2f80ed;
}

.funworldgames-section {
    padding: 5.5rem 0;
    background: white;
}

.funworldgames-section-alt {
    background: linear-gradient(to right, #ffecd2, #fcb69f);
}

.funworldgames-section-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2f80ed;
}

.funworldgames-section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #555;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.funworldgames-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.funworldgames-feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(47, 128, 237, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #56ccf2;
}

.funworldgames-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(47, 128, 237, 0.25);
}

.funworldgames-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(86, 204, 242, 0.3);
}

.funworldgames-feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.funworldgames-feature-desc {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.funworldgames-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.funworldgames-game-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(47, 128, 237, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #56ccf2;
}

.funworldgames-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(47, 128, 237, 0.25);
}

.funworldgames-game-image {
    height: 210px;
    overflow: hidden;
}

.funworldgames-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.funworldgames-game-card:hover .funworldgames-game-image img {
    transform: scale(1.12);
}

.funworldgames-game-content {
    padding: 2.5rem;
}

.funworldgames-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.funworldgames-game-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.funworldgames-game-play {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.funworldgames-game-play:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
}

.funworldgames-footer {
    background: linear-gradient(135deg, #2f80ed, #56ccf2);
    color: white;
    padding: 4rem 0 2rem;
}

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

.funworldgames-footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.funworldgames-footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.funworldgames-footer-section a {
    color: #ffecd2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.funworldgames-footer-section a:hover {
    color: white;
}

.funworldgames-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.funworldgames-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2f80ed, #56ccf2);
    color: white;
    padding: 1.75rem;
    z-index: 1000;
    box-shadow: 0 -6px 25px rgba(47, 128, 237, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.funworldgames-cookie-consent.show {
    transform: translateY(0);
}

.funworldgames-cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.funworldgames-cookie-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 600;
}

.funworldgames-cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.funworldgames-cookie-policy {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.funworldgames-cookie-policy:hover {
    opacity: 0.8;
}

.funworldgames-cookie-accept {
    background: white;
    color: #2f80ed;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 25px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.funworldgames-cookie-accept:hover {
    transform: scale(1.05);
}

.funworldgames-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.funworldgames-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    min-width: 150px;
}

.funworldgames-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.funworldgames-stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.funworldgames-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
}

.funworldgames-featured {
    border: 3px solid #ff6b6b;
}

.funworldgames-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.funworldgames-contact-form-container,
.funworldgames-contact-info-container {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(47, 128, 237, 0.15);
    border: 3px solid #56ccf2;
}

.funworldgames-contact-title {
    color: #2f80ed;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
}

.funworldgames-contact-subtitle {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

.funworldgames-form-group {
    margin-bottom: 2rem;
}

.funworldgames-form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 1.1rem;
}

.funworldgames-form-input,
.funworldgames-form-select,
.funworldgames-form-textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #56ccf2;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: Verdana, sans-serif;
}

.funworldgames-form-input:focus,
.funworldgames-form-select:focus,
.funworldgames-form-textarea:focus {
    border-color: #2f80ed;
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.1);
}

.funworldgames-form-textarea {
    resize: vertical;
    min-height: 130px;
}

.funworldgames-form-submit {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.funworldgames-form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
}

.funworldgames-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(47, 128, 237, 0.15);
    border: 3px solid #56ccf2;
}

.funworldgames-legal-title {
    color: #2f80ed;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
}

.funworldgames-legal-subtitle {
    color: #56ccf2;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 800;
}

.funworldgames-legal-text {
    color: #3a3a3a;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.funworldgames-legal-list {
    color: #3a3a3a;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.05rem;
}

.funworldgames-legal-updated {
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.05rem;
}

.funworldgames-legal-contact {
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #56ccf2;
    margin-top: 2rem;
}

.funworldgames-legal-contact p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.funworldgames-legal-contact strong {
    color: #2f80ed;
    font-weight: 800;
}

@media (max-width: 768px) {
    .funworldgames-navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #56ccf2, #2f80ed);
        flex-direction: column;
        padding: 2rem;
        padding-top: 6rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .funworldgames-navbar-menu.active {
        transform: translateY(0);
    }

    .funworldgames-navbar-toggle {
        display: flex;
    }

    .funworldgames-hero-title {
        font-size: 2.8rem;
    }

    .funworldgames-hero-subtitle {
        font-size: 1.25rem;
    }

    .funworldgames-section-title {
        font-size: 2.5rem;
    }

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

    .funworldgames-contact-grid {
        grid-template-columns: 1fr;
    }

    .funworldgames-contact-form-container,
    .funworldgames-contact-info-container {
        padding: 2.5rem;
    }

    .funworldgames-legal-content {
        padding: 2.5rem;
    }
}

/* Contact Info Boxes */
.funworldgames-contact-info-box {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    border-radius: 15px;
    border: 2px solid #56ccf2;
}

.funworldgames-contact-info-box h3 {
    color: #2f80ed;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.funworldgames-contact-info-box p {
    color: #2c2c2c;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Centered Text Container */
.funworldgames-centered-text {
    text-align: center;
    margin-top: 3rem;
}

/* Disclaimer Box */
.funworldgames-disclaimer-box {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    border: 3px solid #56ccf2;
    text-align: center;
}

.funworldgames-disclaimer-box p {
    color: #2c2c2c;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
}

.funworldgames-disclaimer-box strong {
    color: #2f80ed;
}

/* Join Fun Section */
.funworldgames-join-section {
    background: white;
    border-radius: 25px;
    padding: 3.5rem;
    border: 3px solid #56ccf2;
    box-shadow: 0 10px 35px rgba(47, 128, 237, 0.15);
    text-align: center;
}

.funworldgames-join-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2f80ed;
    margin-bottom: 1.5rem;
}

.funworldgames-join-section p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.funworldgames-join-disclaimer {
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #56ccf2;
}

.funworldgames-join-disclaimer p {
    color: #2c2c2c;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 600;
}

.funworldgames-join-disclaimer strong {
    color: #2f80ed;
}

/* Footer Info Box */
.funworldgames-footer-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid white;
}

.funworldgames-footer-info p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.funworldgames-footer-info strong {
    color: #2f80ed;
}

.funworldgames-footer-info a {
    color: #ffecd2;
    font-weight: 700;
}

@media (max-width: 480px) {
    .funworldgames-hero-title {
        font-size: 2.2rem;
    }

    .funworldgames-section-title {
        font-size: 2rem;
    }

    .funworldgames-features-grid,
    .funworldgames-games-grid {
        grid-template-columns: 1fr;
    }
}
