@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Layout */
    --layout-max: 80rem;
    --layout-pad-x: clamp(1.25rem, 2.5vw, 2rem);
    --layout-gutter: clamp(0.65rem, 1.75vw, 1.25rem);
    --layout-header: 5.5rem;

    /* Spacing */
    --space-section-y: clamp(1.25rem, 2.5vw, 2rem);
    --space-section-head: 2.5rem;
    --space-hero-y: clamp(0.35rem, 0.75vw, 0.65rem);
    --space-flow: 1em;

    /* Radius */
    --radius-box: 28px;

    /* Colors */
    --color-bg: #F7F4EE;
    --color-ink: #0a0a0a;
    --color-gold: #f9b725;
    --color-gold-strong: #ecc032;
    --color-gold-panel: #F5C542;
    --color-text: #141414;
    --color-on-dark-muted: rgba(255, 255, 255, 0.62);

    /* Typography */
    --font-sans: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
    --font-display: 'Bebas Neue', cursive;

    --text-base: clamp(0.9375rem, 0.12vw + 0.9rem, 1rem);
    --text-sm: clamp(0.75rem, 0.08vw + 0.72rem, 0.8125rem);
    --text-meta: clamp(0.8125rem, 0.1vw + 0.78rem, 0.875rem);
    --text-overline: clamp(0.75rem, 0.08vw + 0.7rem, 0.8125rem);

    --text-h1: clamp(2.5rem, 4vw + 1.5rem, 3.75rem);
    --text-h2: clamp(2rem, 2.5vw + 1.25rem, 2.75rem);
    --text-h3: clamp(1.5rem, 1.5vw + 1rem, 2rem);
    --text-h4: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);
    --text-h5: clamp(1.0625rem, 0.4vw + 0.95rem, 1.25rem);
    --text-h6: clamp(0.9375rem, 0.2vw + 0.88rem, 1.0625rem);

    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --leading-body: 1.65;
    --leading-snug: 1.5;
    --leading-tight: 1.08;
    --tracking-body: 0.01em;
    --tracking-wide: 0.02em;
    --tracking-tight: -0.02em;

    /* Component */
    --footer-title: clamp(2.25rem, 5vw, 3.25rem);

    /* Motion / scroll */
    --scroll-padding: var(--space-section-y);

    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-body);
    letter-spacing: var(--tracking-body);
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100%;
}

.bebas {
    font-family: var(--font-display);
}

#main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    margin: 0;
}

#main-header .site-container {
    max-width: var(--layout-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--layout-pad-x);
    padding-right: var(--layout-pad-x);
    box-sizing: border-box;
}

#home .hero-header {
    border-radius: var(--radius-box) var(--radius-box) 0 0;
}

#home .hero-header.header-scrolled {
    border-radius: 0;
}

#home.video-container {
    margin: var(--space-hero-y) var(--layout-gutter) var(--space-hero-y);
    border-radius: var(--radius-box);
    overflow: hidden;
    height: calc(100svh - var(--space-hero-y) - var(--space-hero-y));
    min-height: 32rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    box-sizing: border-box;
}

#home .hero-body {
    padding-top: var(--layout-header);
    color: #fff;
}

#home video,
#home .video-overlay {
    border-radius: inherit;
}

#home .hero-content {
    max-width: var(--layout-max);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--layout-pad-x);
    padding-right: var(--layout-pad-x);
    box-sizing: border-box;
    color: #fff;
}

