:root {
    color-scheme: dark;

    --background: #020207;
    --background-soft: #070712;
    --surface: rgba(8, 7, 18, 0.82);
    --surface-strong: rgba(6, 5, 14, 0.94);

    --text: #ffffff;
    --text-soft: #d3cede;
    --text-muted: #968fa6;

    --pink: #ff2bd6;
    --purple: #8b38ff;
    --cyan: #00e7ff;
    --blue: #2377ff;
    --lime: #9dff00;
    --yellow: #ffe900;

    --border: rgba(255, 255, 255, 0.12);
    --border-neon: rgba(0, 231, 255, 0.38);

    --container: 1180px;
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 34px;

    --shadow-card:
        0 28px 80px rgba(0, 0, 0, 0.38);

    --shadow-neon:
        0 0 24px rgba(255, 43, 214, 0.18),
        0 0 60px rgba(0, 231, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family:
        "Exo 2",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    content: "";

    background-image:
        url("/assets/images/djganesha-background-desktop.jpg");

    background-image:
        image-set(
            url("/assets/images/djganesha-background-desktop.webp")
                type("image/webp"),
            url("/assets/images/djganesha-background-desktop.jpg")
                type("image/jpeg")
        );

    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

body::after {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(2, 2, 8, 0.12),
            rgba(2, 2, 8, 0.45) 50%,
            rgba(2, 2, 8, 0.88)
        ),
        radial-gradient(
            ellipse at center top,
            transparent 0,
            rgba(2, 2, 8, 0.1) 45%,
            rgba(2, 2, 8, 0.75) 100%
        );
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 10;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 32px;
}

.brand {
    color: var(--text);
    font-family:
        "Cinzel Decorative",
        Georgia,
        serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-shadow:
        0 0 14px rgba(255, 43, 214, 0.55),
        0 0 28px rgba(0, 231, 255, 0.26);
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation-links > a {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.navigation-links > a:hover {
    color: var(--cyan);
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: calc(100vh - 88px);
    padding: 70px 0 130px;
    text-align: center;
}

.hero::before {
    position: absolute;
    z-index: -1;
    width: min(90vw, 950px);
    aspect-ratio: 1.8;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgba(139, 56, 255, 0.2),
            rgba(255, 43, 214, 0.08) 40%,
            transparent 72%
        );
    filter: blur(18px);
}

.hero-content {
    width: 100%;
}

.hero-logo {
    width: min(100%, 1050px);
    margin: 0 auto;
    filter:
        drop-shadow(
            0 0 16px
            rgba(255, 43, 214, 0.34)
        )
        drop-shadow(
            0 0 34px
            rgba(0, 231, 255, 0.2)
        );
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow:
        0 0 14px rgba(157, 255, 0, 0.42);
}

.hero-tagline {
    max-width: 760px;
    margin: 34px auto 0;
    color: var(--text-soft);
    font-size: clamp(1.1rem, 2.3vw, 1.45rem);
    line-height: 1.7;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #071000;
    background:
        linear-gradient(
            135deg,
            var(--lime),
            var(--yellow)
        );
    box-shadow:
        0 0 18px rgba(157, 255, 0, 0.32),
        0 0 36px rgba(255, 233, 0, 0.12);
}

.button-primary:hover {
    box-shadow:
        0 0 26px rgba(157, 255, 0, 0.5),
        0 0 50px rgba(255, 233, 0, 0.18);
}

.button-secondary {
    color: var(--text);
    border-color: rgba(0, 231, 255, 0.5);
    background:
        linear-gradient(
            135deg,
            rgba(0, 231, 255, 0.1),
            rgba(139, 56, 255, 0.1)
        );
    box-shadow:
        inset 0 0 18px rgba(0, 231, 255, 0.05),
        0 0 18px rgba(0, 231, 255, 0.12);
}

.button-secondary:hover {
    border-color: var(--cyan);
    box-shadow:
        inset 0 0 22px rgba(0, 231, 255, 0.09),
        0 0 24px rgba(0, 231, 255, 0.25);
}

.section {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.section-title {
    margin: 0;
    font-family:
        "Cinzel Decorative",
        Georgia,
        serif;
    font-size: clamp(2.3rem, 5.4vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-title .accent {
    color: var(--cyan);
    text-shadow:
        0 0 18px rgba(0, 231, 255, 0.38),
        0 0 35px rgba(139, 56, 255, 0.24);
}

.section-copy {
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.85;
}

.section-copy p:first-child {
    margin-top: 0;
}

.section-copy p:last-child {
    margin-bottom: 0;
}

.glass-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(15, 9, 28, 0.92),
            rgba(5, 5, 13, 0.92)
        );
    box-shadow:
        var(--shadow-card),
        var(--shadow-neon);
    backdrop-filter: blur(18px);
}

.glass-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    content: "";
    background:
        linear-gradient(
            to bottom,
            var(--pink),
            var(--purple),
            var(--cyan),
            var(--lime)
        );
}

.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.genre {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.private-section {
    text-align: center;
}

.private-card {
    width: min(860px, 100%);
    margin: 0 auto;
}

.private-card .section-title {
    max-width: 700px;
    margin: 0 auto;
}

.private-card .section-copy {
    max-width: 680px;
    margin: 26px auto 0;
}

.site-footer {
    padding: 44px 0;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-symbol {
    color: var(--lime);
    font-size: 1.5rem;
    text-shadow:
        0 0 16px rgba(157, 255, 0, 0.5);
}

.contact-email {
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
    text-shadow:
        0 0 12px rgba(0, 231, 255, 0.25);
}

.contact-email:hover {
    color: var(--lime);
    text-decoration: underline;
}

@media (max-width: 800px) {
    .navigation-links > a:not(.button) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 90px;
    }

    .hero-logo {
        width: min(115%, 760px);
        max-width: none;
        margin-left: -7.5%;
    }

    .section {
        padding: 80px 0;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(
            var(--container),
            calc(100% - 28px)
        );
    }

    .navigation {
        min-height: 76px;
    }

    .brand {
        font-size: 0.86rem;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .hero-actions,
    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .glass-card {
        border-radius: var(--radius-medium);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 700px) {
    body::before {
        background-image:
            url("/assets/images/djganesha-background-mobile.jpg");

        background-image:
            image-set(
                url("/assets/images/djganesha-background-mobile.webp")
                    type("image/webp"),
                url("/assets/images/djganesha-background-mobile.jpg")
                    type("image/jpeg")
            );

        background-position: center top;
    }
}
