/* GameFunWorld.org - Vibrant & Playful Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Trebuchet MS', Arial, sans-serif;
    line-height: 1.8;
    color: #2d1b4e;
    background: linear-gradient(180deg, #fff5e6 0%, #ffe0f0 100%);
    min-height: 100vh;
}

/* Navigation Styles */
.gamefunworld-navbar {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbb03b 100%);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

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

.gamefunworld-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gamefunworld-navbar-brand:hover {
    transform: scale(1.1) rotate(-2deg);
    color: #fff;
}

.gamefunworld-navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
    border-radius: 50%;
    border: 3px solid white;
}

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

.gamefunworld-navbar-link {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.gamefunworld-navbar-link:hover,
.gamefunworld-navbar-link.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gamefunworld-navbar-cta {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.gamefunworld-navbar-cta:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6);
    color: white;
}

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

.gamefunworld-navbar-toggle-bar {
    width: 28px;
    height: 4px;
    background: #ff6b35;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 5px;
    transform-origin: center;
}

/* Hero Section */
.gamefunworld-hero {
    background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 50%, #f39c12 100%);
    padding: 10rem 0 7rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gamefunworld-hero::before {
    content: '🎮 🎲 🎯 🎪 🎨 🎭 🎰 🎸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -60%) rotate(10deg); }
}

.gamefunworld-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gamefunworld-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gamefunworld-hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gamefunworld-hero-cta {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gamefunworld-hero-cta:hover {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    color: #e74c3c;
}

/* Section Styles */
.gamefunworld-section {
    padding: 6rem 0;
    background: white;
}

.gamefunworld-section-alt {
    background: linear-gradient(180deg, #fff5e6 0%, #ffe0f0 50%, #e6f3ff 100%);
}

.gamefunworld-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d1b4e;
    text-shadow: 2px 2px 0px rgba(255, 107, 53, 0.3);
}

.gamefunworld-section-subtitle {
    font-size: 1.4rem;
    text-align: center;
    color: #8e44ad;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

/* Features Grid */
.gamefunworld-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.gamefunworld-feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.2);
    transition: all 0.3s ease;
    border: 4px solid #f39c12;
    position: relative;
    overflow: hidden;
}

.gamefunworld-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(155, 89, 182, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.gamefunworld-feature-card:hover::before {
    top: 100%;
}

.gamefunworld-feature-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 70px rgba(155, 89, 182, 0.3);
    border-color: #e74c3c;
}

.gamefunworld-feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 5px solid white;
}

.gamefunworld-feature-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2d1b4e;
}

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

/* Games Grid */
.gamefunworld-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.gamefunworld-game-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.2);
    transition: all 0.3s ease;
    border: 4px solid transparent;
    position: relative;
}

.gamefunworld-game-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 25px 70px rgba(155, 89, 182, 0.3);
    border-color: #ff6b35;
}

.gamefunworld-game-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #f39c12;
}

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

.gamefunworld-game-card:hover .gamefunworld-game-image img {
    transform: scale(1.2) rotate(3deg);
}

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

.gamefunworld-game-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2d1b4e;
}

.gamefunworld-game-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gamefunworld-game-play {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.gamefunworld-game-play:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.6);
}

/* Footer */
.gamefunworld-footer {
    background: linear-gradient(135deg, #2d1b4e, #8e44ad);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 5px solid #f39c12;
}

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

.gamefunworld-footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
    font-weight: 800;
}

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

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

.gamefunworld-footer-section a:hover {
    color: #ff6b35;
}

.gamefunworld-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Cookie Consent */
.gamefunworld-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    color: white;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 5px solid #f39c12;
}

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

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

.gamefunworld-cookie-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
}

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

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

.gamefunworld-cookie-policy:hover {
    color: #f39c12;
}

.gamefunworld-cookie-accept {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gamefunworld-cookie-accept:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Stats */
.gamefunworld-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

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

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

/* Game Badges */
.gamefunworld-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gamefunworld-featured {
    border: 4px solid #f39c12;
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.4);
}

/* Contact Page Styles */
.gamefunworld-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.gamefunworld-contact-form-container,
.gamefunworld-contact-info-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.2);
    border: 4px solid #f39c12;
}

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

.gamefunworld-contact-subtitle {
    color: #8e44ad;
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 600;
}

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

.gamefunworld-form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2d1b4e;
    font-weight: 700;
    font-size: 1.2rem;
}

.gamefunworld-form-input,
.gamefunworld-form-select,
.gamefunworld-form-textarea {
    width: 100%;
    padding: 1.2rem;
    border: 3px solid #f39c12;
    border-radius: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gamefunworld-form-input:focus,
.gamefunworld-form-select:focus,
.gamefunworld-form-textarea:focus {
    border-color: #9b59b6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.2);
}

.gamefunworld-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.gamefunworld-form-submit {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.gamefunworld-form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.6);
}

/* Legal Pages */
.gamefunworld-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.2);
    border: 4px solid #f39c12;
}

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

.gamefunworld-legal-subtitle {
    color: #9b59b6;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.gamefunworld-legal-text {
    color: #333;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.gamefunworld-legal-list {
    color: #333;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.gamefunworld-legal-updated {
    color: #8e44ad;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
}