.header-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(249, 183, 37, 0.08), rgba(255, 140, 0, 0.06));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 183, 37, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
    background: rgba(247, 244, 238, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-scrolled .nav-item span {
    color: #141414;
}

.header-scrolled .nav-item:hover span {
    color: #c99200;
}

.header-scrolled .search-input {
    background: #EFEBE3;
    border-color: rgba(0, 0, 0, 0.12);
    color: #141414;
}

.logo-glow {
    filter: drop-shadow(0 0 10px rgba(249, 183, 37, 0.5));
    transition: all 0.3s ease;
}

.logo-glow:hover {
    filter: drop-shadow(0 0 20px rgba(249, 183, 37, 0.8));
    transform: scale(1.05);
}

.equalizer-bar {
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, #f9b725, #ff8c00);
    margin: 0 2px;
    border-radius: 3px;
    animation: equalize 0.8s ease-in-out infinite;
}

.equalizer-bar:nth-child(1) { animation-delay: 0s; }
.equalizer-bar:nth-child(2) { animation-delay: 0.1s; }
.equalizer-bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer-bar:nth-child(4) { animation-delay: 0.3s; }
.equalizer-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes equalize {
    0%, 100% { height: 15px; }
    50% { height: 35px; }
}

.nav-item {
    position: relative;
    padding: 8px 16px;
    overflow: hidden;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9b725;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item span {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    color: #fff;
}

.nav-item:hover span {
    color: #f9b725;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 183, 37, 0.3);
    border-radius: 10px;
    min-width: 250px;
    padding: 10px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(249, 183, 37, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    border-left-color: #f9b725;
    color: #f9b725;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 14px;
    display: block;
    color: inherit;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 183, 37, 0.2), transparent);
    margin: 8px 0;
}

.nav-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(249, 183, 37, 0.5), transparent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn--primary {
    background: #f9b725;
    color: #0a0a0a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
    background: #ffca3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f9b725;
    color: #f9b725;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.82rem;
}

.desktop-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.search-input {
    width: 200px;
    padding: 10px 40px 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 183, 37, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    border-color: #f9b725;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(249, 183, 37, 0.3);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: #f9b725;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #ffca3a;
    transform: scale(1.1);
}

.desktop-menu-btn:hover {
    transform: scale(1.1);
}

.desktop-menu-btn span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #f9b725, #ff8c00);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(249, 183, 37, 0.5);
}

.desktop-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.desktop-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.desktop-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
    .desktop-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-menu-btn {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

.video-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        rgba(20, 18, 16, 0.55) 100%
    );
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 183, 37, 0.6);
    box-shadow: 0 0 30px rgba(249, 183, 37, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.3);
    filter: blur(1px);
}

.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-logo {
    position: absolute;
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(249, 183, 37, 0.8));
}

.preloader-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 183, 37, 0.3) 0%, transparent 70%);
    animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.preloader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.preloader-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f9b725;
    border-radius: 50%;
    opacity: 0;
}

.loading-text {
    position: absolute;
    bottom: 100px;
    font-family: var(--font-display);
    font-size: 24px;
    color: #f9b725;
    letter-spacing: 4px;
    opacity: 0;
}

.loading-bar {
    position: absolute;
    bottom: 60px;
    width: 200px;
    height: 3px;
    background: rgba(249, 183, 37, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f9b725, #ff8c00);
    border-radius: 10px;
    box-shadow: 0 0 10px #f9b725;
}

.page-section {
    position: relative;
    padding: 0;
    margin: 0;
    scroll-margin-top: var(--space-section-y);
    background: transparent;
}

.page-section::before,
.page-section::after {
    display: none;
}

.section-block {
    margin: var(--space-section-y) var(--layout-gutter);
    padding: clamp(3rem, 6vw, 5rem) var(--layout-pad-x);
    border-radius: var(--radius-box);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.section-block--dark {
    background: var(--color-ink);
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.section-block--gold {
    background: var(--color-gold-strong);
    color: var(--color-ink);
    box-shadow: 0 24px 64px rgba(236, 192, 50, 0.28);
}

.section-block__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--layout-max);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.site-container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--layout-pad-x);
    padding-right: var(--layout-pad-x);
    box-sizing: border-box;
}

.section-glow {
    display: none;
}

.section-head {
    margin-bottom: var(--space-section-head);
}

.title-creative {
    font-family: var(--font-display);
    line-height: 0.92;
    letter-spacing: 0.02em;
}

.title-creative--center {
    text-align: center;
}

.title-creative__tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.title-creative__line {
    display: block;
    font-size: clamp(2.75rem, 7vw, 5rem);
}

.title-creative__line--xl {
    font-size: clamp(3.25rem, 9vw, 6.5rem);
}

.title-creative__accent {
    display: inline-block;
}

.section-block--dark .title-creative__accent {
    color: var(--color-gold);
}

.section-block--gold .title-creative__accent {
    background: var(--color-ink);
    color: var(--color-gold-strong);
    padding: 0.02em 0.3em 0.08em;
    transform: rotate(-2deg);
}

.title-creative--outline .title-creative__ghost {
    display: block;
    font-size: clamp(3.5rem, 11vw, 8rem);
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
    letter-spacing: 0.06em;
    margin-bottom: -0.3em;
    pointer-events: none;
}

