/* MyFunArena.org - Dark Gaming Theme */

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

body {
    font-family: 'Arial Black', 'Impact', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1a2e 50%, #0f0f1e 100%);
    min-height: 100vh;
}

/* Navigation Styles */
.myfunarena-navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.3);
    border-bottom: 2px solid #ff0066;
}

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

.myfunarena-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ff0066;
    font-weight: 900;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.myfunarena-navbar-brand:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.myfunarena-navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

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

.myfunarena-navbar-link {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background: rgba(255, 255, 255, 0.05);
}

.myfunarena-navbar-link:hover,
.myfunarena-navbar-link.active {
    color: #ff0066;
    background: rgba(255, 0, 102, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.3);
}

.myfunarena-navbar-cta {
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.5);
    letter-spacing: 2px;
}

.myfunarena-navbar-cta:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5);
    color: white;
}

.myfunarena-navbar-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 0, 102, 0.2);
    border: 2px solid #ff0066;
    cursor: pointer;
    padding: 0.5rem;
}

.myfunarena-navbar-toggle-bar {
    width: 24px;
    height: 3px;
    background: #ff0066;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.myfunarena-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    padding: 9rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff0066;
}

.myfunarena-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 102, 0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 217, 255, 0.1) 50%, transparent 52%);
    background-size: 50px 50px;
}

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

.myfunarena-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ff0066;
    text-shadow: 0 0 20px rgba(255, 0, 102, 0.8), 0 0 40px rgba(255, 0, 102, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.myfunarena-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #00d9ff;
    line-height: 1.8;
    font-weight: 600;
}

.myfunarena-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.myfunarena-hero-cta:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
    transform: scale(1.05);
    color: white;
}

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

.myfunarena-section-alt {
    background: #0a0e27;
}

.myfunarena-section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: #ff0066;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

.myfunarena-section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #00d9ff;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

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

.myfunarena-feature-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    position: relative;
}

.myfunarena-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1), rgba(0, 217, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.myfunarena-feature-card:hover::before {
    opacity: 1;
}

.myfunarena-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 102, 0.4);
    border-color: #00d9ff;
}

.myfunarena-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0066, #00d9ff);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.8rem;
}

.myfunarena-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ff0066;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myfunarena-feature-desc {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1rem;
}

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

.myfunarena-game-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    position: relative;
}

.myfunarena-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 102, 0.4);
    border-color: #00d9ff;
}

.myfunarena-game-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid #ff0066;
}

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

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

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

.myfunarena-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.myfunarena-game-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.myfunarena-game-play {
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.4);
}

.myfunarena-game-play:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

/* Footer */
.myfunarena-footer {
    background: #0a0e27;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid #ff0066;
}

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

.myfunarena-footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #ff0066;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myfunarena-footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

.myfunarena-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 0, 102, 0.3);
    color: #808080;
}

/* Cookie Consent */
.myfunarena-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0e27, #1a1a2e);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(255, 0, 102, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #ff0066;
}

.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: 2rem;
}

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

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

.myfunarena-cookie-policy {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.myfunarena-cookie-policy:hover {
    color: #ff0066;
}

.myfunarena-cookie-accept {
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.myfunarena-cookie-accept:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
}

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

.myfunarena-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 102, 0.1);
    border: 2px solid #ff0066;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    min-width: 140px;
}

.myfunarena-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff0066;
    display: block;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

