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

body {
    background-color: #050816;
    color: #f4e7c5;
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: rgba(5, 8, 22, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .logo-area img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

    .nav-links a {
        position: relative;
        display: flex;
        align-items: center;
        gap: 7px;
        font-family: 'Cinzel', serif;
        font-size: 0.82rem;
        color: #f4e7c5;
        transition: all 0.3s ease;
    }

        .nav-links a i {
            font-size: 0.8rem;
        }

        .nav-links a:hover {
            color: #d4af37;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }

        .nav-links a.active-nav {
            color: #d4af37;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.75);
        }

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 90px 60px;
    background-image: linear-gradient( 90deg, rgba(2, 4, 12, 0.92) 0%, rgba(2, 4, 12, 0.72) 38%, rgba(2, 4, 12, 0.22) 70% ), url('../Images/backgrounds/midsummer-hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 980px;
    margin-left: 40px;
}

    .hero-content h1 {
        font-family: 'Eagle Lake', serif;
        font-size: clamp(3.4rem, 5.7vw, 5.4rem);
        font-weight: 400;
        color: #f1c94b;
        line-height: 1.02;
        margin-bottom: 28px;
        letter-spacing: 0.5px;
        text-shadow: 0 3px 0 rgba(65, 35, 6, 0.75), 0 0 16px rgba(212, 175, 55, 0.36), 0 0 32px rgba(0, 0, 0, 0.85);
    }

    .hero-content p {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.85rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: #f7ead1;
        line-height: 1.45;
        margin: 0 auto 36px;
        max-width: 760px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 10px rgba(255, 245, 210, 0.08);
    }

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.hero-button {
    min-width: 260px;
    padding: 16px 30px;
    border: 1px solid #d4af37;
    color: #f4e7c5;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04), 0 0 12px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

    .hero-button:nth-child(1) {
        background: linear-gradient(135deg, rgba(84, 24, 122, 0.92), rgba(45, 15, 80, 0.92));
    }

    .hero-button:nth-child(2) {
        background: linear-gradient(135deg, rgba(9, 18, 35, 0.94), rgba(4, 8, 20, 0.94));
    }

    .hero-button:nth-child(3) {
        background: linear-gradient(135deg, rgba(18, 60, 26, 0.92), rgba(8, 38, 15, 0.92));
    }

    .hero-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 18px rgba(212, 175, 55, 0.45), inset 0 0 18px rgba(255, 255, 255, 0.08);
    }

.intro-section {
    display: grid;
    grid-template-columns: 0.78fr 1.72fr;
    gap: 26px;
    padding: 28px 42px 34px;
    background: radial-gradient(circle at top right, rgba(96, 59, 145, 0.18), transparent 35%), #050816;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.parchment-image-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .parchment-image-card img {
        width: 100%;
        max-width: 520px;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
    }

.features-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .features-panel h2 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        text-align: center;
        font-size: 2.4rem;
        letter-spacing: 1px;
        margin: 0;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

.features-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 34px;
}

.features-line {
    width: 180px;
    height: 1px;
    background: linear-gradient( to right, transparent, rgba(212, 175, 55, 0.75), transparent );
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.feature-card {
    padding: 10px 10px 12px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .feature-card img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        display: block;
        margin: 0 auto 10px;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.28)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.18));
        transition: all 0.3s ease;
    }

    .feature-card:hover img {
        transform: scale(1.05);
    }

    .feature-card h3 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        font-size: 0.95rem;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .feature-card p {
        color: #d8cfb1;
        font-size: 1.05rem;
        line-height: 1.35;
    }

.world-section {
    padding: 55px 50px 70px;
    background: radial-gradient(circle at top center, rgba(88, 52, 140, 0.14), transparent 40%), #040713;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.world-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 40px;
}

    .world-header h2 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        font-size: 2.4rem;
        letter-spacing: 1px;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

.world-line {
    width: 180px;
    height: 1px;
    background: linear-gradient( to right, transparent, rgba(212, 175, 55, 0.75), transparent );
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(220px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.world-card {
    position: relative;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    text-decoration: none;
    transition: all 0.35s ease;
    background: #050814;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

    .world-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(212, 175, 55, 0.95);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.18), 0 0 45px rgba(88, 52, 140, 0.2);
    }

.world-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .world-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
        filter: brightness(0.88) contrast(1.05) saturate(1.05);
    }