.section-block--gold .title-creative--outline .title-creative__ghost {
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.14);
}

.title-creative--split .title-creative__main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

#kurumsal.section-block {
    background: #18181B;
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

#kurumsal .section-block__inner {
    background: transparent;
    border-radius: 0;
}

#kurumsal .title-creative__accent {
    color: var(--color-gold);
}

#sponsorlar.section-block {
    background: #18181B;
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

#sponsorlar .section-block__inner {
    background: transparent;
    border-radius: 0;
}

#sanatcilar .title-creative__accent,
#sponsorlar .title-creative__accent {
    background: var(--color-gold);
    color: #18181B;
    padding: 0.02em 0.35em 0.1em;
    transform: rotate(-2deg);
    box-shadow: 0 6px 24px rgba(249, 183, 37, 0.25);
}

#sponsorlar .title-creative {
    line-height: 0.9;
}

#sponsorlar .title-creative__line + .title-creative__line {
    margin-top: -0.06em;
}

#sponsorlar .lead-text {
    color: rgba(255, 255, 255, 0.5);
}

.sponsor-marquee-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3.5vw, 2.5rem);
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    height: clamp(380px, 52vh, 560px);
}

.sponsor-col {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
    border: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.sponsor-col::before,
.sponsor-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1.15rem;
    z-index: 2;
    pointer-events: none;
}

.sponsor-col::before {
    top: 0;
    background: linear-gradient(180deg, #18181B 30%, transparent 100%);
}

.sponsor-col::after {
    bottom: 0;
    background: linear-gradient(0deg, #18181B 30%, transparent 100%);
}

.sponsor-track {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 0.65rem 0.85rem;
    width: 100%;
    will-change: transform;
}

.sponsor-track--up {
    animation: sponsorScrollUp 24s linear infinite;
}

.sponsor-track--down {
    animation: sponsorScrollDown 26s linear infinite;
}

.sponsor-logo {
    flex-shrink: 0;
    width: 100%;
    min-height: clamp(5.75rem, 11vw, 7.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 1.35rem;
    background: #ffffff;
    border: 2px solid rgba(249, 183, 37, 0.55);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(249, 183, 37, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sponsor-logo:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(249, 183, 37, 0.35), 0 0 20px rgba(249, 183, 37, 0.2);
    transform: translateY(-2px);
}

.sponsor-logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: clamp(2.75rem, 5.5vw, 3.75rem);
    max-width: min(13rem, 88%);
    object-fit: contain;
    object-position: center;
    filter: none;
    opacity: 1;
    transition: transform 0.35s ease;
}

.sponsor-logo:hover img {
    transform: scale(1.05);
}

@keyframes sponsorScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes sponsorScrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

@media (max-width: 640px) {
    .sponsor-marquee-wrap {
        grid-template-columns: 1fr;
        height: clamp(340px, 48vh, 420px);
    }

    .sponsor-col--right {
        display: none;
    }
}

.site-footer {
    margin: var(--space-section-y) var(--layout-gutter) var(--space-hero-y);
    padding: 0;
    box-sizing: border-box;
}

.site-footer__box {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    background: #18181B;
    color: #fff;
    border-radius: var(--radius-box);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(249, 183, 37, 0.12);
}

.site-footer__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), #ff8c00, var(--color-gold), transparent);
    opacity: 0.85;
}

.site-footer__glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    background: radial-gradient(circle, rgba(249, 183, 37, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: var(--layout-max);
    width: 100%;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem) var(--layout-pad-x) clamp(1.35rem, 2.5vw, 1.75rem);
}

.site-footer__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
    border-bottom: 1px solid rgba(249, 183, 37, 0.15);
}

.site-footer__cta-title {
    font-family: var(--font-display);
    font-size: var(--footer-title);
    letter-spacing: 0.04em;
    line-height: 1;
    max-width: 24rem;
}

.site-footer__cta-title em {
    font-style: normal;
    color: var(--color-gold);
}

.site-footer__cta-text {
    font-size: var(--text-base);
    color: var(--color-on-dark-muted);
    margin-top: 0.6rem;
    max-width: 32rem;
    line-height: var(--leading-body);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
    }
}

