/* FunPlayArena.org - Dark Gaming Theme with Angular Shapes */

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

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    min-height: 100vh;
}

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

/* Navigation Styles - Dark with Angular Design */
.funplayarena-navbar {
    background: #151515;
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #2a2a2a;
    transition: all 0.3s ease;
}

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

.funplayarena-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.funplayarena-navbar-brand:hover {
    color: #ff6b35;
}

.funplayarena-navbar-logo {
    height: 48px;
    width: auto;
    margin-right: 14px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
}

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

.funplayarena-navbar-link {
    text-decoration: none;
    color: #d0d0d0;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.funplayarena-navbar-link:hover,
.funplayarena-navbar-link.active {
    color: #ffffff;
    background: #2a2a2a;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.funplayarena-navbar-cta {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.funplayarena-navbar-cta:hover {
    background: #ff5722;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.funplayarena-navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: 2px solid #ff6b35;
    cursor: pointer;
    padding: 0.625rem;
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

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

/* Hero Section - Dark Gaming Theme */
.funplayarena-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 7rem 0 5rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    border-bottom: 3px solid #2a2a2a;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

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

.funplayarena-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.funplayarena-hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: #c0c0c0;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.funplayarena-hero-cta {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 1.25rem 3rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.funplayarena-hero-cta:hover {
    background: #ff5722;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Section Styles */
.funplayarena-section {
    padding: 6rem 0;
    background: #151515;
}

.funplayarena-section-alt {
    background: #0f0f0f;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.funplayarena-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

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

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

.funplayarena-feature-card {
    background: #1f1f1f;
    padding: 2.5rem 2rem;
    clip-path: polygon(8% 0%, 92% 0%, 100% 10%, 100% 90%, 92% 100%, 8% 100%, 0% 90%, 0% 10%);
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-feature-card:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    transform: translateY(-5px);
}

.funplayarena-feature-icon {
    width: 70px;
    height: 70px;
    background: #ff6b35;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: #ffffff;
    font-size: 1.75rem;
}

.funplayarena-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.funplayarena-feature-desc {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.funplayarena-game-card {
    background: #1f1f1f;
    clip-path: polygon(5% 0%, 95% 0%, 100% 8%, 100% 92%, 95% 100%, 5% 100%, 0% 92%, 0% 8%);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-game-card:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
    transform: translateY(-8px);
}

.funplayarena-game-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}

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

.funplayarena-game-card:hover .funplayarena-game-image img {
    transform: scale(1.15);
}

.funplayarena-game-content {
    padding: 2.25rem;
}

.funplayarena-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
}

.funplayarena-game-desc {
    color: #c0c0c0;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.funplayarena-game-play {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 25%, 100% 75%, 90% 100%, 10% 100%, 0% 75%, 0% 25%);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.funplayarena-game-play:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

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

.funplayarena-story-card {
    background: #1f1f1f;
    padding: 2.5rem;
    clip-path: polygon(6% 0%, 94% 0%, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0% 94%, 0% 6%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
    border-left: 4px solid #ff6b35;
}

.funplayarena-story-card:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.funplayarena-story-text {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    color: #e0e0e0;
}

.funplayarena-story-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.funplayarena-story-avatar {
    width: 52px;
    height: 52px;
    background: #ff6b35;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.funplayarena-story-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.15rem;
}

.funplayarena-story-location {
    color: #909090;
    font-size: 0.95rem;
}

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

.funplayarena-news-card {
    background: #1f1f1f;
    padding: 2.25rem;
    clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    border: 2px solid #2a2a2a;
}

.funplayarena-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.funplayarena-news-date {
    background: #ff6b35;
    color: #ffffff;
    padding: 1.25rem;
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.funplayarena-news-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
}

.funplayarena-news-month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.funplayarena-news-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.funplayarena-news-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.funplayarena-news-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s ease;
}

.funplayarena-news-link:hover {
    color: #ff5722;
}

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

.funplayarena-step-card {
    background: #1f1f1f;
    padding: 3.5rem 2.5rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #2a2a2a;
}

.funplayarena-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.funplayarena-step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: #ffffff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 1.75rem;
}

.funplayarena-step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.funplayarena-step-desc {
    color: #b0b0b0;
    line-height: 1.75;
    font-size: 1.05rem;
}

/* CTA Center */
.funplayarena-cta-center {
    text-align: center;
    margin-top: 3.5rem;
}

/* Final CTA */
.funplayarena-final-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.funplayarena-disclaimer {
    background: #1f1f1f;
    border: 2px solid #2a2a2a;
    border-left: 5px solid #ff6b35;
    clip-path: polygon(3% 0%, 97% 0%, 100% 5%, 100% 95%, 97% 100%, 3% 100%, 0% 95%, 0% 5%);
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: left;
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Footer */
.funplayarena-footer {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 4rem 0 2rem;
    border-top: 3px solid #2a2a2a;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

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

.funplayarena-footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}

.funplayarena-footer-section p {
    margin-bottom: 0.875rem;
    line-height: 1.7;
    color: #b0b0b0;
    font-size: 1rem;
}

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

.funplayarena-footer-section a:hover {
    color: #ff5722;
}

.funplayarena-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #2a2a2a;
    color: #808080;
    font-size: 0.95rem;
}

/* Footer disclaimer box */
.funplayarena-footer-disclaimer {
    background: #1a1a1a;
    padding: 2.5rem;
    clip-path: polygon(2% 0%, 98% 0%, 100% 3%, 100% 97%, 98% 100%, 2% 100%, 0% 97%, 0% 3%);
    margin: 3.5rem 0;
    border: 2px solid #2a2a2a;
}

/* Footer disclaimer text */
.funplayarena-footer-disclaimer-text {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

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

/* Footer disclaimer strong */
.funplayarena-footer-disclaimer-strong {
    color: #ff6b35;
}

/* Footer disclaimer link */
.funplayarena-footer-disclaimer-link {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.funplayarena-footer-disclaimer-link:hover {
    color: #ff5722;
    text-decoration: underline;
}

/* Cookie Consent */
.funplayarena-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #ff6b35;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

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

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

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

.funplayarena-cookie-buttons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.funplayarena-cookie-policy {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.funplayarena-cookie-policy:hover {
    color: #ff5722;
}

.funplayarena-cookie-accept {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.75rem;
    clip-path: polygon(12% 0%, 88% 0%, 100% 25%, 100% 75%, 88% 100%, 12% 100%, 0% 75%, 0% 25%);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.funplayarena-cookie-accept:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

/* Game Badges */
.funplayarena-game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #ffffff;
    padding: 8px 16px;
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.funplayarena-featured {
    position: relative;
    border: 3px solid #ff6b35;
}

/* About Page Styles */
.funplayarena-about-content {
    max-width: 950px;
    margin: 0 auto;
}

.funplayarena-about-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 2.75rem;
}

/* Team Grid */
.funplayarena-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    margin-top: 4rem;
}

.funplayarena-team-card {
    background: #1f1f1f;
    padding: 3.5rem 2.5rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.funplayarena-team-avatar {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: #ffffff;
    font-size: 2rem;
}

.funplayarena-team-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.625rem;
    color: #ffffff;
}

.funplayarena-team-role {
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 1.75rem;
    font-size: 1.15rem;
}

.funplayarena-team-desc {
    color: #b0b0b0;
    line-height: 1.75;
    font-size: 1.05rem;
}

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

.funplayarena-guideline-card {
    background: #1f1f1f;
    padding: 3rem 2.25rem;
    clip-path: polygon(8% 0%, 92% 0%, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0% 92%, 0% 8%);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-guideline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.funplayarena-guideline-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: #ffffff;
    font-size: 2rem;
}

.funplayarena-guideline-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.funplayarena-guideline-desc {
    color: #b0b0b0;
    line-height: 1.75;
    font-size: 1.05rem;
}

/* Contact CTA */
.funplayarena-contact-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.funplayarena-contact-info {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin: 3.5rem 0;
    flex-wrap: wrap;
}

.funplayarena-contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #e0e0e0;
    font-size: 1.15rem;
    font-weight: 600;
}

.funplayarena-contact-item i {
    color: #ff6b35;
    font-size: 1.3rem;
}

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

.funplayarena-contact-form-container {
    background: #1f1f1f;
    padding: 3.5rem;
    clip-path: polygon(6% 0%, 94% 0%, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0% 94%, 0% 6%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid #2a2a2a;
}

.funplayarena-contact-title {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-size: 2.4rem;
    font-weight: 800;
}

.funplayarena-contact-subtitle {
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.7;
}

.funplayarena-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.funplayarena-form-group {
    display: flex;
    flex-direction: column;
}

.funplayarena-form-label {
    display: block;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
}

.funplayarena-form-input,
.funplayarena-form-select,
.funplayarena-form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #2a2a2a;
    background: #151515;
    color: #e0e0e0;
    clip-path: polygon(5% 0%, 95% 0%, 100% 8%, 100% 92%, 95% 100%, 5% 100%, 0% 92%, 0% 8%);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.funplayarena-form-input:focus,
.funplayarena-form-select:focus,
.funplayarena-form-textarea:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.funplayarena-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.funplayarena-form-submit {
    background: #ff6b35;
    color: #ffffff;
    border: none;
    padding: 1.15rem 2.25rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
    text-transform: uppercase;
}

.funplayarena-form-submit:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.funplayarena-contact-info-container {
    background: #1f1f1f;
    padding: 3.5rem;
    clip-path: polygon(6% 0%, 94% 0%, 100% 6%, 100% 94%, 94% 100%, 6% 100%, 0% 94%, 0% 6%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid #2a2a2a;
}

.funplayarena-contact-details {
    margin-bottom: 3.5rem;
}

.funplayarena-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 3rem;
    padding: 2rem;
    clip-path: polygon(3% 0%, 97% 0%, 100% 5%, 100% 95%, 97% 100%, 3% 100%, 0% 95%, 0% 5%);
    transition: all 0.3s ease;
    background: #151515;
}

.funplayarena-contact-detail:hover {
    background: #1a1a1a;
    transform: translateX(8px);
    border-color: #ff6b35;
}

.funplayarena-contact-icon {
    width: 64px;
    height: 64px;
    background: #ff6b35;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.funplayarena-contact-detail-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.funplayarena-contact-detail-text {
    font-size: 1.15rem;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.funplayarena-contact-detail-desc {
    color: #909090;
    font-size: 1.05rem;
}

.funplayarena-social-links {
    text-align: center;
}

.funplayarena-social-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.funplayarena-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
}

.funplayarena-social-link {
    width: 52px;
    height: 52px;
    background: #ff6b35;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.funplayarena-social-link:hover {
    background: #ff5722;
    color: #ffffff;
    transform: rotate(45deg) scale(1.1);
}

/* FAQ Styles */
.funplayarena-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funplayarena-faq-item {
    background: #1f1f1f;
    padding: 2.75rem;
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.funplayarena-faq-question {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.funplayarena-faq-answer {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Support Styles */
.funplayarena-support-cta {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.funplayarena-support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.funplayarena-support-option {
    background: #1f1f1f;
    padding: 3.5rem 2.5rem;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
}

.funplayarena-support-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: #ff6b35;
}

.funplayarena-support-option i {
    font-size: 2.75rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.funplayarena-support-option h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.funplayarena-support-option p {
    color: #b0b0b0;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    font-size: 1.05rem;
}

.funplayarena-support-link {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    clip-path: polygon(12% 0%, 88% 0%, 100% 25%, 100% 75%, 88% 100%, 12% 100%, 0% 75%, 0% 25%);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.funplayarena-support-link:hover {
    background: #ff5722;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Legal Pages Styles */
.funplayarena-legal-content {
    max-width: 950px;
    margin: 0 auto;
    background: #1f1f1f;
    padding: 4.5rem;
    clip-path: polygon(3% 0%, 97% 0%, 100% 3%, 100% 97%, 97% 100%, 3% 100%, 0% 97%, 0% 3%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid #2a2a2a;
}

.funplayarena-legal-updated {
    color: #909090;
    margin-bottom: 3.5rem;
    font-style: italic;
    font-size: 1.15rem;
}

.funplayarena-legal-title {
    color: #ffffff;
    margin-bottom: 2.25rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.funplayarena-legal-subtitle {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.funplayarena-legal-text {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

.funplayarena-legal-list {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 3rem;
    padding-left: 2.75rem;
    font-size: 1.15rem;
}

.funplayarena-legal-list li {
    margin-bottom: 1rem;
}

.funplayarena-legal-contact {
    background: #151515;
    padding: 2rem;
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
    border-left: 5px solid #ff6b35;
    margin-top: 2rem;
    border: 2px solid #2a2a2a;
}

.funplayarena-legal-contact p {
    margin-bottom: 0.875rem;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.funplayarena-legal-contact strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .funplayarena-navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #151515;
        flex-direction: column;
        padding: 2.5rem;
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.9);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        margin-top: 90px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        border-bottom: 3px solid #ff6b35;
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }

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

    .funplayarena-navbar-toggle {
        display: flex;
        z-index: 1001;
        background: #1f1f1f;
    }

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

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

    .funplayarena-navbar-menu a {
        display: block;
        padding: 1rem 1.25rem;
        margin: 0.625rem 0;
        text-align: center;
        clip-path: polygon(8% 0%, 92% 0%, 100% 10%, 100% 90%, 92% 100%, 8% 100%, 0% 90%, 0% 10%);
        transition: all 0.3s ease;
    }
    
    .funplayarena-navbar-cta {
        padding: 1rem 1.75rem !important;
        margin: 0 !important;
        width: 100%;
    }

    .funplayarena-navbar-menu a:hover {
        background: #2a2a2a;
        transform: translateX(8px);
    }

    .funplayarena-hero-title {
        font-size: 2.75rem;
    }

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

    .funplayarena-section-title {
        font-size: 2.4rem;
    }

    .funplayarena-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .funplayarena-news-card {
        flex-direction: column;
        text-align: center;
    }

    .funplayarena-news-date {
        align-self: center;
    }

    .funplayarena-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .funplayarena-contact-detail {
        flex-direction: column;
        text-align: center;
    }

    .funplayarena-contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .funplayarena-faq-grid {
        grid-template-columns: 1fr;
    }

    .funplayarena-support-options {
        grid-template-columns: 1fr;
    }

    .funplayarena-legal-content {
        padding: 2.5rem 2rem;
    }
}

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

    .funplayarena-hero-subtitle {
        font-size: 1.15rem;
    }

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

    .funplayarena-features-grid,
    .funplayarena-games-grid,
    .funplayarena-stories-grid,
    .funplayarena-news-grid,
    .funplayarena-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Dynamic classes for JavaScript interactions */
.funplayarena-navbar-scrolled {
    background: rgba(21, 21, 21, 0.98) !important;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.9) !important;
}

.funplayarena-navbar-toggle-bar-1-active {
    transform: rotate(45deg) translate(7px, 7px) !important;
}

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

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

.funplayarena-card-animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.funplayarena-card-animate-out {
    opacity: 0 !important;
    transform: translateY(40px) !important;
}

.funplayarena-btn-loading {
    opacity: 0.6;
    pointer-events: none;
}

.funplayarena-button-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    width: var(--ripple-size, 100px);
    height: var(--ripple-size, 100px);
    left: var(--ripple-x, 50%);
    top: var(--ripple-y, 50%);
    margin-left: calc(var(--ripple-size, 100px) / -2);
    margin-top: calc(var(--ripple-size, 100px) / -2);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