.myfunarena-stat-label {
    color: #00d9ff;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Game Badges */
.myfunarena-game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.myfunarena-featured {
    border: 3px solid #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

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

.myfunarena-contact-form-container,
.myfunarena-contact-info-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.myfunarena-contact-title {
    color: #ff0066;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myfunarena-contact-subtitle {
    color: #00d9ff;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
}

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

.myfunarena-form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ff0066;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.myfunarena-form-input,
.myfunarena-form-select,
.myfunarena-form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ff0066;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.myfunarena-form-input:focus,
.myfunarena-form-select:focus,
.myfunarena-form-textarea:focus {
    border-color: #00d9ff;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.myfunarena-form-submit {
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    letter-spacing: 2px;
}

.myfunarena-form-submit:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
}

/* Legal Pages */
.myfunarena-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 4rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.myfunarena-legal-title {
    color: #ff0066;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myfunarena-legal-subtitle {
    color: #00d9ff;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.myfunarena-legal-text {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.myfunarena-legal-list {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.05rem;
}

.myfunarena-legal-updated {
    color: #808080;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1rem;
    font-weight: 600;
}

.myfunarena-legal-contact {
    background: rgba(255, 0, 102, 0.1);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid #ff0066;
    margin-top: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

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

.myfunarena-legal-contact strong {
    color: #00d9ff;
    font-weight: 800;
}

/* Games CTA Wrapper */
.myfunarena-games-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA Box */
.myfunarena-final-cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 4rem 3rem;
    border: 3px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    box-shadow: 0 0 40px rgba(255, 0, 102, 0.3);
}

.myfunarena-final-cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0066;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

.myfunarena-final-cta-subtitle {
    font-size: 1.4rem;
    color: #00d9ff;
    margin-bottom: 3rem;
}

.myfunarena-final-cta-notice {
    background: rgba(255, 0, 102, 0.1);
    border: 2px solid #ff0066;
    padding: 2rem;
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.myfunarena-final-cta-notice-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
}

.myfunarena-final-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066, #ff3366);
    color: white;
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.myfunarena-final-cta-button:hover {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
    color: white;
}

/* Contact Command Title */
.myfunarena-contact-command-title {
    color: #ff0066;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Contact Info Boxes */
.myfunarena-contact-info-box {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.myfunarena-contact-info-box-email {
    background: rgba(255, 0, 102, 0.1);
    border-color: #ff0066;
}

.myfunarena-contact-info-box-phone {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
}

.myfunarena-contact-info-box-address {
    background: rgba(255, 0, 102, 0.1);
    border-color: #ff0066;
}

.myfunarena-contact-info-box-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.myfunarena-contact-info-box-title-cyan {
    color: #00d9ff;
}

.myfunarena-contact-info-box-title-pink {
    color: #ff0066;
}

.myfunarena-contact-info-box-main {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 700;
}

.myfunarena-contact-info-box-sub {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Mission Briefing */
.myfunarena-mission-briefing {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 3px solid #ff0066;
    padding: 3rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    box-shadow: 0 0 40px rgba(255, 0, 102, 0.3);
    text-align: center;
}

.myfunarena-mission-briefing-title {
    color: #ff0066;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myfunarena-mission-briefing-text {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
}

/* Footer Warning Box */
.myfunarena-footer-warning {
    background: rgba(255, 0, 102, 0.1);
    padding: 2rem;
    border-radius: 0;
    margin: 3rem 0;
    border: 2px solid #ff0066;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.myfunarena-footer-warning-text {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.myfunarena-footer-warning-strong {
    color: #ff0066;
}

.myfunarena-footer-warning-cookies {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 600;
}

.myfunarena-footer-warning-link {
    color: #00d9ff;
    font-weight: 700;
}

/* Mobile Menu Backdrop */
.myfunarena-navbar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.myfunarena-navbar-backdrop.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .myfunarena-navbar-backdrop {
        display: block;
        pointer-events: none;
    }

    .myfunarena-navbar-backdrop.active {
        pointer-events: auto;
    }

    .myfunarena-navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #0a0e27 0%, #16213e 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 1.5rem 0;
        box-shadow: 4px 0 30px rgba(255, 0, 102, 0.4);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 3px solid #ff0066;
        border-right: 3px solid #ff0066;
        overflow-y: auto;
        z-index: 999;
    }

    .myfunarena-navbar-menu.active {
        transform: translateX(0);
    }

    .myfunarena-navbar-menu li {
        margin: 0;
        list-style: none;
        border-bottom: 1px solid rgba(255, 0, 102, 0.15);
        width: 100%;
    }

    .myfunarena-navbar-menu li:first-child {
        border-top: 1px solid rgba(255, 0, 102, 0.15);
    }

    .myfunarena-navbar-menu li:last-child {
        border-bottom: none;
        margin-top: 2rem;
    }

    .myfunarena-navbar-link {
        width: 100%;
        padding: 1.2rem 1.5rem;
        margin: 0;
        border-radius: 0;
        clip-path: none;
        background: transparent;
        text-align: left;
        font-size: 1rem;
        display: block;
        color: #b0b0b0;
        box-shadow: none;
        transition: all 0.2s ease;
    }

    .myfunarena-navbar-link:hover {
        background: rgba(255, 0, 102, 0.15);
        color: #ff0066;
        box-shadow: none;
        padding-left: 2rem;
    }

    .myfunarena-navbar-link.active {
        background: rgba(255, 0, 102, 0.2);
        color: #ff0066;
        box-shadow: none;
        border-left: 4px solid #ff0066;
        padding-left: calc(1.5rem - 4px);
    }

    .myfunarena-navbar-cta {
        width: calc(100% - 2rem);
        background: linear-gradient(135deg, #ff0066, #ff3366);
        margin: 0 1rem;
        padding: 1.2rem 1.5rem;
        border-radius: 0;
        text-align: center;
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        box-shadow: 0 4px 15px rgba(255, 0, 102, 0.5);
        display: block;
        color: white;
        transition: all 0.3s ease;
    }

    .myfunarena-navbar-cta:hover {
        background: linear-gradient(135deg, #00d9ff, #0099cc);
        box-shadow: 0 6px 20px rgba(0, 217, 255, 0.5);
        color: white;
    }

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

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

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

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

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

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

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

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

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

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

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

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