.site-footer__brand img {
    height: clamp(3.25rem, 6.5vw, 4.25rem);
    width: auto;
    max-width: min(220px, 80%);
    margin-bottom: 1.15rem;
    display: block;
}

#main-header .logo-container img {
    height: clamp(3rem, 4.5vw, 3.5rem);
    width: auto;
}

.site-footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 0.65rem;
}

.site-footer__brand-desc {
    font-size: var(--text-base);
    line-height: var(--leading-body);
    color: var(--color-on-dark-muted);
    max-width: 22rem;
    margin-bottom: 1.35rem;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(249, 183, 37, 0.28);
    color: rgba(255, 255, 255, 0.75);
    background: rgba(249, 183, 37, 0.06);
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.site-footer__social a:hover {
    color: var(--color-ink);
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.site-footer__social svg {
    width: 1.15rem;
    height: 1.15rem;
}

.site-footer__heading {
    font-size: var(--text-overline);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.1rem;
}

.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.site-footer__links a {
    font-size: var(--text-base);
    color: var(--color-on-dark-muted);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-footer__links a:hover {
    color: #fff;
    padding-left: 0.25rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--text-base);
    color: var(--color-on-dark-muted);
    line-height: var(--leading-body);
    margin-bottom: 0.85rem;
}

.site-footer__contact-item svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.15rem;
    color: var(--color-gold);
}

.site-footer__contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__contact-item a:hover {
    color: #fff;
}

.site-footer__newsletter {
    margin-top: 0.25rem;
}

.site-footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.site-footer__newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 183, 37, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: var(--text-base);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.site-footer__newsletter-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(249, 183, 37, 0.15);
}

.site-footer__newsletter-btn {
    flex-shrink: 0;
    padding: 0.8rem 1.25rem;
    border: none;
    border-radius: 999px;
    background: var(--color-gold);
    color: var(--color-ink);
    font-size: var(--text-meta);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.site-footer__newsletter-btn:hover {
    background: #ffca3a;
    transform: translateY(-1px);
}

.site-footer__bar {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-top: 1.25rem;
    padding-bottom: 0.15rem;
    border-top: 1px solid rgba(249, 183, 37, 0.28);
}

.site-footer__copy {
    font-size: var(--text-meta);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.site-footer__legal a {
    font-size: var(--text-meta);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-footer__legal a:hover {
    color: var(--color-gold);
}

#hizmetler.section-block,
#organizasyonlar.section-block {
    background: var(--color-gold-panel);
    box-shadow: none;
    color: var(--color-ink);
}

#hizmetler .section-block__inner,
#organizasyonlar .section-block__inner {
    background: transparent;
    border-radius: 0;
}

.section-block--gold .corp-pill,
#hizmetler .corp-pill,
#organizasyonlar .corp-pill {
    background: var(--color-ink);
    color: var(--color-gold-strong);
    border-color: transparent;
}

#hizmetler .corp-pill,
#organizasyonlar .corp-pill {
    color: var(--color-gold-panel);
}

.section-block--gold .corp-pill .bg-\[\#f9b725\],
#hizmetler .corp-pill .bg-\[\#f9b725\],
#organizasyonlar .corp-pill .bg-\[\#f9b725\] {
    background-color: var(--color-gold-panel) !important;
}

#hizmetler .title-creative__accent,
#organizasyonlar .title-creative__accent {
    background: var(--color-ink);
    color: var(--color-gold-panel);
    padding: 0.02em 0.3em 0.08em;
    transform: rotate(-2deg);
}

#organizasyonlar .lead-text {
    color: rgba(0, 0, 0, 0.58);
}

#sanatcilar.section-block {
    background: #18181B;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
    color: #fff;
}

#sanatcilar .section-block__inner {
    background: transparent;
    border-radius: 0;
}

#sanatcilar .artist-scroll {
    width: 100%;
    max-width: 100%;
    gap: 1.25rem;
}

#sanatcilar .lead-text {
    color: rgba(255, 255, 255, 0.55);
}

#hizmetler .svc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    #hizmetler .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #hizmetler .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#hizmetler .svc-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    min-height: 168px;
    background: #0c0c0e;
    border: 2px solid #0a0a0a;
    border-radius: 6px 22px 22px 6px;
    overflow: hidden;
    box-shadow: 5px 5px 0 #0a0a0a;
    cursor: default;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease;
}