.gamefunworld-legal-contact {
    background: linear-gradient(135deg, #fff5e6, #ffe0f0);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #f39c12;
    margin-top: 2rem;
}

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

.gamefunworld-legal-contact strong {
    color: #e74c3c;
    font-weight: 800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gamefunworld-navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        margin-top: 100px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }

    .gamefunworld-navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .gamefunworld-navbar-toggle {
        display: flex;
        z-index: 1001;
    }

    .gamefunworld-navbar-menu li {
        margin: 0;
        order: 0;
    }

    /* Keep CTA button at the bottom */
    .gamefunworld-navbar-menu li:last-child {
        order: 1;
        margin-top: 2rem;
    }

    .gamefunworld-navbar-menu a {
        display: block;
        padding: 0.875rem 1rem;
        margin: 0.5rem 0;
        text-align: center;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    /* Extra spacing for CTA button */
    .gamefunworld-navbar-cta {
        padding: 1rem 2rem !important;
        margin: 0 !important;
    }

    .gamefunworld-navbar-menu a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
    }

    /* Mobile menu backdrop */
    .gamefunworld-navbar-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 27, 78, 0.7);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gamefunworld-navbar-menu.active::before {
        opacity: 1;
    }

    .gamefunworld-hero-title {
        font-size: 2.5rem;
    }

    .gamefunworld-hero-subtitle {
        font-size: 1.3rem;
    }

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

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

    /* Contact Page Responsive */
    .gamefunworld-contact-grid {
        grid-template-columns: 1fr;
    }

    .gamefunworld-contact-form-container,
    .gamefunworld-contact-info-container {
        padding: 2rem;
    }

    .gamefunworld-legal-content {
        padding: 2rem;
    }
}

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

    .gamefunworld-hero-subtitle {
        font-size: 1.1rem;
    }

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

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

/* Additional classes for removing inline styles */

/* Contact details container */
.gamefunworld-contact-details-container {
    margin-bottom: 3rem;
}

/* Contact detail card */
.gamefunworld-contact-detail-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5e6, #ffe0f0);
    border-radius: 25px;
    border: 3px solid;
}

.gamefunworld-contact-detail-card-email {
    border-color: #f39c12;
}

.gamefunworld-contact-detail-card-phone {
    border-color: #9b59b6;
}

.gamefunworld-contact-detail-card-location {
    border-color: #3498db;
}

/* Contact detail header */
.gamefunworld-contact-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Contact detail icon */
.gamefunworld-contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.gamefunworld-contact-detail-icon-phone {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
}

.gamefunworld-contact-detail-icon-location {
    background: linear-gradient(135deg, #3498db, #2ecc71);
}

/* Contact detail title */
.gamefunworld-contact-detail-title {
    color: #2d1b4e;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

/* Contact detail text */
.gamefunworld-contact-detail-text {
    color: #2d1b4e;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

/* Contact detail description */
.gamefunworld-contact-detail-desc {
    color: #8e44ad;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Footer disclaimer box */
.gamefunworld-footer-disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 30px;
    margin: 3rem 0;
    border: 3px solid #f39c12;
}

/* Footer disclaimer text */
.gamefunworld-footer-disclaimer-text {
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.gamefunworld-footer-disclaimer-text:last-child {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Footer disclaimer strong */
.gamefunworld-footer-disclaimer-strong {
    color: #f39c12;
}

/* Footer disclaimer link */
.gamefunworld-footer-disclaimer-link {
    color: #f39c12;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gamefunworld-footer-disclaimer-link:hover {
    color: #f39c12;
    text-decoration: underline;
}

/* Centered container */
.gamefunworld-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Step number icon */
.gamefunworld-step-number {
    font-size: 2rem;
    font-weight: 900;
}

/* Step icon gradients */
.gamefunworld-step-icon-1 {
    background: linear-gradient(135deg, #3498db, #2ecc71);
}

.gamefunworld-step-icon-2 {
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
}

.gamefunworld-step-icon-3 {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
}

/* CTA box */
.gamefunworld-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #9b59b6, #e74c3c);
    padding: 4rem 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.4);
}

.gamefunworld-cta-box-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gamefunworld-cta-box-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.gamefunworld-cta-box-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 4px solid white;
}

.gamefunworld-cta-box-info-text {
    color: #2d1b4e;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 700;
    margin: 0;
}

.gamefunworld-cta-box-button {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gamefunworld-cta-box-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    color: #c0392b;
}

/* Disclaimer box */
.gamefunworld-disclaimer-box {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    border: 4px solid #f39c12;
    text-align: center;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.2);
}

.gamefunworld-disclaimer-title {
    color: #e74c3c;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.gamefunworld-disclaimer-text {
    color: #2d1b4e;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 600;
    margin: 0;
}

/* About contact section */
.gamefunworld-about-contact {
    text-align: left;
}

.gamefunworld-about-contact-title {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

/* Mobile responsive for new classes */
@media (max-width: 768px) {
    .gamefunworld-cta-box {
        padding: 3rem 2rem;
    }
    
    .gamefunworld-cta-box-title {
        font-size: 2.5rem;
    }
    
    .gamefunworld-cta-box-subtitle {
        font-size: 1.2rem;
    }
    
    .gamefunworld-disclaimer-box {
        padding: 2rem 1.5rem;
    }
    
    .gamefunworld-disclaimer-title {
        font-size: 1.5rem;
    }
    
    .gamefunworld-disclaimer-text {
        font-size: 1.1rem;
    }
}

/* JavaScript animation classes */

/* Hamburger menu animation */
.gamefunworld-navbar-toggle-bar.active-line-1 {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.gamefunworld-navbar-toggle-bar.active-line-2 {
    opacity: 0 !important;
}

.gamefunworld-navbar-toggle-bar.active-line-3 {
    transform: rotate(-45deg) translate(8px, -8px) !important;
}

/* Navbar scroll behavior */
.gamefunworld-navbar-hidden {
    transform: translateY(-100%) !important;
}

.gamefunworld-btn-loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}
