    @font-face {
        font-family: Nats;
        src:
            url('../assets/fonts/NATS-Regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: Russo One;
        src:
            url('../assets/fonts/RussoOne-Regular.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'KH Interference';
        src: url('../assets/fonts/KHInterferenceTRIAL-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'KH Interference';
        src: url('../assets/fonts/KHInterferenceTRIAL-Bold.ttf') format('truetype');
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: Noto Sans JP Extra Bold;
        src:
            url('../assets/fonts/NotoSansJP-ExtraBold.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: Noto Sans JP Semi Bold;
        src:
            url('../assets/fonts/NotoSansJP-SemiBold.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }


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

    ::selection {
        background-color: var(--primary-dark);
        color: var(--on-primary);
    }

    html {
        font-size: 62.5%;
        font-family: "Inter", "KH Interference", sans-serif;
        font-weight: 400;
        line-height: 1.5;
        scroll-behavior: smooth;
    }

    html,
    body {
        height: 100%;
        overflow-x: hidden;
    }

    body {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smooth: always;
        background: linear-gradient(rgba(13, 10, 26, 0.7), rgba(26, 16, 64, 0.8)), url('../assets/imgs/oricon_banner.png') no-repeat center center fixed;
        background-size: cover;
        color: var(--text-color);
    }

    .app {
        opacity: 1;
        transition: opacity 0.4s ease;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        overflow-x: hidden;
        max-width: 100vw;
    }

    .app.loaded {
        opacity: 1;
    }

    .fade-out {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .slide-down {
        animation: slideDownAnimation 0.5s ease-out;
    }



    @-moz-document url-prefix() {
        * {
            scrollbar-width: thin;
            scrollbar-color: rgba(167,139,250,0.35) rgba(13,10,26,0.5);
        }
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(13, 10, 26, 0.5);
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(167, 139, 250, 0.3);
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(167, 139, 250, 0.5);
    }


    .initial-loading {
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s ease-in-out;
    }

    .loaded {
        opacity: 1;
        visibility: visible;
    }

    /* --- Global Loading Screen --- */
    /* --- Global Loading Screen styles moved to index.html for Critical CSS --- */

    .content {
        flex: 1;
    }

    /* GLOBAL TYPOGRAPHY OVERWRITES */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .title,
    strong,
    b,
    .header__title {
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
    }

    p,
    span,
    li,
    a {
        font-family: "Inter", "KH Interference", sans-serif;
        font-weight: 400;
    }

    :root {
        /* === Colors — Deep Space Theme === */
        --primary: #A78BFA;
        --primary-light: #C4B5FD;
        --primary-lighter: #DDD6FE;
        --primary-dark: #7C3AED;
        --surface: #1E1245;
        --surface-alt: #251555;
        --on-primary: #FFFFFF;
        --text-color: #E8E0F0;
        --text-muted: rgba(200, 180, 255, 0.55);
        --border-color: rgba(167, 139, 250, 0.15);
        /* Legacy aliases */
        --primary-color: #A78BFA;
        --white-color: #1A1040;
        --font-text: 2.6rem;

        /* === Typography Scale === */
        --text-xs: 1.1rem;
        --text-sm: 1.25rem;
        --text-base: 1.4rem;
        --text-md: 1.6rem;
        --text-lg: 1.8rem;
        --text-xl: 2.1rem;
        --text-2xl: 2.6rem;
        --text-3xl: 3.4rem;
        --text-4xl: 4.4rem;
        --text-5xl: 6.4rem;

        /* === Spacing === */
        --space-xs: 8px;
        --space-sm: 16px;
        --space-md: 30px;
        --space-lg: 60px;
        --space-xl: 90px;
        --space-2xl: 120px;

        /* === Border Radius === */
        --radius-sm: 4px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 30px;
        --radius-full: 9999px;

        /* === Shadows / Elevation — Depth & Glow === */
        --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
        --glow-sm: 0 0 15px rgba(167, 139, 250, 0.08);
        --glow-md: 0 0 30px rgba(167, 139, 250, 0.12);
        --glow-lg: 0 0 50px rgba(167, 139, 250, 0.18);

        /* === Transitions === */
        --transition-fast: 200ms ease;
        --transition-base: 350ms ease;
        --transition-slow: 700ms ease;
    }

    a,
    body,
    button,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span {
        font-weight: 700;
        letter-spacing: .04em;
        font-feature-settings: normal;
    }

    /* ============================================
       HEADER — Glassmorphism
    ============================================ */
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 60px;
        background: rgba(13, 10, 26, 0.75);
        backdrop-filter: blur(20px) saturate(1.2);
        -webkit-backdrop-filter: blur(20px) saturate(1.2);
        transition: background var(--transition-base), box-shadow var(--transition-base);
        border-bottom: 1px solid rgba(167, 139, 250, 0.08);
    }

    .header a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 600;
    }

    .header__title {
        display: flex;
        align-items: center;
    }

    .header .header__title .logo {
        margin-right: 10px;
    }

    .header .header__title .logo img {
        width: 170px;
        height: 50px;
        object-fit: contain;
    }

    .header>.header__title p {
        font-size: var(--font-text);
    }

    .header .header__title:hover {
        opacity: .7;
    }


    .header__nav>ul {
        display: flex;
        list-style: none;
    }

    .header__nav>ul>li {
        margin-left: 45px;
        font-size: 2.4rem;
        margin-top: 1px;
    }

    .header__nav>ul>li>a {
        position: relative;
        padding-bottom: 2px;
        transition: color var(--transition-fast);
    }

    .header__nav>ul>li>a:hover {
        color: var(--primary);
    }

    .header__nav>ul>li>a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--primary);
        transition: width var(--transition-base);
    }

    .header__nav>ul>li>a:hover::after,
    .header__nav>ul>li>a.active::after {
        width: 100%;
    }

    .header__nav>ul>li>a.active {
        opacity: 1;
        color: var(--primary);
    }

    .content {
        opacity: 1;
        transition: opacity 0.6s ease;
    }

    .content.fade-out {
        opacity: 0;
        transition: opacity 0.35s ease-out;
    }

    .content.fade-in {
        opacity: 1;
    }


    .content .about,
    .content .about-detail,
    .content .projects,
    .content .network,
    .content .partner,
    .content .contact {
        padding: 90px 60px 0;
        color: var(--text-color);
        align-content: center;
    }

    .content .about .title::after,
    .content .about-detail .title::after,
    .content .projects .title::after,
    .content .network .title::after,
    .content .partner .title::after,
    .content .contact .title::after {
        content: '';
        flex: 1;
        margin-left: 45px;
        border-top: 1px solid var(--border-color);
    }

    .content .about .title,
    .content .about-detail .title,
    .content .projects .title,
    .content .network .title,
    .content .partner .title,
    .content .contact .title {
        position: relative;
        font-size: clamp(3.2rem, 5.5vw, 6.4rem);
        display: flex;
        align-items: center;
        white-space: nowrap;
        line-height: 1.1;
        letter-spacing: .02em;
        font-weight: 600;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        color: var(--on-primary);
        text-shadow: 0 0 40px rgba(167, 139, 250, 0.12);
    }

    .content .about>h1,
    .content .about-detail>h1,
    .content .works>h1,
    .content .contact>h1 {
        font-size: 64px;
    }

    .content .about>h1 {
        white-space: nowrap;
        font-size: clamp(1.8rem, 3.5vw, 48px);
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
    }

    .content .about-detail>h1 {
        white-space: nowrap;
        font-size: clamp(2rem, 4vw, 86px);
    }

    .content .about .desc,
    .content .about-detail .desc,
    .content .works .desc,
    .content .contact .desc {
        display: flex;
        align-items: center;
        align-self: start;
        font-size: 2.8em;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.4;
        color: var(--text-muted);
    }

    .content .about-detail .desc {
        font-size: 3.6em;
        margin-bottom: 30px;
    }

    .content .about .desc::before,
    .content .about-detail .desc::before,
    .content .works .desc::before,
    .content .contact .desc::before {
        content: '▸';
        margin-right: 10px;
        margin-left: -13px;
        font-size: 5rem;
        margin-bottom: -7px;
        vertical-align: baseline;
        color: var(--primary);
    }

    .about__wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 60px auto;
    }


    .about__item__title,
    .about__item__title span {
        font-size: 4rem;
        margin-top: 15px;
        font-weight: 600;
        color: var(--on-primary);
    }

    .about__item__highlight-block {
        display: inline-block;
        margin-top: 15px;
        padding: 16px 40px;
        background: rgba(124, 58, 237, 0.25);
        color: var(--primary-light);
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        border: 1px solid rgba(167, 139, 250, 0.2);
    }

    .about__item__blocks {
        display: flex;
        gap: 15px;
        margin-top: 25px;
    }

    .about__block {
        padding: 14px 36px;
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--border-color);
        border-radius: 30px;
        font-size: 2.6rem;
        font-weight: 600;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        letter-spacing: 0.04em;
        transition: all var(--transition-base);
    }

    .about__block:hover {
        border-color: var(--primary);
        box-shadow: var(--glow-sm);
    }

    /*                    About Detail Section                    */
    .about-detail__content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .about-detail__gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .about-detail__img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        object-fit: cover;
        aspect-ratio: 4/3;
        border: 1px solid var(--border-color);
    }

    .about-detail__text {
        font-size: 2.8rem;
        line-height: 1.6;
        font-weight: 400;
        color: var(--text-color);
        text-wrap: balance;
    }

    .about-detail__highlight-block {
        display: inline-block;
        margin-top: 20px;
        padding: 18px 48px;
        background: rgba(124, 58, 237, 0.25);
        color: var(--primary-light);
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-size: 3rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        border: 1px solid rgba(167, 139, 250, 0.2);
    }

    .about__item__skill {
        margin-top: 8px;
        font-size: 2.4rem;
    }

    .about__item__skill>span {
        padding: 4px 12px;
        background: rgba(124, 58, 237, 0.3);
        color: var(--primary-light);
        border-radius: 20px;
        line-height: 1;
        display: inline-block;
        margin-right: 4px;
    }

    .about__item__link {
        margin-top: 30px;
    }

    .about__item__link>a {
        text-decoration: none;
        color: var(--primary);
        margin-right: 10px;
        padding: 5px 24px 4px;
        border: 1px solid var(--border-color);
        border-radius: 50px;
        font-size: 1.8rem;
        transition: all var(--transition-base);
        display: inline-block;
    }

    .about__item__link>a:hover {
        background: rgba(124, 58, 237, 0.25);
        border-color: var(--primary);
        color: var(--primary-light);
        box-shadow: var(--glow-sm);
    }

    .about__icon {
        margin-left: auto;
        position: relative;
    }

    .wrap__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 400px;
        height: 400px;
        border-radius: 100%;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(26, 16, 64, 0.6) 100%);
        overflow: hidden;
    }

    .wrap__icon img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 100%;
    }


    /*                              Bubble animation                        */
    .bubble {
        position: absolute;
        background: radial-gradient(circle at 40% 40%,
                rgba(167, 139, 250, 0.15),
                rgba(167, 139, 250, 0.03));
        border: 1px solid rgba(167, 139, 250, 0.08);
        border-radius: 50%;
        box-shadow:
            0 0 30px rgba(167, 139, 250, 0.1),
            inset 0 0 15px rgba(167, 139, 250, 0.05);
        animation: distort 8s ease-in-out infinite;
        z-index: -2;
    }

    .bubble::after {
        content: "";
        position: absolute;
        top: 15%;
        left: 20%;
        width: 30%;
        height: 30%;
        background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent);
        border-radius: 50%;
        animation: shimmer 4s ease-in-out infinite;
    }



    .bubble:nth-child(2)::after {
        content: "";
        position: absolute;
        top: 24%;
        left: 50%;
        width: 30%;
        height: 30%;
        background: radial-gradient(circle, rgba(167, 139, 250, 0.15), transparent);
        border-radius: 50%;
        animation: shimmer 7s ease-in-out infinite;
    }

    .bubble:nth-child(2) {
        bottom: 0%;
        transform: translateY(50%);
        right: 10%;
        width: 60px;
        height: 60px;
        animation-duration: 4s;
    }

    .bubble:nth-child(3)::after {
        content: "";
        position: absolute;
        top: 24%;
        left: 0%;
        width: 30%;
        height: 30%;
        background: radial-gradient(circle, rgba(167, 139, 250, 0.15), transparent);
        border-radius: 50%;
        animation: shimmer 8s ease-in-out infinite;
    }

    .bubble:nth-child(3) {
        top: 50%;
        left: -14%;
        transform: translateY(50%);
        width: 80px;
        height: 80px;
        animation-duration: 5s;
    }

    .bubble:nth-child(4) {
        top: 0%;
        right: 0%;
        transform: translateY(50%);
        width: 63px;
        height: 63px;
        animation-duration: 4s;
    }

    .bubble:nth-child(4)::after {
        content: "";
        position: absolute;
        top: 24%;
        left: 0%;
        width: 30%;
        height: 30%;
        background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent);
        border-radius: 50%;
        animation: shimmer 4s ease-in-out infinite;
    }



    .works__wrapper {
        display: grid;
        margin-top: 90px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        grid-column-gap: 45px;
        grid-row-gap: 45px;
    }

    .work__wrapper {
        display: flex;
        margin: 20px 0;
    }

    .work__class {
        display: inline-block;
        margin-right: 16px;
        padding: 4px 30px 3px;
        font-size: 1.8rem;
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.4);
        border: 1px solid rgba(167, 139, 250, 0.2);
    }

    .work__genre {
        display: inline-block;
        color: var(--primary);
        padding: 3px 30px;
        border: 1px solid var(--border-color);
        font-size: 1.8rem;
        border-radius: 100vmax;
    }


    .work__link__image {
        width: 100%;
        border: 0;
        vertical-align: top;
    }

    .works__viewmore {
        margin-top: 40px;
        text-align: center;
    }

    .works__viewmore__link {
        display: inline-block;
        text-decoration: none;
        color: var(--primary);
        font-size: 2rem;
        padding: 12px 40px;
        border-radius: 50px;
        transition: all var(--transition-base);
        border: 1px solid var(--border-color);
    }

    .works__viewmore__link:hover {
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.3);
        border-color: var(--primary);
        box-shadow: var(--glow-sm);
    }

    .contact__cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 60px;
    }

    .contact__card {
        flex: 1;
        min-width: 320px;
        max-width: 450px;
        display: flex;
        align-items: center;
        background: rgba(26, 16, 64, 0.5);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 30px 24px;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        gap: 20px;
    }

    .contact__card:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.3);
        box-shadow: var(--shadow-md), var(--glow-sm);
    }

    .contact__card:hover .contact__card__icon {
        background: rgba(124, 58, 237, 0.3);
        border-color: var(--primary);
    }

    .contact__card:hover .contact__card__icon svg {
        fill: var(--primary-light);
    }

    .contact__card__icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid var(--border-color);
        background-color: transparent;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .contact__card__icon svg {
        width: 40px;
        height: 40px;
        fill: var(--primary);
        transition: fill 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .contact__card__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .contact__card__title {
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-size: 1.8rem;
        color: var(--text-muted);
        letter-spacing: 0.05em;
        margin-bottom: 6px;
    }

    .contact__mail__text,
    .contact__card__desc {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--text-color);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 8px;
    }

    .contact__card__hint {
        font-size: 1.4rem;
        color: var(--text-muted);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .footer {
        margin-top: 90px;
        padding: 80px 0;
        background: linear-gradient(180deg, rgba(13, 10, 26, 0) 0%, rgba(13, 10, 26, 0.8) 100%);
        border-top: 1px solid var(--border-color);
    }

    .copy {
        font-size: 2rem;
        text-align: center;
        color: var(--text-muted);
    }



    .msg__copy {
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: rgba(26, 16, 64, 0.9);
        color: var(--primary);
        padding: 16px 28px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 2.2rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        box-shadow: var(--shadow-md), var(--glow-sm);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 9999;
        backdrop-filter: blur(12px);
    }

    .msg__copy.show {
        opacity: 1;
        transform: translateY(0);
    }

    /*                    Projects Section                    */
    .content .projects {
        padding: 90px 60px 0;
        color: var(--text-color);
    }

    .content .projects .title::after {
        content: '';
        width: 100%;
        margin-left: 45px;
        border-top: 1px solid var(--border-color);
    }

    .content .projects .title {
        position: relative;
        font-size: var(--text-5xl);
        display: flex;
        align-items: center;
        line-height: .7;
        letter-spacing: .04em;
        font-weight: 700;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
    }

    .content .projects>h1 {
        font-size: 64px;
    }

    .content .projects .desc {
        display: flex;
        align-items: center;
        align-self: start;
        font-size: 2.8em;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.4;
        color: var(--text-muted);
    }

    .content .projects .desc::before {
        content: '▸';
        margin-right: 10px;
        margin-left: -13px;
        font-size: 5rem;
        margin-bottom: -7px;
        vertical-align: baseline;
        color: var(--primary);
    }

    .projects__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 45px;
        grid-row-gap: 45px;
        margin-top: 60px;
    }

    .project__card {
        background: rgba(26, 16, 64, 0.45);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-sm);
        background-clip: padding-box;
        will-change: transform, box-shadow;
        backface-visibility: hidden;
    }

    .project__card:hover {
        transform: translateY(-6px);
        border-color: rgba(167, 139, 250, 0.3);
        box-shadow: var(--shadow-lg), var(--glow-md);
    }

    .project__card__image-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-bottom: 1px solid var(--border-color);
        background-color: rgba(13, 10, 26, 0.5);
    }

    .project__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
        display: block;
    }

    .project__card:hover .project__img {
        transform: scale(1.05);
    }

    .project__card__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(13, 10, 26, 0.7), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 20px;
        pointer-events: none;
    }

    .project__card:hover .project__card__overlay {
        opacity: 1;
    }

    .project__card__icon {
        width: 32px;
        height: 32px;
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.5);
        border: 1px solid rgba(167, 139, 250, 0.3);
        border-radius: 50%;
        padding: 6px;
        transform: translateX(10px) translateY(10px);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .project__card:hover .project__card__icon {
        transform: translateX(0) translateY(0);
    }

    .project__card__content {
        padding: 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex: 1;
        justify-content: space-between;
    }

    .project__card__badges {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .project__type,
    .project__category {
        padding: 4px 16px 2px;
        font-size: 1.4rem;
        border-radius: 100vmax;
        font-weight: 600;
        letter-spacing: 0.05em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .project__type {
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.4);
        border: 1px solid rgba(167, 139, 250, 0.25);
    }

    .project__category {
        color: var(--primary);
        border: 1px solid var(--border-color);
        background-color: transparent;
    }

    /* VIEW MORE BUTTON */
    .project__view-more {
        display: none;
        /* Hidden by default (PC/Tablet) */
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }

    .view-more-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 40px;
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--border-color);
        border-radius: 100vmax;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .view-more-btn:hover {
        transform: translateY(-2px);
        background: rgba(124, 58, 237, 0.25);
        border-color: var(--primary);
        color: var(--primary-light);
        box-shadow: var(--glow-sm);
    }

    .view-more-btn svg {
        transition: transform 0.4s ease;
    }

    .view-more-btn:hover svg {
        transform: translateY(3px);
    }

    /* MOBILE LIMITER LOGIC */
    @media (max-width: 53.875rem) {
        .project__view-more {
            display: flex;
        }

        .projects__grid:not(.is-expanded) .project__card:nth-child(n+7) {
            display: none !important;
        }
    }

    .project__card__info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .project__name {
        font-size: 2.2rem;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
        color: var(--on-primary);
        letter-spacing: 0.02em;
        line-height: 1.3;
        margin: 0;
        transition: color 0.3s ease;
    }

    .project__date {
        font-size: 1.5rem;
        color: var(--text-muted);
        font-weight: 600;
        display: flex;
        align-items: center;
        letter-spacing: 0.02em;
    }

    .project__card {
        text-decoration: none;
        color: inherit;
        display: flex;
        height: 100%;
    }

    /*                    Network Section                    */
    .content .network {
        padding: 90px 60px 0;
        color: var(--text-color);
    }

    .content .network .title::after {
        content: '';
        width: 100%;
        margin-left: 45px;
        border-top: 1px solid var(--border-color);
    }

    .content .network .title {
        position: relative;
        font-size: var(--text-5xl);
        display: flex;
        align-items: center;
        line-height: .7;
        letter-spacing: .04em;
        font-weight: 700;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
    }

    .content .network>h1 {
        font-size: 64px;
    }

    .content .network .desc {
        display: flex;
        align-items: center;
        align-self: start;
        font-size: 2.8em;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.4;
        color: var(--text-muted);
    }

    .content .network .desc::before {
        content: '▸';
        margin-right: 10px;
        margin-left: -13px;
        font-size: 5rem;
        margin-bottom: -7px;
        vertical-align: baseline;
        color: var(--primary);
    }

    .network__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        max-width: 1350px;
        margin-left: auto;
        margin-right: auto;
    }

    .network__card {
        width: calc(23% - 15px);
        display: flex;
        flex-direction: column;
        background: rgba(26, 16, 64, 0.45);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
    }

    .network__card:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.3);
        box-shadow: var(--shadow-md), var(--glow-sm);
    }

    .network__card__img {
        width: 100%;
        overflow: hidden;
        aspect-ratio: 1/1;
        background: rgba(13, 10, 26, 0.3);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .network__card__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .network__card:hover .network__card__img img {
        transform: scale(1.05);
    }

    .network__card__info {
        padding: 12px 10px 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .network__card__name {
        font-size: 1.5rem;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
        color: var(--text-color);
        letter-spacing: 0.03em;
        margin: 0 0 6px 0;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .network__card:hover .network__card__name {
        color: var(--primary-light);
    }

    .network__card__socials {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .network__social {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid var(--border-color);
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .network__social svg {
        width: 16px;
        height: 16px;
        fill: var(--primary);
        transition: fill 0.3s;
    }

    .network__social:hover {
        background: rgba(124, 58, 237, 0.3);
        border-color: var(--primary);
        box-shadow: var(--glow-sm);
    }

    .network__social:hover svg {
        fill: var(--primary-light);
    }

    .network__social--group {
        position: relative;
    }

    .network__social--group::after {
        content: '+';
        position: absolute;
        top: -5px;
        right: -5px;
        width: 12px;
        height: 12px;
        background: rgba(124, 58, 237, 0.6);
        color: var(--on-primary);
        border-radius: 50%;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        line-height: 1;
    }

    .network__social--page {
        position: relative;
    }

    .network__social--page::after {
        content: 'P';
        position: absolute;
        top: -5px;
        right: -5px;
        width: 12px;
        height: 12px;
        background: rgba(124, 58, 237, 0.6);
        color: var(--on-primary);
        border-radius: 50%;
        font-size: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        line-height: 1;
    }



    /*                    Partner Section                    */
    .content .partner {
        padding: 90px 60px 0;
        color: var(--text-color);
    }

    .content .partner .title::after {
        content: '';
        width: 100%;
        margin-left: 45px;
        border-top: 1px solid var(--border-color);
    }

    .content .partner .title {
        position: relative;
        font-size: var(--text-5xl);
        display: flex;
        align-items: center;
        line-height: .7;
        letter-spacing: .04em;
        font-weight: 700;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
    }

    .content .partner>h1 {
        font-size: 64px;
    }

    .content .partner .desc {
        display: flex;
        align-items: center;
        align-self: start;
        font-size: 2.8em;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.4;
        color: var(--text-muted);
    }

    .content .partner .desc::before {
        content: '▸';
        margin-right: 10px;
        margin-left: -13px;
        font-size: 5rem;
        margin-bottom: -7px;
        vertical-align: baseline;
        color: var(--primary);
    }

    .partner__grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 50px;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
    }

    .partner__card {
        width: 100%;
        display: flex;
        flex-direction: column;
        background: rgba(26, 16, 64, 0.45);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
    }

    .partner__card:hover {
        transform: translateY(-4px);
        border-color: rgba(167, 139, 250, 0.3);
        box-shadow: var(--shadow-md), var(--glow-sm);
    }

    .partner__card__img {
        width: 100%;
        overflow: hidden;
        aspect-ratio: 1/1;
        background: rgba(13, 10, 26, 0.3);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
    }

    .partner__card__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .partner__card:hover .partner__card__img img {
        transform: scale(1.05);
    }

    .partner__card__info {
        padding: 12px 10px 14px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .partner__card__name {
        font-size: 1.5rem;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-weight: 700;
        color: var(--text-color);
        letter-spacing: 0.03em;
        margin: 0;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .partner__card:hover .partner__card__name {
        color: var(--primary-light);
    }

    /*                             Works page                              */
    .works__genre {
        display: flex;
        flex-wrap: wrap;
        margin-top: 15px;
        margin-bottom: 30px;
        align-items: center;
    }

    .works__genre__button {
        margin-top: 15px;
        margin-right: 15px;
    }

    .works__genre__button button {
        display: inline-block;
        padding: 6px 24px 4px;
        border: 1px solid var(--border-color);
        border-radius: 100vmax;
        font-size: 15px;
        color: var(--primary);
        transition: all var(--transition-base);
        background-color: transparent;
        cursor: pointer;
    }

    .works__genre__button button:hover {
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.3);
        border-color: var(--primary);
    }

    /*                             Videos page                             */
    .page {
        padding: 0 60px;
        margin-top: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .page__title {
        display: inline-block;
        padding: 0.1rem 2.2rem 1.1rem 2.6rem;
        font-size: 7.2rem;
        line-height: 1.25;
        margin-top: 10px;
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.3);
        border: 1px solid var(--border-color);
        letter-spacing: 0;
        font-family: "Noto Sans JP Extra Bold";
    }

    .page__heading {
        margin-top: 15px;
    }

    .page__artist {
        display: inline-block;
        padding: 1rem 3.2rem 1.4rem 3.2rem;
        font-size: 3rem;
        line-height: 1;
        letter-spacing: .01em;
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.3);
        border: 1px solid var(--border-color);
        font-family: "Noto Sans JP Extra Bold";
    }

    .page__wrapper {
        display: block;
        margin-top: 90px;
    }

    .page__youtube {
        width: 100%;
        max-width: 1366px;
        aspect-ratio: 16/9;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: auto;
    }

    .page__youtube iframe {
        width: 100%;
        height: 100%;
        border-style: none;
        border-radius: var(--radius-md);
    }


    .page__about {
        margin: 75px auto 120px;
        max-width: 1366px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 60px;
        grid-row-gap: 0;
    }

    .page__credit {
        grid-area: 1 / 1 / 2 / 3;
    }

    .page__credit__title,
    .page__desc__title {
        text-align: left;
        line-height: 1.5;
        font-size: 4.0rem;
        color: var(--on-primary);
        font-weight: 900;
        letter-spacing: .01em;
    }

    .page__about p {
        text-align: left;
        line-height: 1.7;
        font-size: 2.3rem;
        color: var(--text-color);
    }

    .page__desc {
        grid-area: 1 / 3 / 4 / 5;
    }

    .page__review {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-column-gap: 30px;
        grid-row-gap: 30px
    }

    .page__review img {
        width: 100%;
        height: 100%;
        border-radius: var(--radius-md);
    }

    .page__credit__html p,
    .page__desc__html p {
        font-family: "Noto Sans JP Semi Bold";
        white-space: pre-line;
        letter-spacing: .02em;
        font-weight: 600;
        font-size: 1.7rem;
        line-height: 2;
    }


    .error-message {
        font-family: 'Segoe UI', sans-serif;
        color: #ef4444;
        text-align: center;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        padding: 20px;
        margin: 90px auto 0;
        max-width: 600px;
        border-radius: 10px;
    }

    .error-message h2 {
        font-size: 2.5rem;
        margin: 0;
    }


    .video-not-found {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 1.8rem;
        font-weight: 600;
        padding: 2rem;
        margin: 2rem auto;
        max-width: 80%;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        background: rgba(26, 16, 64, 0.3);
        box-shadow: var(--shadow-sm);
    }


    .work__link__wrapper {
        position: relative;
        width: 100%;
    }

    .work__link__title {
        font-family: "Noto Sans JP Extra Bold";
        position: absolute;
        padding: 30px;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        color: transparent;
        background-color: transparent;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100%;
    }

    .work__link__title>h1 {
        font-size: 2.5rem;
        letter-spacing: 0;
        line-height: 1.2;
    }


    .work__link__title:hover {
        color: var(--on-primary);
        background: rgba(124, 58, 237, 0.5);
    }


    /*                             Animation frames                        */

    @keyframes shimmer {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 0.7;
        }

        50% {
            transform: translate(10px, -10px) scale(1.1);
            opacity: 1;
        }

        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.7;
        }
    }


    @keyframes distort {
        0% {
            transform: scale(1) rotate(0deg);
        }

        33% {
            transform: scale(1.02, 0.98) rotate(0.5deg);
        }

        66% {
            transform: scale(0.98, 1.02) rotate(-0.5deg);
        }

        100% {
            transform: scale(1) rotate(0deg);
        }
    }

    @keyframes slideDownAnimation {
        from {
            transform: translateY(-30px);
            opacity: 0;
        }

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

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

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


    /* ============================================
       ACCESSIBILITY — Focus Styles
    ============================================ */
    :focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 3px;
        border-radius: var(--radius-sm);
    }

    a:focus-visible,
    button:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 3px;
    }

    /* Header links — outline visible on dark bg */
    .header a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 4px;
        border-radius: var(--radius-sm);
    }


    /* ============================================
       SCROLL ANIMATIONS — Cinematic
    ============================================ */
    .fade-in-up {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(3px);
        transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
        will-change: opacity, transform, filter;
        backface-visibility: hidden;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    /* Stagger delays for grid children */
    .fade-in-up:nth-child(2) {
        transition-delay: 100ms;
    }

    .fade-in-up:nth-child(3) {
        transition-delay: 200ms;
    }

    .fade-in-up:nth-child(4) {
        transition-delay: 300ms;
    }

    .fade-in-up:nth-child(5) {
        transition-delay: 400ms;
    }

    .fade-in-up:nth-child(6) {
        transition-delay: 500ms;
    }


    /* ============================================
       ALTERNATING SECTION BACKGROUNDS
    ============================================ */
    .content .about-detail {
        background: linear-gradient(180deg, rgba(30, 18, 69, 0.4) 0%, rgba(13, 10, 26, 0) 100%);
        padding-bottom: var(--space-xl);
        margin-top: 0;
    }

    .content .network {
        background: linear-gradient(180deg, rgba(30, 18, 69, 0.4) 0%, rgba(13, 10, 26, 0) 100%);
        padding-bottom: var(--space-xl);
    }


    /* ============================================
       HAMBURGER MENU — Mobile Navigation
    ============================================ */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: var(--radius-sm);
        transition: background-color var(--transition-fast);
    }

    .hamburger:hover {
        background-color: rgba(167, 139, 250, 0.1);
    }

    .hamburger__bar {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--text-color);
        border-radius: 2px;
        transition: transform var(--transition-base), opacity var(--transition-fast);
        transform-origin: center;
    }

    .hamburger.open .hamburger__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open .hamburger__bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .hamburger__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile nav overlay */
    .mobile-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99;
        background: linear-gradient(160deg, #0D0A1A 0%, #1A1040 50%, #12082B 100%);
        padding: 120px var(--space-lg) var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav a {
        color: var(--text-color);
        text-decoration: none;
        font-size: var(--text-2xl);
        font-weight: 700;
        letter-spacing: 0.05em;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid var(--border-color);
        transition: color var(--transition-fast);
    }

    .mobile-nav a:hover {
        color: var(--primary);
    }


    /* ============================================
       PREFERS REDUCED MOTION
    ============================================ */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .fade-in-up {
            opacity: 1;
            transform: none;
            filter: none;
            transition: none;
        }

        .bubble {
            animation: none;
        }
    }


    /* ============================================
       CARD HOVER — Elevation System
    ============================================ */
    .project__card {
        transition: all var(--transition-base);
    }

    a.project__card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg), var(--glow-md);
    }

    .network__card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md), var(--glow-sm);
    }

    .partner__card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md), var(--glow-sm);
    }


    /* ============================================
       FOOTER IMPROVED
    ============================================ */
    .footer {
        margin-top: var(--space-xl);
        padding: 60px var(--space-lg);
        background: linear-gradient(180deg, rgba(13, 10, 26, 0) 0%, rgba(13, 10, 26, 0.8) 100%);
        border-top: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .footer__links {
        display: flex;
        gap: var(--space-lg);
        margin-bottom: var(--space-sm);
    }

    .footer__links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: var(--text-base);
        font-weight: 600;
        letter-spacing: 0.04em;
        transition: color var(--transition-fast);
    }

    .footer__links a:hover {
        color: var(--primary);
    }

    .copy {
        font-size: var(--text-base);
        text-align: center;
        color: rgba(200, 180, 255, 0.35);
        letter-spacing: 0.04em;
    }

    /* ==========================================================================
   GLOBAL EVENT MODAL
   ========================================================================== */
    .event-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 99999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .event-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .event-modal__backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 3, 12, 0.88);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        cursor: pointer;
    }

    .event-modal__container {
        position: relative;
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        background: linear-gradient(160deg, #1E1245 0%, #1A1040 100%);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        box-shadow: var(--shadow-lg), var(--glow-md);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transform: translateY(20px) scale(0.98);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .event-modal.open .event-modal__container {
        transform: translateY(0) scale(1);
    }

    .event-modal__close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(13, 10, 26, 0.8);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--primary);
        cursor: pointer;
        z-index: 10;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .event-modal__close:hover {
        background: rgba(124, 58, 237, 0.3);
        border-color: var(--primary);
        transform: rotate(90deg);
        box-shadow: var(--glow-sm);
    }

    .event-modal__close svg {
        width: 20px;
        height: 20px;
    }

    .event-modal__content {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .event-modal__content::-webkit-scrollbar {
        width: 6px;
    }

    .event-modal__content::-webkit-scrollbar-thumb {
        background: rgba(167, 139, 250, 0.3);
        border-radius: 4px;
    }

    .event-modal__cover {
        width: 100%;
        height: 240px;
        position: relative;
        overflow: hidden;
    }

    .event-modal__cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .event-modal__cover .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #1A1040 0%, rgba(26, 16, 64, 0) 100%);
    }

    .event-modal__body {
        padding: 0 24px 24px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: -20px;
        position: relative;
        z-index: 2;
    }

    .event-modal__badges {
        display: flex;
        gap: 10px;
    }

    .event-modal__title {
        font-size: 2.2rem;
        font-weight: 700;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        color: var(--on-primary);
        letter-spacing: 0.02em;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .event-modal__info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 12px;
    }

    .event-info-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .event-info-item svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .event-info-item div {
        display: flex;
        flex-direction: column;
    }

    .event-info-label {
        font-size: 1.2rem;
        color: var(--text-muted);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.05em;
        font-family: "Space Grotesk", "KH Interference", sans-serif;
    }

    .event-info-value {
        font-size: 1.4rem;
        color: var(--text-color);
        font-weight: 600;
        margin-top: 2px;
    }

    .event-modal__desc {
        font-size: 1.4rem;
        color: var(--text-muted);
        line-height: 1.6;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
        white-space: pre-line;
    }

    .event-modal__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 12px;
    }

    .event-modal__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        border-radius: 100vmax;
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--primary);
        font-family: "Space Grotesk", "KH Interference", sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .event-modal__btn:hover {
        background: rgba(124, 58, 237, 0.25);
        border-color: var(--primary);
        color: var(--primary-light);
        box-shadow: var(--glow-sm);
    }

    .event-modal__btn svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .event-modal__btn:hover svg {
        transform: scale(1.1);
    }