/* FONTS */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* CSS RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

:focus {
    outline: 0;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: inherit;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* CSS VARIABLES */
:root {
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --text: #e8e8f0;
    --text-muted: #9a9ab0;
    --white: #ffffff;
    --purple: #a855f7;
    --pink: #ec4899;
    --blue: #3b82f6;
    --gold: #c9a86c;
    --gradient: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    --gradient-btn: linear-gradient(90deg, var(--pink), var(--blue));
    --header-height: 120px;
    --header-height-compact: 80px;
    --header-transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --radius-btn: 4px;
    --radius-card: 8px;
    --section-spacing: 100px;
}

@property --header-height {
    syntax: '<length>';
    inherits: true;
    initial-value: 120px;
}

html {
    font-size: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    scrollbar-width: thin;
    scrollbar-color: #c026d3 #000;
    scrollbar-gutter: stable;
    transition: --header-height var(--header-transition);
}

html.header-scrolled {
    --header-height: var(--header-height-compact);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #000;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ec4899, #a855f7);
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f472b6, #c084fc);
}

body {
    background: #000;
    color: var(--text);
    font-weight: normal;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html.is-scroll-locked {
    overflow: hidden;
    scrollbar-gutter: stable;
}

@media (max-width: 1024px) {
    html.is-scroll-locked body {
        position: static;
        overflow: hidden;
        touch-action: none;
    }
}

@media (min-width: 1025px) {
    html.is-scroll-locked body {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        overflow: hidden;
    }
}

html.is-modal-open {
    overflow: hidden;
    scrollbar-gutter: stable;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 12px;
}

.section-label.label-blue {
    color: var(--blue);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-thin {
    font-weight: 100;
}

.text-pink {
    color: var(--pink);
}

.text-blue {
    color: var(--blue);
}

.section-header--left {
    text-align: left;
}

.swiper-section .section-header {
    margin-bottom: 40px;
}

.swiper-section {
    position: relative;
    overflow: visible;
}

.artists,
.events {
    overflow: visible;
}

.swiper-outer {
    position: relative;
    width: 100%;
}

.swiper-outer__track {
    width: 100%;
    min-width: 0;
}

.swiper-outer .swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #e879f9;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(-50%);
    transition: color 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    filter:
        drop-shadow(0 0 4px rgba(236, 72, 153, 0.9))
        drop-shadow(0 0 12px rgba(168, 85, 247, 0.7))
        drop-shadow(0 0 20px rgba(236, 72, 153, 0.4));
}

.swiper-outer--has-nav .swiper-arrow:not(.swiper-button-disabled) {
    display: none;
}

@media (min-width: 1025px) {
    .swiper-outer--has-nav .swiper-arrow:not(.swiper-button-disabled) {
        display: flex;
    }
}

.artists-prev,
.events-prev {
    left: -56px;
}

.artists-next,
.events-next {
    right: -56px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(236, 72, 153, 0.18);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-dark {
    background: #111;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-dark:hover {
    background: #1a1a1a;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
    width: 100%;
}

.btn-full {
    width: 100%;
}

.btn-header {
    padding: 12px 26px;
    font-size: 0.8rem;
    transition:
        padding var(--header-transition),
        font-size var(--header-transition),
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
}

html.header-scrolled .btn-header {
    padding: 10px 22px;
    font-size: 0.75rem;
}

.btn-ghost-gold {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.7rem;
    background: transparent;
    color: var(--white);
    /* border: 1px solid var(--gold); */
	border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: var(--radius-btn);
	transition: 0.3s ease;
}

.btn-ghost-gold:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: none;
}

.btn-ghost-gradient {
    background: transparent;
    color: var(--white);
    border: 1px solid transparent;
    background-image: linear-gradient(#050508, #050508), var(--gradient-btn);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
    flex-shrink: 0;
}

.btn-ghost-gradient:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
    transform: none;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(5, 5, 8, 0.42);
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        height var(--header-transition),
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        border-color 0.4s ease;
}

html.header-scrolled .site-header {
    background: rgba(5, 5, 8, 0.58);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    transition: gap var(--header-transition);
}

html.header-scrolled .header-inner {
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    width: 48px;
    height: auto;
    transition: width var(--header-transition);
}

html.header-scrolled .logo img {
    width: 40px;
}

.logo-text {
    font-weight: 100;
    font-size: 1rem;
    letter-spacing: 2.5px;
    color: var(--white);
    text-transform: uppercase;
    transition:
        font-size var(--header-transition),
        letter-spacing var(--header-transition);
}

html.header-scrolled .logo-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.logo-text strong {
    font-weight: bold;
}

.navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.navigation ul a {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition:
        color 0.35s ease,
        font-size var(--header-transition),
        letter-spacing var(--header-transition);
    position: relative;
}

html.header-scrolled .navigation ul a {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.navigation ul a:hover,
.navigation ul a.isactive {
    color: var(--white);
}

.nav-indicator {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    pointer-events: none;
    opacity: 0;
    transform: translateX(0);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
    will-change: transform, width, height;
}

.nav-indicator.is-visible {
    opacity: 1;
}

/* Hamburger */
.menu-toggle {
    display: none;
    position: relative;
    z-index: 1003;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
    -webkit-transition: -webkit-transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
    transform-origin: center;
    -webkit-transform-origin: center;
    pointer-events: none;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
    -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg);
    background: var(--gradient);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    background: var(--gradient);
}

.nav-social {
    display: none;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* HERO */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background: #000;
    transition: padding-top var(--header-transition);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.7) 33%, rgba(5, 5, 8, -0.6) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 24px;
}

.hero-label {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 36px;
    max-width: 540px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-social {
    display: flex;
    gap: 16px;
}

.hero-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-social a:hover {
    color: var(--white);
    border-color: var(--purple);
    background: rgba(168, 85, 247, 0.1);
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.3));
}