.world-card:hover .world-image img {
    transform: scale(1.05);
}

.world-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(2, 4, 12, 0.98) 0%, rgba(2, 4, 12, 0.78) 18%, rgba(2, 4, 12, 0.15) 45%, rgba(2, 4, 12, 0.05) 100% );
    pointer-events: none;
}

.world-card h3 {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 1.05;
    text-align: center;
    color: #f5d77d;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 0 18px rgba(212, 175, 55, 0.25);
}

.characters-section {
    padding: 65px 50px 75px;
    background: radial-gradient(circle at top center, rgba(88, 52, 140, 0.12), transparent 42%), #040713;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 42px;
}

    .section-title-wrapper h2 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        font-size: 2.4rem;
        letter-spacing: 1px;
        margin: 0;
        text-align: center;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

.section-line {
    width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.75), transparent);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 22px;
    max-width: 1500px;
    margin: 0 auto;
}

.character-card {
    background: transparent;
    border: none;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: visible;
}

    .character-card:hover {
        transform: translateY(-6px);
    }

    .character-card img {
        width: 155px;
        height: 155px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        margin: 0 auto 16px;
        border: 2px solid rgba(212, 175, 55, 0.6);
        box-shadow: 0 0 18px rgba(212, 175, 55, 0.22), 0 0 35px rgba(88, 52, 140, 0.18);
    }

    .character-card:hover img {
        box-shadow: 0 0 24px rgba(212, 175, 55, 0.4), 0 0 45px rgba(88, 52, 140, 0.25);
    }

    .character-card h3 {
        font-family: 'Cinzel', serif;
        font-size: 1.15rem;
        color: #f1d27a;
        margin-bottom: 6px;
    }

    .character-card p {
        font-size: 1rem;
        line-height: 1.25;
        color: #d8cfb1;
        max-width: 170px;
        margin: 0 auto;
    }

.teachers-section {
    position: relative;
    margin: 0 50px 70px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    overflow: hidden;
    background-image: linear-gradient( 90deg, rgba(4, 8, 18, 0.94) 0%, rgba(4, 8, 18, 0.86) 38%, rgba(4, 8, 18, 0.55) 70% ), url('../Images/backgrounds/teachers-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(212, 175, 55, 0.08);
}

.teachers-overlay {
    padding: 50px 60px;
}

.teachers-content {
    max-width: 620px;
}

    .teachers-content h2 {
        display: flex;
        align-items: center;
        gap: 14px;
        font-family: 'Cinzel', serif;
        font-size: 2.4rem;
        color: #d4af37;
        margin-bottom: 20px;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

        .teachers-content h2 i {
            font-size: 1.9rem;
        }

    .teachers-content p {
        font-size: 1.35rem;
        line-height: 1.55;
        color: #f2e7c8;
        margin-bottom: 28px;
        max-width: 560px;
    }

.teachers-list {
    list-style: none;
    margin-bottom: 34px;
}

    .teachers-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 1.15rem;
        color: #f4e7c5;
    }

        .teachers-list li i {
            color: #8fbf4a;
            font-size: 1rem;
        }

.teachers-button {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    background: linear-gradient( 135deg, rgba(18, 60, 26, 0.94), rgba(8, 38, 15, 0.94) );
    color: #f4e7c5;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 18px rgba(255,255,255,0.04), 0 0 12px rgba(0,0,0,0.45);
}

    .teachers-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 18px rgba(212, 175, 55, 0.4), inset 0 0 18px rgba(255,255,255,0.08);
    }

.site-footer {
    padding: 50px 60px;
    background: #03050f;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 28px;
}

    .footer-brand img {
        max-width: 180px;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
        background: rgba(255, 255, 255, 0.04);
        padding: 8px 14px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.18);
    }

.footer-company-text {
    text-align: center;
}

    .footer-company-text h3 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        margin-bottom: 10px;
        font-size: 1.9rem;
    }

    .footer-company-text p {
        color: #cfc6a7;
        line-height: 1.6;
        font-size: 1.1rem;
    }

