/* MyFunArena.com - Bright & Modern Gaming Platform */

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Navigation Styles */
.myfunarena-navbar {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(231, 76, 60, 0.15);
    border-bottom: 3px solid #e74c3c;
}

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

.myfunarena-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.5rem;
    gap: 10px;
}

.myfunarena-navbar-logo {
    height: 40px;
    width: auto;
}

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

.myfunarena-navbar-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.myfunarena-navbar-link:hover,
.myfunarena-navbar-link.active {
    background: #e74c3c;
    color: white;
}

.myfunarena-navbar-cta {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.myfunarena-navbar-cta:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231, 76, 60, 0.4);
}

.myfunarena-navbar-toggle {
    display: none;
    flex-direction: column;
    background: #e74c3c;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
}

.myfunarena-navbar-toggle-bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.myfunarena-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.myfunarena-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.myfunarena-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.myfunarena-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.myfunarena-hero-cta {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 1rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.myfunarena-hero-cta:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

.myfunarena-section-alt {
    background: #ecf0f1;
}

.myfunarena-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.myfunarena-section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.myfunarena-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.myfunarena-feature-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.myfunarena-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.myfunarena-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.myfunarena-feature-desc {
    color: #7f8c8d;
    line-height: 1.8;
}

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

.myfunarena-game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.myfunarena-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.myfunarena-game-image {
    height: 200px;
    overflow: hidden;
    background: #ecf0f1;
}

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

.myfunarena-game-card:hover .myfunarena-game-image img {
    transform: scale(1.1);
}

.myfunarena-game-content {
    padding: 2rem;
}

.myfunarena-game-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.myfunarena-game-desc {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.myfunarena-game-play {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.myfunarena-game-play:hover {
    background: linear-gradient(135deg, #c0392b, #e67e22);
    transform: translateY(-2px);
}

/* Footer */
.myfunarena-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    border-top: 4px solid #e74c3c;
}

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

.myfunarena-footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.myfunarena-footer-section p {
    margin-bottom: 0.75rem;
    color: #ecf0f1;
}

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

.myfunarena-footer-section a:hover {
    color: #f39c12;
}

.myfunarena-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Consent */
.myfunarena-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.myfunarena-cookie-text {
    flex: 1;
    line-height: 1.6;
}

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

.myfunarena-cookie-policy {
    color: white;
    text-decoration: underline;
}

.myfunarena-cookie-accept {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.myfunarena-cookie-accept:hover {
    background: #f5f5f5;
}

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

.myfunarena-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    min-width: 120px;
}

.myfunarena-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.myfunarena-stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-top: 0.5rem;
}

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

.myfunarena-contact-form-container,
.myfunarena-contact-info-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
}

.myfunarena-contact-title {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 600;
}

.myfunarena-contact-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.myfunarena-form-group {
    margin-bottom: 1.5rem;
}

.myfunarena-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.myfunarena-form-input,
.myfunarena-form-select,
.myfunarena-form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    background: #f9f9f9;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.myfunarena-form-input:focus,
.myfunarena-form-select:focus,
.myfunarena-form-textarea:focus {
    border-color: #e74c3c;
    outline: none;
    background: white;
}

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

.myfunarena-form-submit {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.myfunarena-form-submit:hover {
    background: linear-gradient(135deg, #c0392b, #e67e22);
}

/* Legal Pages */
.myfunarena-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
}

.myfunarena-legal-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.myfunarena-legal-subtitle {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.myfunarena-legal-text {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.myfunarena-legal-list {
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.myfunarena-legal-updated {
    color: #e74c3c;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.myfunarena-legal-contact {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e74c3c;
    margin-top: 2rem;
}

.myfunarena-legal-contact p {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.myfunarena-legal-contact strong {
    color: #e74c3c;
}

/* Contact Detail Cards */
.myfunarena-contact-details-container {
    margin-top: 2rem;
}

.myfunarena-contact-detail-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 10px;
    border: 2px solid #e74c3c;
}

.myfunarena-contact-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

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

.myfunarena-contact-detail-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.myfunarena-contact-detail-text {
    color: #34495e;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.myfunarena-contact-detail-desc {
    color: #e74c3c;
    font-size: 0.95rem;
}

/* Disclaimers */
.myfunarena-disclaimer-box {
    background: #ecf0f1;
    border-radius: 10px;
    padding: 2.5rem;
    border: 3px solid #e74c3c;
    text-align: center;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.1);
}

.myfunarena-disclaimer-title {
    color: #e74c3c;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.myfunarena-disclaimer-text {
    color: #2c3e50;
    line-height: 1.8;
}

.myfunarena-footer-disclaimer {
    background: rgba(52, 73, 94, 0.5);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #e74c3c;
}

.myfunarena-footer-disclaimer-text {
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.myfunarena-footer-disclaimer-text:last-child {
    margin-bottom: 0;
}

.myfunarena-footer-disclaimer-link {
    color: #e74c3c;
    text-decoration: none;
}

.myfunarena-footer-disclaimer-link:hover {
    text-decoration: underline;
}

/* Button States */
.myfunarena-btn-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Hamburger Animation */
.myfunarena-navbar-toggle-bar.active-line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.myfunarena-navbar-toggle-bar.active-line-2 {
    opacity: 0;
}

.myfunarena-navbar-toggle-bar.active-line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

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

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

    .myfunarena-navbar-menu li:last-child {
        order: 1;
        margin-top: 1.5rem;
    }

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

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

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

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

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

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

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

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

    .myfunarena-hero-subtitle {
        font-size: 1rem;
    }

    .myfunarena-section-title {
        font-size: 1.5rem;
    }
}