/* SERVICES */
.services {
    background: var(--bg-dark);
}

.services-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: #000000;
    border-radius: 10px;
    padding: 28px 22px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 320px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    width: 100%;
    font: inherit;
}

.service-card:focus-visible {
    outline: 2px solid rgba(79, 142, 247, 0.8);
    outline-offset: 3px;
}

.service-card--gradient {
    background:
        linear-gradient(#000000, #000000) padding-box,
        linear-gradient(145deg, rgba(79, 142, 247, 0.7), rgba(168, 85, 247, 0.7)) border-box;
    box-shadow: 0 0 14px rgba(79, 142, 247, 0.06);
}

.service-card--pink {
    background:
        linear-gradient(#000000, #000000) padding-box,
        linear-gradient(145deg, rgba(244, 114, 182, 0.75), rgba(192, 38, 211, 0.75)) border-box;
    box-shadow: 0 0 14px rgba(236, 72, 153, 0.08);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card--gradient:hover {
    box-shadow: 0 0 24px rgba(79, 142, 247, 0.14);
}

.service-card--pink:hover {
    box-shadow: 0 0 24px rgba(236, 72, 153, 0.16);
}

.service-image {
    width: 100%;
    max-width: 160px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: var(--white);
    margin: 0 0 14px;
}

.service-card > p {
    font-weight: 300;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    flex: 1;
    margin: 0 0 22px;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-arrow svg {
    width: 26px;
    height: auto;
}

.service-card--gradient .service-arrow {
    color: #6b8ff7;
    filter: drop-shadow(0 0 4px rgba(107, 143, 247, 0.45));
}

.service-card--pink .service-arrow {
    color: #f472b6;
    filter: drop-shadow(0 0 4px rgba(244, 114, 182, 0.5));
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

.service-modal-image.is-hidden {
    display: none;
}

.service-modal .event-modal-body h3 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-modal .event-modal-desc {
    white-space: pre-wrap;
}

.service-modal-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.service-modal .event-modal-cta {
    margin-top: 0;
}

/* FOCUS */
.focus {
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 98%, #000000 62%),
        image-set(
            url('../img/bg-management.webp') type('image/webp'),
            url('../img/bg-management.png') type('image/png')
        );
    background-repeat: no-repeat, no-repeat;
    background-position: left center, left center;
    background-size: 100% 100%, auto 100%;
}

.focus-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.focus-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: clamp(420px, 42vw, 560px);
}

.focus-content {
    width: clamp(300px, 47%, 700px);

    max-width: 100%;
    padding-left: clamp(20px, 2.5vw, 36px);
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.focus-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.focus-content > p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.focus-list i {
    color: var(--pink);
    font-size: 0.85rem;
}

.icon-purple { color: var(--purple); }
.icon-blue { color: var(--blue); }
.icon-pink { color: var(--pink); }

/* ARTISTS */
.artists {
    background: var(--bg-dark);
    padding-bottom: calc(var(--section-spacing) / 2);
    isolation: isolate;
}

.artists::before,
.artists::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.artists::before {
    bottom: -6%;
    left: -14%;
    width: min(88vw, 980px);
    height: min(112%, 780px);
    background: radial-gradient(
        ellipse 80% 85% at 50% 52%,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0.075) 28%,
        rgba(37, 99, 235, 0.035) 48%,
        rgba(37, 99, 235, 0.015) 62%,
        transparent 82%
    );
    filter: blur(88px);
}

.artists::after {
    bottom: 8%;
    left: -2%;
    width: min(68vw, 640px);
    height: min(88%, 560px);
    background: radial-gradient(
        circle at 54% 56%,
        rgba(96, 165, 250, 0.095) 0%,
        rgba(59, 130, 246, 0.055) 34%,
        rgba(56, 189, 248, 0.02) 55%,
        transparent 78%
    );
    filter: blur(72px);
}

.artists > .container {
    position: relative;
    z-index: 1;
}

.swiper-arrow:hover {
    color: #f0abfc;
    filter:
        drop-shadow(0 0 6px rgba(236, 72, 153, 1))
        drop-shadow(0 0 16px rgba(168, 85, 247, 0.9))
        drop-shadow(0 0 28px rgba(236, 72, 153, 0.6));
}

.swiper-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.swiper-arrow.swiper-button-disabled {
    display: none !important;
    pointer-events: none;
}

.artists-swiper {
    overflow: hidden;
    padding: 10px 0;
}

.artists-swiper .swiper-slide {
    height: auto;
    padding: 4px 0;
}

.artist-card {
    background: #08080e;
    /* border: 1px solid rgba(201, 168, 108, 0.35); */
	border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artist-image {
    aspect-ratio: 5/6;
    overflow: hidden;
    flex-shrink: 0;
}

.artist-image img {
    height: 100%;
    object-fit: cover;
}

.artist-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.artist-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
}

.artist-info h3 {
    font-size: 1.2rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.artist-genre {
    font-weight: 100;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--text-muted);
}

.artist-social {
    color: var(--pink);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    margin-right: 2px;
}

.artist-social:hover {
    opacity: 0.7;
}

/* SWIPER */
.swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.artists-pagination,
.events-pagination {
    position: static !important;
    width: 100% !important;
    margin-top: 28px;
    text-align: center;
}

.artists-pagination.swiper-pagination-lock,
.events-pagination.swiper-pagination-lock {
    display: none;
    margin-top: 0;
}

.artists-pagination .swiper-pagination-bullet,
.events-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #333;
    opacity: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}

.artists-pagination .swiper-pagination-bullet-active,
.events-pagination .swiper-pagination-bullet-active {
    background: var(--pink);
    transform: scale(1.15);
}

/* EVENTS */
.events {
    background: var(--bg-dark);
    isolation: isolate;
}

.events::before,
.events::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.events::before {
    top: -6%;
    right: -14%;
    width: min(88vw, 980px);
    height: min(112%, 780px);
    background: radial-gradient(
        ellipse 80% 85% at 50% 48%,
        rgba(168, 85, 247, 0.12) 0%,
        rgba(168, 85, 247, 0.075) 28%,
        rgba(124, 58, 237, 0.035) 48%,
        rgba(124, 58, 237, 0.015) 62%,
        transparent 82%
    );
    filter: blur(88px);
}

.events::after {
    top: 50%;
    right: -2%;
    width: min(68vw, 640px);
    height: min(88%, 560px);
    transform: translateY(-50%);
    background: radial-gradient(
        circle at 46% 44%,
        rgba(192, 132, 252, 0.095) 0%,
        rgba(168, 85, 247, 0.055) 34%,
        rgba(236, 72, 153, 0.02) 55%,
        transparent 78%
    );
    filter: blur(72px);
}

.events > .container {
    position: relative;
    z-index: 1;
}

.swiper-outer.events-wrap {
    overflow: visible;
}

.events-wrap .swiper-outer__track {
    overflow: hidden;
}

.events-wrap .swiper-outer .swiper,
.events-swiper {
    overflow: hidden;
}

.events-swiper .swiper-slide {
    overflow: visible;
    height: auto;
}

.event-card-shell {
    padding: 10px 0 14px;
    overflow: visible;
}

@media (min-width: 1024px) {
    .event-card {
        aspect-ratio: 3 / 2.95;
    }
}

.event-card {
    position: relative;
    aspect-ratio: 4 / 4.55;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    background-color: #050508;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.event-card-media,
.event-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.event-card-img {
    object-fit: cover;
}

.event-crop-bg {
    background-repeat: no-repeat;
    background-color: #050508;
}

.event-card-media {
    z-index: 0;
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.9) 100%);
}

.event-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-btn);
    padding: 8px 12px;
    text-align: center;
    min-width: 48px;
}