.footer-links,
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .footer-links a,
    .footer-legal a {
        color: #f4e7c5;
        transition: all 0.3s ease;
    }

        .footer-links a:hover,
        .footer-legal a:hover {
            color: #d4af37;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }

.copyright {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #f4e7c5;
}

@media (max-width: 1400px) {

    .world-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .characters-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 950px;
    }
}

@media (max-width: 1200px) {

    .intro-section {
        grid-template-columns: 1fr;
    }

    .main-navbar {
        padding: 18px 35px;
    }

    .nav-links {
        gap: 18px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .feature-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .feature-card img {
        width: 130px;
        height: 130px;
    }

    .characters-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 760px;
    }
}

@media (max-width: 900px) {

    .main-navbar {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero-section {
        min-height: 620px;
        justify-content: center;
        text-align: center;
        padding: 90px 24px;
        background-image: linear-gradient(rgba(2, 4, 12, 0.82), rgba(2, 4, 12, 0.92)), url('../Images/backgrounds/midsummer-hero.png');
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }

        .hero-content h1 {
            font-size: 2.7rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            max-width: 100%;
        }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .intro-section {
        padding: 45px 24px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card img {
        width: 115px;
        height: 115px;
    }

    .world-section {
        padding: 45px 24px 55px;
    }

    .world-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .world-header {
        gap: 12px;
    }

        .world-header h2 {
            font-size: 1.8rem;
        }

    .world-line {
        width: 70px;
    }

    .characters-section {
        padding: 45px 24px 55px;
    }

    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .character-card img {
        width: 145px;
        height: 145px;
    }

    .section-title-wrapper {
        gap: 12px;
    }

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

    .section-line {
        width: 70px;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-company-text h3 {
        font-size: 1.5rem;
    }

    .teachers-section {
        margin: 0 24px 55px;
    }

    .teachers-overlay {
        padding: 40px 28px;
    }

    .teachers-content h2 {
        font-size: 1.9rem;
    }

    .teachers-content p {
        font-size: 1.15rem;
    }

    .teachers-list li {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {

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

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

    .character-card img {
        width: 170px;
        height: 170px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-button {
        width: 100%;
        min-width: unset;
    }
}

/* ============================= */
/* SPLASH PAGE */
/* ============================= */

.splash-body {
    margin: 0;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'MedievalSharp', cursive;
    text-align: center;
    color: #f4e7b7;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 25%), radial-gradient(circle at bottom, rgba(90, 50, 160, 0.25), transparent 40%), linear-gradient(135deg, #03040b, #070b19 45%, #12071f);
}

.splash-frame {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    padding: clamp(35px, 5vh, 70px) clamp(28px, 5vw, 60px);
    border-radius: 28px;
    background: rgba(3, 6, 18, 0.75);
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.18), inset 0 0 30px rgba(128, 77, 255, 0.15);
    animation: frameGlow 5s ease-in-out infinite;
}

    .splash-frame h1 {
        margin-top: 0;
        margin-bottom: clamp(18px, 3vh, 30px);
        font-family: 'Cinzel', serif;
        font-size: clamp(2.4rem, 5vw, 5rem);
        line-height: 1.05;
        color: #d4af37;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 0 0 30px rgba(128, 77, 255, 0.3);
    }

    .splash-frame p {
        font-size: clamp(1rem, 1.6vw, 1.35rem);
        line-height: 1.6;
        max-width: 760px;
        margin: 0 auto clamp(24px, 4vh, 45px);
        color: #f2ead2;
    }

.enter-button {
    display: inline-block;
    padding: 18px 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37, #fff1a8, #8b5cf6);
    color: #050713;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* ============================= */
/* ABOUT THE GAME PAGE */
/* ============================= */

.about-hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 90px 70px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    background-image: linear-gradient(90deg, rgba(2, 4, 12, 0.94) 0%, rgba(2, 4, 12, 0.78) 36%, rgba(2, 4, 12, 0.35) 62%, rgba(2, 4, 12, 0.08) 100%), url('../Images/backgrounds/about-game-hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-hero-content {
    max-width: 620px;
    margin-left: 50px;
}

    .about-hero-content h1 {
        font-family: 'Cinzel', serif;
        font-size: clamp(4rem, 8vw, 7rem);
        line-height: 0.9;
        color: #d4af37;
        margin: 0 0 28px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-shadow: 0 0 18px rgba(212, 175, 55, 0.32);
    }

    .about-hero-content h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        font-style: italic;
        font-weight: 700;
        color: #f1d68a;
        margin-bottom: 22px;
    }

    .about-hero-content p {
        max-width: 640px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.45rem;
        line-height: 1.65;
        color: #fff4cf;
        margin: 0;
    }
.about-features-section {
    padding: 70px 60px 90px;
    background: radial-gradient(circle at top center, rgba(88, 52, 140, 0.14), transparent 40%), #040713;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.about-features-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 50px;
}

    .about-features-header h2 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        font-size: 2.7rem;
        letter-spacing: 1px;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    }

.about-features-line {
    width: 220px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.8), transparent);
}

.about-features-grid {
    max-width: 1550px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-feature-card {
    position: relative;
    min-height: 255px;
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 24px;
    padding: 34px 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(12, 8, 24, 0.96), rgba(8, 5, 18, 0.96));
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45), inset 0 0 18px rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

    .about-feature-card img {
        position: relative;
        z-index: 2;
        width: 215px;
        height: 215px;
        object-fit: contain;
        justify-self: center;
        filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.42)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.16));
    }

    .about-feature-card h3 {
        position: relative;
        z-index: 2;
        font-family: 'Cinzel', serif;
        font-size: 1.3rem;
        line-height: 1.3;
        color: #f3d67c;
        margin-bottom: 14px;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    }

    .about-feature-card p {
        position: relative;
        z-index: 2;
        font-size: 1.05rem;
        line-height: 1.45;
        color: #e5dbc0;
    }

    .about-feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(116, 52, 168, 0.12), transparent 45%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .about-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.85);
        box-shadow: 0 0 24px rgba(212, 175, 55, 0.16), 0 0 45px rgba(88, 52, 140, 0.16);
    }

        .about-feature-card:hover::before {
            opacity: 1;
        }