#hizmetler .svc-card:nth-child(odd) {
    transform: rotate(-1.25deg);
}

#hizmetler .svc-card:nth-child(even) {
    transform: rotate(1.25deg);
}

#hizmetler .svc-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 8px 8px 0 #0a0a0a, 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: #0a0a0a;
    background: #0c0c0e;
}

#hizmetler .svc-card::before {
    display: none;
}

#hizmetler .svc-card__stripe {
    flex-shrink: 0;
    width: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #F5C542 0%, #e5b23a 100%);
    position: relative;
}

#hizmetler .svc-card__stripe::after {
    content: '';
    position: absolute;
    right: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
}

#hizmetler .svc-card-num {
    position: static;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
    color: #0a0a0a;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.05em;
}

#hizmetler .svc-card__body {
    flex: 1;
    padding: 1.35rem 1.15rem 1.35rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hizmetler .svc-card__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2.5rem 2.5rem 0;
    border-color: transparent #F5C542 transparent transparent;
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

#hizmetler .svc-card:hover .svc-card__corner {
    opacity: 1;
}

#hizmetler .svc-card__tag {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #F5C542;
    margin-bottom: 0.35rem;
}

#hizmetler .svc-card__icon-wrap {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #F5C542;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#hizmetler .svc-card:hover .svc-card__icon-wrap {
    transform: rotate(-4deg) scale(1.08);
}

#hizmetler .svc-icon {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    color: inherit;
    box-shadow: none;
}

#hizmetler .svc-card__title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0 2.5rem 0.4rem 0;
    font-weight: 400;
}

#hizmetler .svc-card__desc {
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.org-section {
    position: relative;
    background: transparent;
    overflow: visible;
}

.org-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

#organizasyonlar.section-block {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.org-showcase-foot {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

#organizasyonlar .btn--org {
    background: var(--color-ink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

#organizasyonlar .btn--org:hover {
    background: #1a1a1a;
    color: var(--color-gold-panel);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

@media (min-width: 900px) {
    .org-showcase {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(2, minmax(200px, 1fr));
        gap: 1rem;
        width: 100%;
    }

    .org-showcase > .org-visual {
        min-height: 0;
        height: 100%;
    }

    .org-showcase > .org-visual--feature {
        grid-column: 1 / 9;
        grid-row: 1 / 3;
    }

    .org-showcase > .org-visual:nth-child(2) {
        grid-column: 9 / 13;
        grid-row: 1 / 2;
    }

    .org-showcase > .org-visual:nth-child(3) {
        grid-column: 9 / 13;
        grid-row: 2 / 3;
    }

    .org-showcase > .org-visual--wide {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }

    .org-showcase > .org-visual:nth-child(5) {
        grid-column: 7 / 13;
        grid-row: 3 / 4;
    }

    .org-showcase > .org-visual--stat {
        grid-column: 1 / 13;
        grid-row: 4 / 5;
        height: auto;
        min-height: 100px;
    }
}

.org-visual {
    position: relative;
    display: block;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s ease;
}

.org-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.org-visual__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.org-visual:hover .org-visual__img {
    transform: scale(1.06);
}

.org-visual__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
}

.org-visual__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.25rem 1.35rem 1.4rem;
}

.org-visual__tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-ink);
    background: var(--color-gold-panel);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.org-visual__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.org-visual--feature .org-visual__title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
}

.org-visual__meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
}

.org-visual--stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--color-ink);
    min-height: 100px;
}

.org-visual--stat .org-visual__img,
.org-visual--stat .org-visual__shade {
    display: none;
}

.org-visual--stat .org-visual__content {
    position: static;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.org-visual__stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-gold-panel);
    line-height: 1;
}

.org-visual__stat-text {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.org-visual__chips {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.65rem);
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}

.org-visual__chips em {
    font-style: normal;
    color: var(--color-gold-panel);
}

.section-block--gold .btn--primary {
    background: var(--color-ink);
    color: var(--color-gold-strong);
}

.section-block--gold .lead-text {
    color: rgba(0, 0, 0, 0.6);
}

.section-block--dark .lead-text {
    color: rgba(255, 255, 255, 0.55);
}

.corp-stat {
    background: rgba(249, 183, 37, 0.06);
    border: 1px solid rgba(249, 183, 37, 0.15);
    border-left: 3px solid #f9b725;
    border-radius: 0 12px 12px 0;
    padding: 1rem 1rem 1rem 1.25rem;
}