.event-card-date .day {
    display: block;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1;
}

.event-card-date .month {
    display: block;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 2px;
}

.event-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
}

.event-card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card-info p {
    font-weight: 100;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.event-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--pink);
    border: 1px solid rgba(236, 72, 153, 0.55);
    border-radius: var(--radius-btn);
    background: rgba(0, 0, 0, 0.45);
    margin-bottom: 2px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.25);
    line-height: 1;
}

.event-card-arrow i {
    display: block;
    font-size: 1.05rem;
    line-height: 1;
}

.event-card:hover .event-card-arrow {
    transform: translateX(4px);
    border-color: var(--pink);
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.45);
}

.event-card--past {
    filter: grayscale(1);
    opacity: 0.62;
}

.event-card--past:hover {
    transform: none;
    box-shadow: none;
}

.event-card--past .event-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 42%, rgba(0, 0, 0, 0.95) 100%);
}

.event-card--past .event-card-arrow {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.event-card--past:hover .event-card-arrow {
    transform: none;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.event-card-past-label {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-btn);
}

/* EVENT MODAL */
.event-modal {
    position: fixed;
    top: var(--vv-offset-top, 0px);
    left: 0;
    right: 0;
    height: var(--vv-height, 100dvh);
    bottom: auto;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}

.event-modal.active {
    visibility: visible;
    pointer-events: auto;
}

.event-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    transform: translateZ(0);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-modal.active .event-modal-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.event-modal-content {
    position: relative;
    background: #0d0d14;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    max-width: 600px;
    width: 100%;
    max-height: calc(var(--vv-height, 100dvh) - 48px);
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 85, 247, 0.5) rgba(255, 255, 255, 0.08);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.event-modal-content::-webkit-scrollbar {
    width: 8px;
}

.event-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.event-modal-content::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.5);
    border-radius: 999px;
}