.about-feature-card.active-feature {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.95);
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.22), 0 0 55px rgba(88, 52, 140, 0.22);
}

.about-feature-detail-panel {
    grid-column: 1 / -1;
    width: 92%;
    max-width: 1250px;
    justify-self: center;
    margin: 10px auto 12px;
    display: none;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 42px;
    position: relative;
    padding: 42px 55px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(11, 7, 24, 0.98), rgba(5, 8, 22, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.55), inset 0 0 22px rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

    .about-feature-detail-panel.open {
        display: grid;
        animation: featurePanelOpen 0.28s ease forwards;
    }

    .about-feature-detail-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at left center, rgba(212, 175, 55, 0.12), transparent 34%), radial-gradient(circle at top right, rgba(116, 52, 168, 0.16), transparent 42%);
        pointer-events: none;
    }

.feature-detail-icon-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-detail-icon-wrap img {
        width: 230px;
        height: 230px;
        object-fit: contain;
        filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.45)) drop-shadow(0 0 35px rgba(88, 52, 140, 0.25));
    }

.feature-detail-content {
    position: relative;
    z-index: 2;
}

    .feature-detail-content h3 {
        font-family: 'Cinzel', serif;
        color: #f3d67c;
        font-size: 2rem;
        margin-bottom: 18px;
        text-shadow: 0 0 14px rgba(212, 175, 55, 0.22);
    }

    .feature-detail-content p {
        color: #eadfca;
        font-size: 1.22rem;
        line-height: 1.8;
        max-width: 980px;
    }

.feature-detail-close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: rgba(5, 8, 22, 0.92);
    color: #f3d67c;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .feature-detail-close:hover {
        background: rgba(212, 175, 55, 0.16);
        transform: rotate(90deg);
    }