.section-foot {
    margin-top: var(--space-section-head);
}

.corp-section {
    position: relative;
    background: transparent;
    overflow: visible;
}

.corp-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(249, 183, 37, 0.35);
    box-shadow: 0 0 80px rgba(249, 183, 37, 0.2), 0 24px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, rgba(249, 183, 37, 0.08), rgba(0, 0, 0, 0.3));
}

.corp-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.corp-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 183, 37, 0.4);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
}

.corp-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #f9b725, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 183, 37, 0.35);
    background: rgba(249, 183, 37, 0.08);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #f9b725;
}

.corp-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(249, 183, 37, 0.15);
    border-bottom: 1px solid rgba(249, 183, 37, 0.15);
    padding: 1rem 0;
    margin-top: var(--space-section-head);
}

.corp-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: corpScroll 28s linear infinite;
}

.corp-marquee-track span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.corp-marquee-track span em {
    font-style: normal;
    color: #f9b725;
}

@keyframes corpScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.svc-section {
    position: relative;
    background: transparent;
    overflow: visible;
}

.svc-card {
    position: relative;
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(249, 183, 37, 0.15);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f9b725, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.svc-card:hover {
    border-color: rgba(249, 183, 37, 0.45);
    background: rgba(249, 183, 37, 0.06);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(249, 183, 37, 0.12);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: rgba(249, 183, 37, 0.12);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    transition: color 0.4s ease;
}

.svc-card:hover .svc-card-num {
    color: rgba(249, 183, 37, 0.25);
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(249, 183, 37, 0.3);
    background: rgba(249, 183, 37, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9b725;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, rgba(249, 183, 37, 0.2), rgba(255, 140, 0, 0.15));
    box-shadow: 0 0 24px rgba(249, 183, 37, 0.3);
    transform: scale(1.08);
}

.svc-card-wide {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .svc-card-wide {
        grid-column: span 2;
    }
}

.artists-section {
    position: relative;
    background: transparent;
    overflow: visible;
}

.contact-section {
    position: relative;
    background: transparent;
    overflow: visible;
}

.artist-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0c0c0e;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}

.artist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.artist-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.artist-photo__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.65s ease;
}

.artist-card:hover .artist-photo__img {
    transform: scale(1.07);
}

.artist-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

.artist-genre {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(249, 183, 37, 0.4);
    color: #f9b725;
}

.artist-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9b725, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transition: all 0.35s ease;
}

.artist-card:hover .artist-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.1rem 1.15rem 1.2rem;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.05;
}

.artist-role {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.artist-card--text-only .artist-photo {
    display: none;
}

.artist-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.artist-scroll::-webkit-scrollbar {
    display: none;
}

.artist-scroll .artist-card {
    flex: 0 0 min(272px, 72vw);
    scroll-snap-align: start;
}

@media (min-width: 1024px) {
    .artist-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
        padding-bottom: 0;
    }

    .artist-scroll .artist-card {
        flex: unset;
        min-width: 0;
    }
}

@layer base {
  :where(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-sans);
    font-weight: var(--weight-semibold);
    color: inherit;
    text-wrap: balance;
    margin-top: 0;
  }

  h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    margin: 0 0 0.45em;
  }

  h2 {
    font-size: var(--text-h2);
    line-height: 1.12;
    letter-spacing: -0.015em;
    margin: 0 0 0.5em;
  }

  h3 {
    font-size: var(--text-h3);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 0.55em;
  }

  h4 {
    font-size: var(--text-h4);
    line-height: 1.25;
    letter-spacing: -0.008em;
    margin: 0 0 0.6em;
  }

  h5 {
    font-size: var(--text-h5);
    line-height: 1.3;
    letter-spacing: 0;
    margin: 0 0 0.65em;
  }

  h6 {
    font-size: var(--text-h6);
    line-height: 1.35;
    letter-spacing: var(--tracking-wide);
    margin: 0 0 0.7em;
  }

  p {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-body);
    letter-spacing: var(--tracking-body);
    color: inherit;
    margin: 0 0 var(--space-flow);
  }

  small {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-wide);
    color: inherit;
    opacity: 0.85;
  }
}

.text-white {
    color: #fff !important;
}