.event-modal.active .event-modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .event-modal-overlay,
    .event-modal-content {
        transition-duration: 0.01ms;
        transition-delay: 0s;
    }
}

.event-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.event-modal-image {
    position: relative;
    background: #050508;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.event-modal-crop {
    width: 100%;
    height: 100%;
}

.event-modal-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.event-modal-gallery-btn:hover {
    background: rgba(236, 72, 153, 0.35);
    border-color: rgba(236, 72, 153, 0.6);
}

.event-modal-gallery-prev {
    left: 12px;
}

.event-modal-gallery-next {
    right: 12px;
}

.event-modal-gallery-counter {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.event-modal-gallery-btn.is-hidden,
.event-modal-gallery-counter.is-hidden,
.event-modal-details p.is-hidden,
.event-modal-desc.is-hidden,
.event-modal-extras.is-hidden {
    display: none;
}

.event-modal-body {
    padding: 32px;
}

.event-modal-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.event-modal-date {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--pink);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.event-modal-past-label {
    display: none;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-btn);
}

.event-modal-past-label.is-visible {
    display: inline-block;
}

.event-modal-content--past .event-modal-crop {
    filter: grayscale(1);
    opacity: 0.85;
}

.event-modal-content--past .event-modal-date {
    color: var(--text-muted);
}