@keyframes featurePanelOpen {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* ABOUT THEMES SECTION */
/* ============================= */

.about-themes-section {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    min-height: 310px;
    background: #050816;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
}

.about-themes-image {
    background-image: linear-gradient(90deg, rgba(2, 4, 12, 0.08), rgba(2, 4, 12, 0.35), rgba(2, 4, 12, 0.92)), url('../Images/backgrounds/themes-athens.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-themes-content {
    padding: 38px 50px;
    background: radial-gradient(circle at center, rgba(88, 52, 140, 0.12), transparent 55%), #050816;
}

.about-themes-header {
    text-align: center;
    margin-bottom: 32px;
}

    .about-themes-header h2 {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        font-size: 2rem;
        letter-spacing: 1px;
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

.about-themes-divider {
    width: 260px;
    height: 1px;
    margin: 12px auto 0;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.8), transparent);
    position: relative;
}

    .about-themes-divider::after {
        content: "?";
        position: absolute;
        left: 50%;
        top: -13px;
        transform: translateX(-50%);
        color: #d4af37;
        font-size: 1.1rem;
    }

.about-themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-theme-card {
    text-align: center;
    padding: 8px 18px;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
}

    .about-theme-card:first-child {
        border-left: none;
    }

    .about-theme-card i {
        font-size: 2.2rem;
        color: #d4af37;
        margin-bottom: 14px;
        text-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
    }

    .about-theme-card h3 {
        font-family: 'Cinzel', serif;
        color: #f3d67c;
        font-size: 1.15rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .about-theme-card p {
        font-size: 1.05rem;
        line-height: 1.45;
        color: #e5dbc0;
    }

    /* ============================= */
/* WHY YOU'LL LOVE IT SECTION */
/* ============================= */

.about-love-section {
    padding: 75px 60px 90px;

    background:
        radial-gradient(
            circle at top center,
            rgba(88, 52, 140, 0.14),
            transparent 42%
        ),
        #040713;

    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.about-love-header {
    text-align: center;
    margin-bottom: 55px;
}

.about-love-header h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;

    font-size: 2.5rem;
    letter-spacing: 1px;

    margin-bottom: 14px;

    text-shadow:
        0 0 14px rgba(212, 175, 55, 0.18);
}

.about-love-divider {
    width: 260px;
    height: 1px;

    margin: 0 auto;

    position: relative;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(212, 175, 55, 0.8),
            transparent
        );
}

.about-love-divider::after {
    content: "?";

    position: absolute;

    left: 50%;
    top: -13px;

    transform: translateX(-50%);

    color: #d4af37;

    font-size: 1rem;

    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.5);
}

.about-love-grid {
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 26px;
}

.about-love-card {
    position: relative;

    padding: 42px 26px;

    border-radius: 14px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(12, 8, 24, 0.96),
            rgba(8, 5, 18, 0.96)
        );

    border: 1px solid rgba(212, 175, 55, 0.35);

    overflow: hidden;

    transition: all 0.3s ease;

    box-shadow:
        0 0 18px rgba(0, 0, 0, 0.4),
        inset 0 0 18px rgba(255, 255, 255, 0.02);
}

.about-love-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top center,
            rgba(160, 92, 255, 0.12),
            transparent 48%
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.about-love-card:hover {
    transform: translateY(-6px);

    border-color: rgba(212, 175, 55, 0.85);

    box-shadow:
        0 0 24px rgba(212, 175, 55, 0.16),
        0 0 45px rgba(88, 52, 140, 0.16);
}

.about-love-card:hover::before {
    opacity: 1;
}

.about-love-card i {
    position: relative;
    z-index: 2;

    font-size: 3rem;

    margin-bottom: 22px;

    color: #c98cff;

    text-shadow:
        0 0 18px rgba(201, 140, 255, 0.5),
        0 0 30px rgba(201, 140, 255, 0.2);
}

.about-love-card h3 {
    position: relative;
    z-index: 2;

    font-family: 'Cinzel', serif;

    font-size: 1.45rem;
    line-height: 1.25;

    color: #f3d67c;

    margin-bottom: 18px;

    text-shadow:
        0 0 12px rgba(212, 175, 55, 0.18);
}

.about-love-card p {
    position: relative;
    z-index: 2;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #e5dbc0;
}

/* ============================= */
/* LOVE SECTION RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {

    .about-love-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {

    .about-love-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .about-love-section {
        padding: 60px 24px 70px;
    }

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

    .about-love-header h2 {
        font-size: 2rem;
    }

    .about-love-divider {
        width: 180px;
    }
}

/* ============================= */
/* ABOUT PAGE RESPONSIVE */
/* ============================= */

