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

body {
    font-family: 'Raleway', sans-serif;
    background: #1a1a1a;
    color: #333;
    line-height: 1.7;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Navigation */
.top-navigation {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Banner */
.main-hero {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.9), rgba(231, 76, 60, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><rect fill="%23C0392B" width="1000" height="300"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    color: white;
    font-size: 1.6rem;
    font-weight: 400;
}

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

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-left h2 {
    color: #C0392B;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-point {
    display: flex;
    gap: 1.5rem;
}

.point-marker {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-point h3 {
    color: #C0392B;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.split-right {
    display: flex;
    justify-content: center;
}

.image-box {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FCE4E4 0%, #F8C8C8 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 50px rgba(192, 57, 43, 0.3);
}

/* About Fenrith */
.about-fenrith {
    background: #f5f5f5;
    padding: 5rem 0;
}

.about-fenrith h2 {
    color: #C0392B;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-col p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase-section {
    background: white;
    padding: 5rem 0;
}

.game-showcase-section h2 {
    color: #C0392B;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.showcase-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
}

.game-display {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

/* Why Fenrith */
.why-fenrith {
    background: #f5f5f5;
    padding: 5rem 0;
}

.why-fenrith h2 {
    color: #C0392B;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(192, 57, 43, 0.2);
}

.reason-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.reason-card h4 {
    color: #C0392B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #666;
    font-size: 1.05rem;
}

/* Responsible Play */
.responsible-play {
    background: white;
    padding: 5rem 0;
}

.responsible-box {
    background: linear-gradient(135deg, #FCE4E4 0%, #F8C8C8 100%);
    padding: 3.5rem;
    border-radius: 20px;
    border-left: 8px solid #C0392B;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-box h2 {
    color: #C0392B;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.responsible-box p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Play Page */
.play-banner {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.play-banner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.gameplay-info {
    background: white;
    padding: 4rem 0;
}

.gameplay-info h2 {
    color: #C0392B;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

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

.instruction {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 15px;
    border: 2px solid #FCE4E4;
}

.inst-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction h4 {
    color: #C0392B;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.play-game-area {
    background: #f5f5f5;
    padding: 4rem 0;
}

.game-player {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.game-player iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.game-disclaimer {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #C0392B;
}

.game-disclaimer strong {
    color: #C0392B;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 5rem 0;
}

.legal-document h1 {
    color: #C0392B;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.legal-document h2 {
    color: #E74C3C;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-document p, .legal-document li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-document ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.doc-date {
    color: #999;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.notice-highlight {
    background: linear-gradient(135deg, #FCE4E4 0%, #F8C8C8 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 8px solid #C0392B;
}

.notice-highlight h2 {
    margin-top: 0;
    color: #C0392B;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: #bbb;
    padding: 3.5rem 0 1.5rem;
    margin-top: auto;
}

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

.footer-col h4 {
    color: #E74C3C;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #E74C3C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Age Check Overlay */
.age-check-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check-overlay.show {
    display: flex;
}

.age-check-box {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.age-check-box h2 {
    color: #C0392B;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.age-check-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.age-check-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.age-btn {
    flex: 1;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.age-btn.accept {
    background: #C0392B;
    color: white;
}

.age-btn.accept:hover {
    background: #A93226;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}

.age-btn.decline {
    background: #e0e0e0;
    color: #333;
}

.age-btn.decline:hover {
    background: #d0d0d0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #C0392B;
        padding: 1.2rem 0;
        border-bottom: 1px solid #eee;
    }

    .main-hero .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .split-content {
        grid-template-columns: 1fr;
    }

    .split-left h2 {
        font-size: 2.2rem;
    }

    .image-box {
        width: 250px;
        height: 250px;
    }

    .about-columns {
        grid-template-columns: 1fr;
    }

    .game-display iframe,
    .game-player iframe {
        height: 400px;
    }

    .age-check-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-check-actions {
        flex-direction: column;
    }
}