.event-modal-body h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-modal-location {
    font-weight: 100;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.event-modal-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.event-modal-desc a,
.event-modal-details a {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-modal-details {
    margin-bottom: 36px;
}

.event-modal-details.is-hidden {
    display: none;
}

.event-modal-details p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.event-modal-details p:last-child {
    margin-bottom: 0;
}

.event-modal-details span {
    flex: 1;
}

.event-modal-details i {
    color: var(--purple);
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-modal-cta {
    margin-top: 4px;
}

.event-modal-cta.is-hidden {
    display: none;
}

/* SECTION DIVIDER */
.section-divider {
    background: #000;
}

.section-divider .container {
    padding-top: calc(var(--section-spacing) / 2);
    padding-bottom: calc(var(--section-spacing) / 2);
}

.section-divider-line {
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(236, 72, 153, 0.15) 8%,
        var(--pink) 22%,
        var(--purple) 50%,
        var(--blue) 78%,
        rgba(59, 130, 246, 0.15) 92%,
        transparent 100%
    );
}

/* CONTACT */
.contact {
    background: #000;
    padding-top: calc(var(--section-spacing) / 2);
    isolation: isolate;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.contact::before {
    top: 10%;
    right: -12%;
    width: min(82vw, 920px);
    height: min(96%, 720px);
    background: radial-gradient(
        ellipse 78% 82% at 54% 46%,
        rgba(168, 85, 247, 0.12) 0%,
        rgba(139, 92, 246, 0.075) 24%,
        rgba(59, 130, 246, 0.06) 46%,
        rgba(37, 99, 235, 0.025) 62%,
        transparent 82%
    );
    filter: blur(88px);
}

.contact::after {
    top: 36%;
    right: 0;
    width: min(62vw, 580px);
    height: min(76%, 520px);
    transform: translateY(-12%);
    background: radial-gradient(
        circle at 50% 46%,
        rgba(96, 165, 250, 0.095) 0%,
        rgba(168, 85, 247, 0.06) 30%,
        rgba(59, 130, 246, 0.045) 52%,
        transparent 78%
    );
    filter: blur(72px);
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-headline {
    margin-bottom: 40px;
}

.contact-headline-label {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    line-height: 1.15;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: 100%;
    padding: 36px;
    border-radius: 10px;
    box-sizing: border-box;
    background:
        linear-gradient(#08080c, #08080c) padding-box,
        linear-gradient(145deg, rgba(236, 72, 153, 0.55), rgba(79, 142, 247, 0.55)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.08);
    overflow: hidden;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.form-group {
    display: block;
    min-width: 0;
    width: 100%;
}

.form-group--full,
.form-submit {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 16px 18px;
    box-sizing: border-box;
    background-color: rgba(8, 8, 14, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: var(--radius-btn);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 100;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(168, 85, 247, 0.38);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(168, 85, 247, 0.65);
    background-color: rgba(12, 10, 20, 0.98);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.14);
    outline: none;
}

.form-group select:focus {
    border-color: rgba(168, 85, 247, 0.65);
    background-color: rgba(12, 10, 20, 0.98);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c084fc' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.14);
    outline: none;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background-color: rgba(8, 8, 14, 0.95);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c084fc' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
    color: var(--text-muted);
    cursor: pointer;
}

.contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    width: var(--contact-item-w, 100%);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    box-sizing: border-box;
}

.contact-list li:nth-child(odd) {
    justify-self: start;
}

.contact-list li:nth-child(even) {
    justify-self: end;
}

.contact-list li > div {
    flex: 1;
    min-width: 0;
}

.contact-claim {
    margin-top: auto;
    padding-top: 32px;
    width: 100%;
    text-align: center;
    font-size: clamp(1.3rem, 2vw, 1.15rem);
    font-weight: 100;
    line-height: 1.45;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.contact-list > li > i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 1.5rem;
}

.contact-label {
    display: block;
    font-weight: 100;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-list li > div > a,
.contact-list li > div > span:not(.contact-label) {
    white-space: nowrap;
}

.contact-list li:last-child > div > span:not(.contact-label) {
    white-space: normal;
}

.contact-list a {
    color: var(--white);
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--pink);
}

.form-group select:valid,
.form-group select option:not([value=""]) {
    color: var(--white);
}

.form-group select option {
    background: #0d0d14;
    color: var(--white);
}

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

.form-submit {
    display: block;
    width: 100%;
    margin-top: 4px;
}

.form-submit .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form-success {
    width: 100%;
    margin: auto 0;
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--white);
}

.form-success h3 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    line-height: 1.35;
    text-wrap: balance;
}

/* FOOTER */
.site-footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 48px;
}

.footer-brand span {
    font-weight: 100;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand strong {
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
    color: var(--white);
    border-color: var(--purple);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom p {
    font-weight: 100;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* LEGAL PAGES */
.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin: 28px 0 12px;
}

.legal-page h3 {
    font-size: 1.05rem;
    margin: 20px 0 10px;
    color: var(--white);
}

.legal-page p,
.legal-page li {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page ol {
    list-style: decimal;
}

.legal-page a {
    color: var(--pink);
    word-break: break-word;
}

.legal-page a:hover {
    color: var(--white);
}

.legal-source {
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-page code {
    font-size: 0.9em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    transition: color 0.3s ease;
}

.legal-back:hover {
    color: var(--white);
}