@media (max-width: 1100px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .about-themes-section {
        grid-template-columns: 1fr;
    }

    .about-themes-image {
        min-height: 260px;
    }

    .about-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-theme-card:nth-child(3) {
        border-left: none;
    }
}

@media (max-width: 900px) {
    .about-hero-section {
        min-height: 560px;
        padding: 80px 28px;
        justify-content: center;
        text-align: center;
        background-image: linear-gradient(rgba(2, 4, 12, 0.72), rgba(2, 4, 12, 0.92)), url('../Images/backgrounds/about-game-hero.png');
    }

    .about-hero-content {
        margin-left: 0;
    }

    .about-hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .about-features-section {
        padding: 55px 24px 70px;
    }

    .about-features-header {
        gap: 12px;
    }

        .about-features-header h2 {
            font-size: 2rem;
        }

    .about-features-line {
        width: 70px;
    }

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

    .about-feature-card {
        min-height: 120px;
    }

        .about-feature-card h3 {
            font-size: 1.15rem;
        }
}

@media (max-width: 600px) {
    .about-themes-content {
        padding: 35px 24px;
    }

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

    .about-theme-card {
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        padding-top: 22px;
    }

        .about-theme-card:first-child {
            border-top: none;
        }

    /* ============================= */
    /* WHY YOU'LL LOVE IT SECTION */
    /* ============================= */

    .about-love-section {
        padding: 75px 60px 90px;
        background: radial-gradient( circle at top center, rgba(88, 52, 140, 0.14), transparent 42% ), #040713;
        border-top: 1px solid rgba(212, 175, 55, 0.22);
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

    .about-love-header {
        text-align: center;
        margin-bottom: 55px;
    }

        .about-love-header h2 {
            font-family: 'Cinzel', serif;
            color: #d4af37;
            font-size: 2.5rem;
            letter-spacing: 1px;
            margin-bottom: 14px;
            text-shadow: 0 0 14px rgba(212, 175, 55, 0.18);
        }

    .about-love-divider {
        width: 260px;
        height: 1px;
        margin: 0 auto;
        position: relative;
        background: linear-gradient( to right, transparent, rgba(212, 175, 55, 0.8), transparent );
    }

        .about-love-divider::after {
            content: "?";
            position: absolute;
            left: 50%;
            top: -13px;
            transform: translateX(-50%);
            color: #d4af37;
            font-size: 1rem;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

    .about-love-grid {
        max-width: 1450px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 26px;
    }

    .about-love-card {
        position: relative;
        padding: 42px 26px;
        border-radius: 14px;
        text-align: center;
        background: linear-gradient( 135deg, rgba(12, 8, 24, 0.96), rgba(8, 5, 18, 0.96) );
        border: 1px solid rgba(212, 175, 55, 0.35);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.4), inset 0 0 18px rgba(255, 255, 255, 0.02);
    }

        .about-love-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient( circle at top center, rgba(160, 92, 255, 0.12), transparent 48% );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .about-love-card:hover {
            transform: translateY(-6px);
            border-color: rgba(212, 175, 55, 0.85);
            box-shadow: 0 0 24px rgba(212, 175, 55, 0.16), 0 0 45px rgba(88, 52, 140, 0.16);
        }

            .about-love-card:hover::before {
                opacity: 1;
            }

        .about-love-card i {
            position: relative;
            z-index: 2;
            font-size: 3rem;
            margin-bottom: 22px;
            color: #c98cff;
            text-shadow: 0 0 18px rgba(201, 140, 255, 0.5), 0 0 30px rgba(201, 140, 255, 0.2);
        }

        .about-love-card h3 {
            position: relative;
            z-index: 2;
            font-family: 'Cinzel', serif;
            font-size: 1.45rem;
            line-height: 1.25;
            color: #f3d67c;
            margin-bottom: 18px;
            text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
        }

        .about-love-card p {
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #e5dbc0;
        }

    /* ============================= */
    /* LOVE SECTION RESPONSIVE */
    /* ============================= */

    @media (max-width: 1200px) {

        .about-love-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 850px) {

        .about-love-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {

        .about-love-section {
            padding: 60px 24px 70px;
        }

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

        .about-love-header h2 {
            font-size: 2rem;
        }

        .about-love-divider {
            width: 180px;
        }
    }


}
