/* =========================================================
   RL SERIES TÜRKİYE
   Ana Sayfa Stil Dosyası
   assets/css/style.css
========================================================= */

/* =========================================================
   1. ROOT / RENK DEĞİŞKENLERİ
========================================================= */

:root {
    --color-black: #050706;
    --color-black-soft: #090c0a;
    --color-surface: #0d110f;
    --color-surface-light: #121713;
    --color-surface-hover: #161d18;

    --color-green: #7cff4f;
    --color-green-dark: #46c924;
    --color-green-soft: rgba(124, 255, 79, 0.12);
    --color-green-border: rgba(124, 255, 79, 0.24);

    --color-white: #f5f7f5;
    --color-text: #e9ede9;
    --color-text-soft: #a9b2ab;
    --color-text-muted: #707972;

    --color-border: rgba(255, 255, 255, 0.09);
    --color-border-light: rgba(255, 255, 255, 0.14);

    --color-danger: #ff5e5e;
    --color-warning: #ffbf47;

    --font-body: "Archivo", sans-serif;
    --font-heading: "Barlow Condensed", sans-serif;

    --container-width: 1360px;
    --header-height: 88px;

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 22px;

    --transition-fast: 180ms ease;
    --transition-medium: 320ms ease;
    --transition-slow: 650ms cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-small: 0 12px 30px rgba(0, 0, 0, 0.24);
    --shadow-large: 0 30px 80px rgba(0, 0, 0, 0.42);
}

/* =========================================================
   2. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 25px);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
    background:
        radial-gradient(circle at 80% 10%,
            rgba(124, 255, 79, 0.035),
            transparent 32%),
        var(--color-black);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.is-loading {
    overflow: hidden;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    user-select: text;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

::selection {
    background: var(--color-green);
    color: var(--color-black);
}

/* =========================================================
   3. GENEL SINIFLAR
========================================================= */

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading__eyebrow::before {
    width: 28px;
    height: 1px;
    background: var(--color-green);
    content: "";
}

.section-heading__title {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.96;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text-soft);
    font-size: 14px;
    font-weight: 600;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.text-link svg {
    transition: transform var(--transition-fast);
}

.text-link:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

.text-link:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   4. ARKA PLAN DOKUSU
========================================================= */

.site-background {
    position: fixed;
    z-index: -5;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-background__grid {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 80%);
}

.site-background__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
}

.site-background__glow--one {
    top: -200px;
    right: -160px;
    background: rgba(124, 255, 79, 0.07);
}

.site-background__glow--two {
    bottom: 5%;
    left: -250px;
    background: rgba(124, 255, 79, 0.035);
}

/* =========================================================
   5. BUTONLAR
========================================================= */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    overflow: hidden;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: var(--radius-small);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.025em;
    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.button::before {
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent);
    content: "";
    transition: left 550ms ease;
}

.button:hover::before {
    left: 150%;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button--primary {
    background: var(--color-green);
    color: #071006;
    box-shadow: 0 10px 28px rgba(124, 255, 79, 0.13);
}

.button--primary:hover {
    background: #8dff67;
    box-shadow: 0 14px 35px rgba(124, 255, 79, 0.2);
}

.button--secondary {
    border-color: var(--color-border-light);
    background: rgba(255, 255, 255, 0.025);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.button--secondary:hover {
    border-color: var(--color-green-border);
    background: var(--color-green-soft);
    color: var(--color-green);
}

.button--small {
    min-height: 42px;
    padding-inline: 18px;
}

.button--large {
    min-height: 56px;
    padding-inline: 28px;
}

.button__play-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
}

/* =========================================================
   6. SAYFA YÜKLEYİCİ
========================================================= */

.page-loader {
    position: fixed;
    z-index: 9999;
    display: grid;
    inset: 0;
    place-items: center;
    background: var(--color-black);
    transition:
        opacity 500ms ease,
        visibility 500ms ease;
}

.page-loader.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.page-loader__content {
    width: min(240px, 70vw);
    text-align: center;
}

.page-loader__logo {
    width: 70px;
    max-height: 70px;
    margin: 0 auto 28px;
    object-fit: contain;
    animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.page-loader__bar {
    position: relative;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.page-loader__bar span {
    position: absolute;
    width: 45%;
    height: 100%;
    background: var(--color-green);
    animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    from {
        opacity: 0.35;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderLine {
    0% {
        left: -45%;
    }

    100% {
        left: 100%;
    }
}

/* =========================================================
   7. HEADER
========================================================= */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        height var(--transition-medium),
        background-color var(--transition-medium),
        border-color var(--transition-medium),
        backdrop-filter var(--transition-medium);
}

.site-header.is-scrolled {
    height: 74px;
    border-color: var(--color-border);
    background: rgba(5, 7, 6, 0.88);
    backdrop-filter: blur(18px);
}

.site-header__container {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.site-logo {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
}

.site-logo__image {
    width: 350px;
    max-height: 78px;
    object-fit: contain;
    object-position: left center;
}

.desktop-navigation {
    margin-left: auto;
}

.desktop-navigation__list {
    display: flex;
    align-items: center;
    gap: 7px;
}

.desktop-navigation__link {
    position: relative;
    display: block;
    padding: 13px 14px;
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.desktop-navigation__link::after {
    position: absolute;
    right: 14px;
    bottom: 6px;
    left: 14px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--color-green);
    content: "";
    transition: transform var(--transition-medium);
}

.desktop-navigation__link:hover,
.desktop-navigation__link.is-active {
    color: var(--color-white);
}

.desktop-navigation__link:hover::after,
.desktop-navigation__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-login-link {
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.header-login-link:hover {
    color: var(--color-white);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
}

.mobile-menu-button span {
    width: 19px;
    height: 1px;
    background: var(--color-white);
    transition: transform var(--transition-medium);
}

/* =========================================================
   8. MOBİL MENÜ
========================================================= */

.mobile-menu {
    position: fixed;
    z-index: 1100;
    display: flex;
    visibility: hidden;
    inset: 0;
    flex-direction: column;
    transform: translateX(100%);
    background:
        linear-gradient(135deg,
            rgba(124, 255, 79, 0.06),
            transparent 35%),
        var(--color-black);
    transition:
        transform var(--transition-slow),
        visibility var(--transition-slow);
}

.mobile-menu.is-open {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    height: 82px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__logo {
    width: 145px;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.mobile-menu__close {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 1px;
    background: var(--color-white);
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-navigation {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 30px 24px;
}

.mobile-navigation__list {
    width: 100%;
}

.mobile-navigation__item {
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 450ms ease,
        transform 450ms ease;
    transition-delay: calc(var(--item-index) * 65ms);
}

.mobile-menu.is-open .mobile-navigation__item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-navigation__link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(34px, 9vw, 52px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.mobile-navigation__link.is-active {
    color: var(--color-green);
}

.mobile-navigation__number {
    min-width: 28px;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
}

.mobile-menu__footer {
    display: flex;
    gap: 25px;
    padding: 25px 24px;
    border-top: 1px solid var(--color-border);
}

.mobile-menu__footer a {
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
}

/* =========================================================
   9. HERO
========================================================= */

.hero-section {
    position: relative;
    display: flex;
    min-height: 850px;
    padding-top: var(--header-height);
    overflow: hidden;
    align-items: center;
    isolation: isolate;
}

.hero-section__media {
    position: absolute;
    z-index: -3;
    inset: 0;
    contain: paint;
    pointer-events: none;
}

.hero-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.hero-section__video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 7, 6, 0.98) 0%,
            rgba(5, 7, 6, 0.84) 42%,
            rgba(5, 7, 6, 0.35) 100%);
}

.hero-section__video-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(5, 7, 6, 0.15),
            transparent 55%,
            var(--color-black) 100%),
        radial-gradient(circle at 76% 48%,
            rgba(124, 255, 79, 0.09),
            transparent 28%);
}

.hero-section__container {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 60px;
    padding-bottom: 130px;
}

.hero-section__content {
    max-width: 820px;
}

.hero-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: var(--color-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-section__eyebrow-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 5px rgba(124, 255, 79, 0.1);
}

.hero-section__title {
    max-width: 850px;
    margin-bottom: 28px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(75px, 8vw, 130px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.78;
    text-transform: uppercase;
}

.hero-section__title-outline {
    display: block;
    margin-top: 16px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.68);
}

.hero-section__description {
    max-width: 650px;
    margin-bottom: 38px;
    color: var(--color-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-featured-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-large);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.018));
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(18px);
}

.hero-featured-card::before {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(124, 255, 79, 0.12);
    filter: blur(80px);
    content: "";
}

.hero-featured-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.hero-featured-card__label {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-featured-card__title {
    margin-bottom: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-transform: uppercase;
}

.status-badge::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: "";
}

.status-badge--open {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.status-badge--open::before {
    background: var(--color-green);
    box-shadow: 0 0 10px var(--color-green);
}

.hero-featured-card__visual {
    position: relative;
    display: grid;
    height: 250px;
    margin: 24px 0;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background:
        radial-gradient(circle at center,
            rgba(124, 255, 79, 0.12),
            transparent 55%),
        #090d0a;
}

.hero-featured-card__visual::before,
.hero-featured-card__visual::after {
    position: absolute;
    background: rgba(255, 255, 255, 0.025);
    content: "";
}

.hero-featured-card__visual::before {
    width: 100%;
    height: 1px;
}

.hero-featured-card__visual::after {
    width: 1px;
    height: 100%;
}

.hero-featured-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-featured-card:hover .hero-featured-card__video {
    transform: scale(1.025);
}

.hero-featured-card__details {
    display: grid;
    padding-bottom: 23px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    border-bottom: 1px solid var(--color-border);
}

.hero-featured-card__detail span,
.hero-featured-card__detail strong {
    display: block;
}

.hero-featured-card__detail span {
    margin-bottom: 4px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-featured-card__detail strong {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
}

.hero-featured-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 21px;
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.hero-featured-card__link svg {
    transition: transform var(--transition-fast);
}

.hero-featured-card__link:hover {
    color: var(--color-green);
}

.hero-featured-card__link:hover svg {
    transform: translateX(4px);
}

.hero-section__bottom {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
}

.hero-section__bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.scroll-indicator__mouse {
    position: relative;
    width: 22px;
    height: 34px;
    border: 1px solid var(--color-border-light);
    border-radius: 15px;
}

.scroll-indicator__mouse span {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 2px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 4px;
    background: var(--color-green);
    animation: scrollMouse 1.8s ease infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}

.hero-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-social-links>span {
    padding-right: 20px;
    border-right: 1px solid var(--color-border);
}

.hero-social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.hero-social-links a:hover {
    transform: translateY(-2px);
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-black);
}

.hero-social-links svg {
    display: block;
}

/* =========================================================
   10. İSTATİSTİKLER
========================================================= */

.statistics-section {
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.012);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistic-card {
    position: relative;
    padding: 47px 32px;
    text-align: center;
}

.statistic-card:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.statistic-card__number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.statistic-card__number sup {
    margin-top: 4px;
    color: var(--color-green);
    font-size: 25px;
}

.statistic-card__label {
    margin: 13px 0 0;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* =========================================================
   11. MAÇLAR
========================================================= */

.matches-section {
    overflow: hidden;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.match-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        background-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.match-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green);
    content: "";
    transition: width var(--transition-slow);
}

.match-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-green-border);
    background: var(--color-surface-light);
    box-shadow: var(--shadow-small);
}

.match-card:hover::before {
    width: 100%;
}

.match-card__header {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 21px;
    border-bottom: 1px solid var(--color-border);
}

.match-card__tournament {
    display: block;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
}

.match-card__format {
    display: block;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
}

.match-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.match-status::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content: "";
}

.match-status--live {
    background: rgba(255, 94, 94, 0.1);
    color: #ff7a7a;
}

.match-status--live::before {
    background: var(--color-danger);
    box-shadow: 0 0 8px var(--color-danger);
    animation: livePulse 1.3s infinite;
}

.match-status--upcoming {
    background: var(--color-green-soft);
    color: var(--color-green);
}

.match-status--upcoming::before {
    background: var(--color-green);
}

.match-status--completed {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.match-status--completed::before {
    background: #22c55e;
}

.match-status--awaiting {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
}

.match-status--awaiting::before {
    background: #eab308;
}

@keyframes livePulse {
    50% {
        opacity: 0.25;
    }
}

.match-card__body {
    display: grid;
    min-height: 220px;
    align-items: center;
    padding: 30px 18px;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
}

.match-team {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.match-team__logo {
    display: grid;
    width: 75px;
    height: 75px;
    margin-bottom: 14px;
    overflow: hidden;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
    place-items: center;
}

.match-team__logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.match-card:hover .match-team__logo img {
    transform: scale(1.05);
}

.match-team__name {
    max-width: 120px;
    overflow: hidden;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-card__center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.match-card__time {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.match-card__versus {
    margin-top: 9px;
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.match-card__footer {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.match-card__footer a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-soft);
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.match-card__footer a:hover {
    transform: translateX(3px);
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-black);
}

/* =========================================================
   12. LİG SIRALAMASI
========================================================= */

.league-section {
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background:
        linear-gradient(120deg,
            rgba(124, 255, 79, 0.045),
            transparent 36%),
        var(--color-black-soft);
}

.league-section__container {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(280px, 0.68fr) minmax(600px, 1.32fr);
    gap: clamp(50px, 7vw, 110px);
}

.league-section__description {
    max-width: 500px;
    margin: 25px 0 32px;
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.standings-card {
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-large);
    background: rgba(13, 17, 15, 0.86);
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(12px);
}

.standings-card--square-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.standings-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 28px;
    border-bottom: 1px solid var(--color-border);
}

.standings-card__label {
    color: var(--color-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.standings-card__header h3 {
    margin: 2px 0 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.standings-card__updated {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.standings-card__updated::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 8px rgba(124, 255, 79, 0.6);
    content: "";
}

.standings-table-wrapper {
    overflow-x: auto;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.standings-card .standings-table {
    table-layout: fixed;
}

.standings-card .standings-table-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.standings-card .standings-table th:nth-child(1) {
    width: 8%;
}

.standings-card .standings-table th:nth-child(2) {
    width: 40%;
}

.standings-card .standings-table th:nth-child(3),
.standings-card .standings-table th:nth-child(4),
.standings-card .standings-table th:nth-child(5),
.standings-card .standings-table th:nth-child(6) {
    width: 7%;
}

.standings-card .standings-table th:nth-child(7) {
    width: 16%;
}

.standings-card .standings-table th:nth-child(8) {
    width: 8%;
}

.standings-card .standings-table th,
.standings-card .standings-table td {
    box-sizing: border-box;
    overflow: hidden;
    padding-right: 8px;
    padding-left: 8px;
}

.standings-card .standings-team {
    min-width: 0;
}

.standings-card .standings-team span {
    min-width: 0;
    white-space: nowrap;
}

.standings-table th {
    height: 46px;
    padding: 0 14px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.standings-table th:nth-child(2),
.standings-table td:nth-child(2) {
    text-align: left;
}

.standings-table td {
    height: 68px;
    padding: 0 14px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-soft);
    font-size: 11px;
    text-align: center;
}

.standings-table tbody tr {
    transition: background-color var(--transition-fast);
}

.standings-table tbody tr:last-child td {
    border-bottom: 0;
}

.standings-table tbody tr:hover {
    background: rgba(124, 255, 79, 0.035);
}

.standings-position {
    display: inline-grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
}

.standings-table tbody tr:first-child .standings-position {
    border-color: var(--color-green-border);
    background: var(--color-green-soft);
    color: var(--color-green);
}

.standings-team {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-white);
    font-weight: 600;
}

.standings-team:hover {
    color: var(--color-green);
}

.standings-team span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.standings-team img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    box-sizing: border-box;
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    object-fit: contain;
}

.team-form {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.team-form__result {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 800;
}

.team-form__result--w {
    background: rgba(124, 255, 79, 0.12);
    color: var(--color-green);
}

.team-form__result--l {
    background: rgba(255, 94, 94, 0.1);
    color: #ff7373;
}

@media (max-width: 600px) {
    .standings-card .standings-table th:nth-child(1) { width: 7%; }
    .standings-card .standings-table th:nth-child(2) { width: 34%; }
    .standings-card .standings-table th:nth-child(3),
    .standings-card .standings-table th:nth-child(4),
    .standings-card .standings-table th:nth-child(5),
    .standings-card .standings-table th:nth-child(6) { width: 8%; }
    .standings-card .standings-table th:nth-child(7) { width: 19%; }
    .standings-card .standings-table th:nth-child(8) { width: 8%; }
    .standings-card .standings-table th,
    .standings-card .standings-table td { padding-right: 3px; padding-left: 3px; }
    .standings-card .standings-team { gap: 5px; }
    .standings-card .standings-team img { width: 26px; height: 26px; flex-basis: 26px; padding: 3px; }
    .standings-card .team-form { gap: 1px; }
    .standings-card .team-form__result { width: 12px; height: 16px; font-size: 6px; }
}

/* =========================================================
   13. HABERLER
========================================================= */

.news-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.825fr 0.825fr;
    gap: 20px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-green-border);
    box-shadow: var(--shadow-small);
}

.news-card__image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: var(--color-surface-light);
}

.news-card--featured .news-card__image {
    height: 340px;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card__image img {
    transform: scale(1.045);
}

.news-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 7, 6, 0.55),
            transparent 60%);
}

.news-card__featured-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 10px;
    border-radius: 100px;
    background: var(--color-green);
    color: var(--color-black);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-card__content {
    padding: 23px;
}

.news-card--featured .news-card__content {
    padding: 28px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.news-card__category {
    color: var(--color-green);
}

.news-card__meta time {
    display: flex;
    align-items: center;
    gap: 11px;
}

.news-card__meta time::before {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-text-muted);
    content: "";
}

.news-card__title {
    margin-bottom: 13px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
}

.news-card--featured .news-card__title {
    font-size: 37px;
}

.news-card__title a {
    transition: color var(--transition-fast);
}

.news-card__title a:hover {
    color: var(--color-green);
}

.news-card__description {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 22px;
    color: var(--color-text-soft);
    font-size: 13px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-text-soft);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.news-card__link svg {
    transition: transform var(--transition-fast);
}

.news-card__link:hover {
    color: var(--color-green);
}

.news-card__link:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   14. TOPLULUK
========================================================= */

.community-section {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    padding: 120px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    isolation: isolate;
}

.community-section__background {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.community-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) saturate(0.5) contrast(1.1);
}

.community-section__background span {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 7, 6, 0.97) 0%,
            rgba(5, 7, 6, 0.82) 48%,
            rgba(5, 7, 6, 0.4) 100%),
        linear-gradient(to top,
            var(--color-black),
            transparent 50%,
            rgba(5, 7, 6, 0.55));
}

.community-section__container {
    display: flex;
    min-height: 370px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
}

.community-section__content {
    max-width: 710px;
}

.community-section__title {
    max-width: 720px;
    margin-bottom: 23px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(60px, 7vw, 105px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.84;
    text-transform: uppercase;
}

.community-section__description {
    max-width: 560px;
    margin-bottom: 33px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.community-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.community-section__numbers {
    display: grid;
    min-width: 220px;
    padding: 25px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);
    background: rgba(5, 7, 6, 0.62);
    backdrop-filter: blur(14px);
}

.community-section__numbers div {
    padding: 19px 0;
}

.community-section__numbers div:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.community-section__numbers strong,
.community-section__numbers span {
    display: block;
}

.community-section__numbers strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.community-section__numbers span {
    margin-top: 7px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* =========================================================
   15. PARTNERLER
========================================================= */

.partners-section {
    padding: 42px 0;
    border-bottom: 1px solid var(--color-border);
}

.partners-section__heading {
    margin-bottom: 22px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
}

.partners-list {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.partner-logo {
    display: grid;
    min-height: 72px;
    place-items: center;
    border-right: 1px solid var(--color-border);
}

.partner-logo:last-child {
    border-right: 0;
}

.partner-logo img {
    max-width: 135px;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.55;
    transition:
        filter var(--transition-medium),
        opacity var(--transition-medium),
        transform var(--transition-medium);
}

.partner-logo:hover img {
    transform: scale(1.04);
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.creator-marquee-section {
    position: relative;
    display: grid;
    min-height: 78px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--color-border);
    background: rgba(8, 12, 9, 0.92);
}

.creator-marquee-section__viewport {
    display: flex;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.creator-marquee-section__track {
    display: flex;
    flex: 0 0 auto;
    width: max-content;
    animation: creator-marquee-scroll 24s linear infinite;
    animation-play-state: running;
    will-change: transform;
}

.creator-marquee-section:hover .creator-marquee-section__track {
    animation-play-state: paused !important;
}

.creator-marquee-section__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.creator-marquee-item {
    display: inline-flex;
    align-items: center;
    min-height: 78px;
    padding: 0 28px;
    gap: 10px;
    color: var(--color-white);
    white-space: nowrap;
}

a.creator-marquee-item:hover {
    color: var(--color-green);
}

.creator-marquee-item__platform {
    padding: 4px 7px;
    border: 1px solid var(--color-green-border);
    border-radius: 5px;
    background: var(--color-green-soft);
    color: var(--color-green);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.creator-marquee-item strong {
    font-size: 13px;
    font-weight: 700;
}

.creator-marquee-item__dot {
    width: 4px;
    height: 4px;
    margin-left: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.creator-marquee-section__cta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 0 28px;
    gap: 10px;
    border-left: 1px solid var(--color-green-border);
    background: #101a11;
    color: var(--color-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: -20px 0 35px rgba(5, 7, 6, 0.95);
}

.creator-marquee-section__cta:hover {
    background: var(--color-green);
    color: var(--color-black);
}

@keyframes creator-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .creator-marquee-section__track {
        animation-duration: 36s !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }
}

@media (max-width: 680px) {
    .creator-marquee-section {
        min-height: 64px;
    }

    .creator-marquee-item {
        min-height: 64px;
        padding: 0 18px;
    }

    .creator-marquee-section__cta {
        min-width: 132px;
        padding: 0 16px;
        font-size: 10px;
    }
}

/* =========================================================
   16. FOOTER
========================================================= */

.site-footer {
    background: #030504;
}

.site-footer__top {
    display: grid;
    padding: 90px 0 65px;
    grid-template-columns: minmax(260px, 0.75fr) minmax(500px, 1.25fr);
    gap: 100px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 23px;
}

.site-footer__logo img {
    width: 370px;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__brand p {
    max-width: 420px;
    margin-bottom: 25px;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.site-footer__socials {
    display: flex;
    gap: 9px;
}

.site-footer__socials a {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    color: var(--color-text-soft);
    font-size: 10px;
    font-weight: 700;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.site-footer__socials a:hover {
    transform: translateY(-3px);
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-black);
}

.site-footer__socials svg {
    display: block;
}

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 70px;
}

.site-footer__column h3 {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__column ul {
    display: grid;
    gap: 11px;
}

.site-footer__column a {
    position: relative;
    color: var(--color-text-muted);
    font-size: 12px;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.site-footer__column a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    transform: translateY(-50%);
    background: var(--color-green);
    content: "";
    transition: width var(--transition-fast);
}

.site-footer__column a:hover {
    padding-left: 15px;
    color: var(--color-green);
}

.site-footer__column a:hover::before {
    width: 9px;
}

.site-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 12px;
}

.site-footer__contact-list svg {
    flex: 0 0 auto;
    color: var(--color-green);
}

.site-footer__contact-list a:hover {
    padding-left: 0;
}

.site-footer__contact-list a::before {
    display: none;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 0;
    border-top: 1px solid var(--color-border);
}

.site-footer__bottom p {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 9px;
    letter-spacing: 0.02em;
}

/* =========================================================
   17. YUKARI ÇIK BUTONU
========================================================= */

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: grid;
    visibility: hidden;
    width: 45px;
    height: 45px;
    place-items: center;
    transform: translateY(15px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-small);
    background: rgba(13, 17, 15, 0.88);
    color: var(--color-white);
    opacity: 0;
    backdrop-filter: blur(12px);
    transition:
        visibility var(--transition-medium),
        opacity var(--transition-medium),
        transform var(--transition-medium),
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.back-to-top.is-visible {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-black);
}

/* =========================================================
   18. REVEAL ANİMASYONLARI
========================================================= */

.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Açılış metinleri soldan, yumuşak ve kademeli biçimde görünür. */
.hero-section__content > .reveal-item {
    transform: translate3d(-72px, 0, 0);
    filter: blur(4px);
    transition:
        opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 700ms ease;
    will-change: opacity, transform, filter;
}

.hero-section__content > .reveal-item.is-visible {
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* JavaScript kapalıysa içerikler yine görünür. */

.no-js .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
}

/* =========================================================
   19. NOSCRIPT
========================================================= */

.noscript-warning {
    position: fixed;
    z-index: 10000;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px 20px;
    background: var(--color-warning);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

/* =========================================================
   20. TABLET
========================================================= */

@media (max-width: 1180px) {
    :root {
        --header-height: 80px;
    }

    .desktop-navigation,
    .header-login-link {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-section__container {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .hero-section__title {
        font-size: clamp(70px, 9vw, 105px);
    }

    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .match-card:last-child {
        grid-column: span 2;
    }

    .league-section__container {
        grid-template-columns: 1fr;
    }

    .league-section__content {
        max-width: 670px;
    }

    .news-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card--featured {
        grid-column: span 2;
    }

    .site-footer__top {
        gap: 60px;
    }
}

/* =========================================================
   21. KÜÇÜK TABLET
========================================================= */

@media (max-width: 900px) {
    .section {
        padding: 90px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-section__container {
        grid-template-columns: 1fr;
        padding-top: 110px;
        padding-bottom: 150px;
    }

    .hero-section__content {
        max-width: 730px;
    }

    .hero-featured-card {
        max-width: 580px;
    }

    .hero-section__video-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 7, 6, 0.98),
                rgba(5, 7, 6, 0.75)),
            linear-gradient(to bottom,
                transparent 30%,
                var(--color-black) 100%);
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-card:nth-child(2) {
        border-right: 0;
    }

    .statistic-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-border);
    }

    .community-section__container {
        align-items: flex-start;
        flex-direction: column;
        gap: 50px;
    }

    .community-section__numbers {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .community-section__numbers div {
        padding: 5px 20px;
    }

    .community-section__numbers div:not(:last-child) {
        border-right: 1px solid var(--color-border);
        border-bottom: 0;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   22. MOBİL
========================================================= */

@media (max-width: 680px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .site-header.is-scrolled {
        height: 68px;
    }

    .site-logo__image {
        width: 125px;
    }

    .site-header__actions .button {
        display: none;
    }

    .section {
        padding: 76px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading__title {
        font-size: 49px;
    }

    .text-link {
        font-size: 12px;
    }

    .hero-section {
        min-height: 760px;
        align-items: flex-start;
    }

    .hero-section__container {
        display: block;
        /* The section already reserves the fixed header height. Keeping the
           former 145px here created the large empty black area on phones. */
        padding-top: 42px;
        padding-bottom: 110px;
    }

    .hero-section__eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
    }

    .hero-section__title {
        margin-bottom: 25px;
        font-size: clamp(64px, 20vw, 86px);
        line-height: 0.8;
    }

    .hero-section__title-outline {
        margin-top: 13px;
        -webkit-text-stroke-width: 1px;
    }

    .hero-section__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-section__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-section__actions .button {
        width: 100%;
    }

    .hero-featured-card {
        display: none;
    }

    .hero-section__bottom {
        bottom: 22px;
    }

    .hero-social-links {
        display: none;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic-card {
        padding: 35px 15px;
    }

    .statistic-card__number {
        font-size: 52px;
    }

    .statistic-card__label {
        font-size: 9px;
    }

    .matches-grid {
        grid-template-columns: 1fr;
    }

    .match-card:last-child {
        grid-column: auto;
    }

    .match-card__body {
        min-height: 205px;
        padding: 25px 12px;
        gap: 10px;
    }

    .match-team__logo {
        width: 62px;
        height: 62px;
    }

    .match-team__name {
        max-width: 95px;
        font-size: 10px;
    }

    .match-card__time {
        font-size: 27px;
    }

    .league-section__container {
        gap: 40px;
    }

    .league-section__description {
        font-size: 14px;
    }

    .standings-card {
        border-radius: var(--radius-medium);
    }

    .standings-card__header {
        padding: 20px;
    }

    .standings-card__header h3 {
        font-size: 23px;
    }

    .standings-table {
        min-width: 650px;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-card--featured {
        grid-column: auto;
    }

    .news-card__image,
    .news-card--featured .news-card__image {
        height: 235px;
    }

    .news-card__content,
    .news-card--featured .news-card__content {
        padding: 21px;
    }

    .news-card__title,
    .news-card--featured .news-card__title {
        font-size: 28px;
    }

    .community-section {
        min-height: auto;
        padding: 90px 0;
    }

    .community-section__title {
        font-size: clamp(58px, 18vw, 78px);
    }

    .community-section__description {
        font-size: 14px;
    }

    .community-section__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .community-section__actions .button {
        width: 100%;
    }

    .community-section__numbers {
        grid-template-columns: 1fr;
    }

    .community-section__numbers div {
        padding: 17px 0;
    }

    .community-section__numbers div:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .partners-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        min-height: 80px;
    }

    .partner-logo:nth-child(2) {
        border-right: 0;
    }

    .partner-logo:nth-child(-n + 2) {
        border-bottom: 1px solid var(--color-border);
    }

    .partner-logo img {
        max-width: 110px;
    }

    .site-footer__top {
        padding: 70px 0 45px;
        gap: 50px;
    }

    .site-footer__navigation {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

/* =========================================================
   23. ÇOK KÜÇÜK EKRAN
========================================================= */

/* Homepage mobile compact partner, sponsor and statistics rows */
@media (max-width: 680px) {
    .creator-marquee-section {
        min-height: 50px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .creator-marquee-item {
        min-height: 50px;
        padding: 0 12px;
        gap: 6px;
    }

    .creator-marquee-item__platform {
        padding: 2px 4px;
        border-radius: 4px;
        font-size: 6px;
    }

    .creator-marquee-item strong {
        font-size: 10px;
    }

    .creator-marquee-item__dot {
        width: 3px;
        height: 3px;
        margin-left: 8px;
    }

    .creator-marquee-section__cta {
        min-width: 110px;
        padding: 0 10px;
        gap: 6px;
        font-size: 9px;
        box-shadow: -12px 0 24px rgba(5, 7, 6, 0.92);
    }

    .creator-marquee-section__cta svg {
        width: 14px;
        height: 14px;
    }

    .partners-section {
        padding: 28px 0;
    }

    .partners-section__heading {
        margin-bottom: 16px;
        font-size: 8px;
    }

    .partners-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .partner-logo {
        min-width: 0;
        min-height: 58px;
        padding: 0 5px;
        border-right: 1px solid var(--color-border);
        border-bottom: 0 !important;
    }

    .partner-logo:nth-child(2) {
        border-right: 1px solid var(--color-border);
    }

    .partner-logo:last-child {
        border-right: 0;
    }

    .partner-logo img {
        width: auto;
        max-width: min(68px, 100%);
        max-height: 34px;
    }

    .statistics-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .statistic-card {
        min-width: 0;
        padding: 24px 2px;
        border-right: 1px solid var(--color-border);
        border-bottom: 0 !important;
    }

    .statistic-card:nth-child(2) {
        border-right: 1px solid var(--color-border);
    }

    .statistic-card:last-child {
        border-right: 0;
    }

    .statistic-card__number {
        font-size: 38px;
    }

    .statistic-card__number sup {
        margin-top: 1px;
        font-size: 14px;
    }

    .statistic-card__label {
        margin-top: 9px;
        font-size: 7px;
        letter-spacing: .11em;
    }

    .standings-card .standings-table-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(124, 255, 79, 0.45) rgba(255, 255, 255, 0.035);
        -webkit-overflow-scrolling: touch;
    }

    .standings-card .standings-table-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .standings-card .standings-table-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.035);
    }

    .standings-card .standings-table-wrapper::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: rgba(124, 255, 79, 0.45);
    }

    .standings-card .standings-table {
        min-width: 650px;
    }

    .mobile-menu {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    .mobile-menu__header {
        position: relative;
        z-index: 2;
        height: 68px;
        min-height: 68px;
        flex: 0 0 68px;
        padding: 0 20px;
        background: rgba(5, 7, 6, 0.98);
    }

    .mobile-menu__logo {
        width: 132px;
    }

    .mobile-navigation {
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        flex: 1 1 auto;
        align-items: flex-start;
        padding: 14px 24px;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-navigation__link {
        padding: 10px 0;
        font-size: clamp(29px, 8vw, 36px);
    }

    .mobile-menu__footer {
        position: relative;
        z-index: 2;
        flex: 0 0 auto;
        gap: 8px !important;
        padding: 14px 20px calc(14px + env(safe-area-inset-bottom)) !important;
        background: rgba(5, 7, 6, 0.99);
    }

    .mobile-menu__footer .mobile-user-info {
        margin-bottom: 2px !important;
    }

    .mobile-menu__footer .button {
        min-height: 38px;
    }
}

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

    .statistic-card__number {
        font-size: 33px;
    }

    .statistic-card__number sup {
        font-size: 12px;
    }

    .partner-logo img {
        max-width: min(60px, 100%);
        max-height: 30px;
    }

    .hero-section__title {
        font-size: 61px;
    }

    .mobile-navigation__link {
        font-size: 33px;
    }

    .match-card__body {
        padding-inline: 8px;
    }

    .match-team__logo {
        width: 55px;
        height: 55px;
    }

    .match-team__name {
        max-width: 80px;
    }

    .site-footer__navigation {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   24. HAREKET AZALTMA TERCİHİ
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.empty-state {
    display: flex;
    min-height: 280px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    text-align: center;
}

.empty-state__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid var(--color-green-border);
    border-radius: 14px;
    background: var(--color-green-soft);
    color: var(--color-green);
}

.empty-state h3 {
    margin-bottom: 9px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
}

.empty-state p {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   İÇ SAYFA HERO
========================================================= */

.site-main {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    display: flex;
    min-height: 510px;
    align-items: flex-end;
    overflow: hidden;
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    background:
        radial-gradient(circle at 82% 40%,
            rgba(124, 255, 79, 0.1),
            transparent 25%),
        linear-gradient(130deg,
            rgba(124, 255, 79, 0.035),
            transparent 40%),
        var(--color-black-soft);
}

.page-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to right,
            transparent,
            #000 40%,
            transparent);
}

.page-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 420px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 70px;
}

.page-hero__content {
    max-width: 720px;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--color-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-hero__eyebrow::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.page-hero__title {
    margin-bottom: 19px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(75px, 9vw, 126px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.78;
    text-transform: uppercase;
}

.page-hero__description {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.page-hero__decoration {
    position: absolute;
    right: 0;
    bottom: 14px;
    pointer-events: none;
}

.page-hero__decoration span {
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(130px, 18vw, 260px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.7;
    opacity: 0.06;
    -webkit-text-stroke: 1px var(--color-white);
}

/* =========================================================
   ERİŞİLEBİLİRLİK
========================================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* =========================================================
   HABER ARŞİVİ
========================================================= */

.news-archive-section {
    padding-top: 70px;
}

.archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
}

.archive-search {
    display: flex;
    width: min(100%, 630px);
    align-items: center;
    gap: 10px;
}

.archive-search__field {
    display: flex;
    min-height: 48px;
    flex: 1;
    align-items: center;
    gap: 12px;
    padding: 0 17px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    background: var(--color-black-soft);
    color: var(--color-text-muted);
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast);
}

.archive-search__field:focus-within {
    border-color: var(--color-green-border);
    background: #0b0f0c;
}

.archive-search__field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-white);
    font-size: 13px;
}

.archive-search__field input::placeholder {
    color: var(--color-text-muted);
}

.archive-result-count {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.archive-result-count strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}

.archive-result-count span {
    color: var(--color-text-muted);
    font-size: 11px;
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.category-filter__item {
    display: inline-flex;
    min-height: 39px;
    flex-shrink: 0;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.015);
    color: var(--color-text-soft);
    font-size: 11px;
    font-weight: 600;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast);
}

.category-filter__item span {
    display: inline-grid;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    place-items: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--color-text-muted);
    font-size: 9px;
}

.category-filter__item:hover,
.category-filter__item.is-active {
    border-color: var(--color-green-border);
    background: var(--color-green-soft);
    color: var(--color-green);
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.archive-news-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    transition:
        transform var(--transition-medium),
        border-color var(--transition-medium),
        box-shadow var(--transition-medium);
}

.archive-news-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-green-border);
    box-shadow: var(--shadow-small);
}

.archive-news-card__image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: var(--color-surface-light);
}

.archive-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.archive-news-card:hover .archive-news-card__image img {
    transform: scale(1.045);
}

.archive-news-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 7, 6, 0.7),
            transparent 65%);
}

.archive-news-card__category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 10px;
    border: 1px solid rgba(124, 255, 79, 0.3);
    border-radius: 100px;
    background: rgba(5, 7, 6, 0.72);
    color: var(--color-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.archive-news-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(circle at center,
            rgba(124, 255, 79, 0.1),
            transparent 45%),
        linear-gradient(140deg,
            rgba(255, 255, 255, 0.025),
            transparent),
        var(--color-black-soft);
}

.archive-news-card__placeholder span {
    color: transparent;
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 800;
    letter-spacing: -0.05em;
    opacity: 0.16;
    -webkit-text-stroke: 1px var(--color-green);
}

.archive-news-card__content {
    padding: 23px;
}

.archive-news-card__meta {
    display: flex;
    min-height: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 13px;
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.archive-news-card__title {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 700;
    line-height: 1.08;
}

.archive-news-card__title a {
    transition: color var(--transition-fast);
}

.archive-news-card__title a:hover {
    color: var(--color-green);
}

.archive-news-card__summary {
    display: -webkit-box;
    min-height: 66px;
    overflow: hidden;
    margin-bottom: 21px;
    color: var(--color-text-soft);
    font-size: 12px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.archive-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color-text-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.archive-news-card__link svg {
    transition: transform var(--transition-fast);
}

.archive-news-card__link:hover {
    color: var(--color-green);
}

.archive-news-card__link:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   SAYFALAMA
========================================================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 55px;
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pagination__pages a,
.pagination__dots {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text-soft);
    font-size: 11px;
    font-weight: 700;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.pagination__pages a:hover,
.pagination__pages a.is-active {
    border-color: var(--color-green);
    background: var(--color-green);
    color: var(--color-black);
}

.pagination__dots {
    border-color: transparent;
}

.pagination__navigation {
    color: var(--color-text-soft);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.pagination__navigation:hover {
    color: var(--color-green);
}

.pagination__navigation.is-disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

/* =========================================================
   HABER ARŞİVİ RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 430px;
    }

    .page-hero__container {
        min-height: 350px;
        padding-top: 100px;
        padding-bottom: 55px;
    }

    .page-hero__title {
        font-size: clamp(66px, 20vw, 92px);
    }

    .page-hero__description {
        font-size: 13px;
    }

    .archive-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .archive-search {
        width: 100%;
    }

    .archive-result-count {
        justify-content: flex-end;
    }

    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-news-card__image {
        height: 245px;
    }

    .pagination {
        gap: 13px;
    }

    .pagination__navigation {
        font-size: 9px;
    }
}

@media (max-width: 520px) {
    .archive-search {
        align-items: stretch;
        flex-direction: column;
    }

    .archive-search .button {
        width: 100%;
    }

    .archive-result-count {
        justify-content: flex-start;
    }

    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination__navigation {
        text-align: center;
    }

    .pagination__pages {
        justify-content: center;
    }

    .pagination__pages a,
    .pagination__dots {
        width: 35px;
        height: 35px;
    }
}

/* =========================================================
   HABER DETAY SAYFASI
========================================================= */

.news-detail-hero {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-black-soft);
}

.news-detail-hero__background {
    position: absolute;
    inset: 0;
}

.news-detail-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: blur(3px) saturate(0.7);
    transform: scale(1.04);
}

.news-detail-hero__background span {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(5, 7, 6, 0.3),
            rgba(5, 7, 6, 0.98)),
        linear-gradient(90deg,
            rgba(5, 7, 6, 0.9),
            transparent 70%);
}

.news-detail-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 590px;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 130px;
    padding-bottom: 75px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 45px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb a {
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-green);
}

.breadcrumb span {
    opacity: 0.35;
}

.news-detail-hero__content {
    max-width: 920px;
}

.news-detail-hero__category {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 7px 12px;
    border: 1px solid var(--color-green-border);
    border-radius: 100px;
    background: rgba(124, 255, 79, 0.07);
    color: var(--color-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.news-detail-hero__title {
    margin-bottom: 23px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 94px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.95;
    text-transform: uppercase;
}

.news-detail-hero__summary {
    max-width: 780px;
    margin-bottom: 27px;
    color: var(--color-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.news-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.news-detail-hero__meta span,
.news-detail-hero__meta time {
    position: relative;
}

.news-detail-hero__meta span:not(:first-child)::before {
    position: absolute;
    top: 50%;
    left: -13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-green);
    content: "";
    transform: translateY(-50%);
}

.news-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 55px;
    padding-top: 70px;
    padding-bottom: 90px;
}

.news-detail__cover {
    overflow: hidden;
    margin-bottom: 42px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
}

.news-detail__cover img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.news-detail__content {
    color: var(--color-text-soft);
    font-size: 15px;
    line-height: 1.9;
}

.news-detail__content>*:first-child {
    margin-top: 0;
}

.news-detail__content>*:last-child {
    margin-bottom: 0;
}

.news-detail__content p {
    margin-bottom: 24px;
}

.news-detail__content h2,
.news-detail__content h3,
.news-detail__content h4 {
    margin-top: 46px;
    margin-bottom: 19px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.news-detail__content h2 {
    font-size: 39px;
}

.news-detail__content h3 {
    font-size: 31px;
}

.news-detail__content h4 {
    font-size: 25px;
}

.news-detail__content ul,
.news-detail__content ol {
    margin: 0 0 25px 22px;
}

.news-detail__content li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.news-detail__content strong {
    color: var(--color-white);
}

.news-detail__content a {
    color: var(--color-green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.news-detail__content blockquote {
    margin: 35px 0;
    padding: 25px 28px;
    border-left: 3px solid var(--color-green);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    background: var(--color-green-soft);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.35;
}

.news-detail__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 34px auto;
    border-radius: var(--radius-small);
}

.news-detail__content hr {
    height: 1px;
    margin: 38px 0;
    border: 0;
    background: var(--color-border);
}

.news-detail__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.news-detail__footer-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__footer-category span {
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-detail__footer-category a {
    padding: 7px 11px;
    border: 1px solid var(--color-green-border);
    border-radius: 100px;
    color: var(--color-green);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-soft);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.news-detail__back:hover {
    color: var(--color-green);
}

.news-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-sidebar-card {
    padding: 25px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: var(--color-surface);
}

.news-sidebar-card__label {
    display: block;
    margin-bottom: 18px;
    color: var(--color-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-sidebar-card h2 {
    margin-bottom: 11px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-sidebar-card p {
    margin-bottom: 20px;
    color: var(--color-text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.news-sidebar-card dl {
    margin: 0;
}

.news-sidebar-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
}

.news-sidebar-card dl div:first-child {
    padding-top: 0;
}

.news-sidebar-card dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.news-sidebar-card dt {
    color: var(--color-text-muted);
    font-size: 10px;
}

.news-sidebar-card dd {
    margin: 0;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    text-align: right;
}

.button--full {
    width: 100%;
}

/* =========================================================
   404 SAYFASI
========================================================= */

.error-page {
    display: flex;
    min-height: 78vh;
    align-items: center;
    padding-top: var(--header-height);
}

.error-page__container {
    display: flex;
    max-width: 620px;
    align-items: center;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.error-page__code {
    margin-bottom: 10px;
    color: transparent;
    font-family: var(--font-heading);
    font-size: clamp(110px, 20vw, 210px);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.8;
    opacity: 0.3;
    -webkit-text-stroke: 1px var(--color-green);
}

.error-page h1 {
    margin-bottom: 14px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.error-page p {
    max-width: 470px;
    margin-bottom: 28px;
    color: var(--color-text-soft);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   HABER DETAY RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .news-detail__layout {
        grid-template-columns: 1fr;
    }

    .news-detail__sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .news-detail-hero {
        min-height: 600px;
    }

    .news-detail-hero__container {
        min-height: 520px;
        padding-bottom: 55px;
    }

    .news-detail-hero__title {
        font-size: clamp(44px, 13vw, 68px);
    }

    .news-detail-hero__summary {
        font-size: 14px;
    }

    .news-detail__layout {
        gap: 40px;
        padding-top: 40px;
    }

    .news-detail__sidebar {
        grid-template-columns: 1fr;
    }

    .news-detail__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-detail__content h2 {
        font-size: 32px;
    }

    .news-detail__content h3 {
        font-size: 27px;
    }
}

/* =========================================================
   GİRİŞ VE HESAP SAYFALARI
========================================================= */

.auth-page {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background:
        radial-gradient(circle at 50% 35%,
            rgba(124, 255, 79, 0.08),
            transparent 32%);
}

.auth-page__container {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: min(100%, 510px);
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background: rgba(12, 16, 13, 0.94);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(16px);
}

.auth-card__header {
    margin-bottom: 30px;
}

.auth-card__eyebrow,
.account-card__label,
.account-header__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--color-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.auth-card__header h1 {
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.auth-card__header p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.form-group label {
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group__header a {
    color: var(--color-text-muted);
    font-size: 9px;
    transition: color var(--transition-fast);
}

.form-group__header a:hover {
    color: var(--color-green);
}

.form-group input {
    width: 100%;
    min-height: 51px;
    padding: 0 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-small);
    outline: 0;
    background: var(--color-black-soft);
    color: var(--color-white);
    font-size: 13px;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(124, 255, 79, 0.08);
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 75px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    border: 0;
    background: transparent;
    color: var(--color-green);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.form-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: var(--radius-small);
    font-size: 11px;
    line-height: 1.6;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-alert--error {
    border: 1px solid rgba(255, 82, 82, 0.3);
    background: rgba(255, 82, 82, 0.07);
    color: #ff9292;
}

.auth-card__footer {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 27px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 10px;
}

.auth-card__footer a {
    color: var(--color-green);
    font-weight: 700;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
}

.header-user__avatar {
    display: grid;
    width: 34px;
    height: 34px;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--color-green-border);
    border-radius: 50%;
    background: var(--color-green-soft);
    color: var(--color-green);
}

.header-user__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-logout-form {
    margin: 0;
}

.header-logout-button {
    border: 0;
    background: transparent;
    color: var(--color-text-soft);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    transition: color var(--transition-fast);
}

.header-logout-button:hover {
    color: var(--color-green);
}

.account-page {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 45px);
    background:
        radial-gradient(circle at 82% 10%,
            rgba(124, 255, 79, 0.045),
            transparent 32%);
}

.account-profile {
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-large);
    background: rgba(9, 13, 10, 0.96);
    box-shadow: var(--shadow-large);
}

.account-profile__banner {
    position: relative;
    height: clamp(190px, 22vw, 285px);
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(2, 5, 3, 0.78),
            rgba(2, 5, 3, 0.08) 58%,
            rgba(2, 5, 3, 0.32)),
        url("../images/community-background.svg") center 44% / cover;
}

.account-profile__banner::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(3, 5, 4, 0.82)),
        repeating-linear-gradient(115deg,
            transparent 0 54px,
            rgba(124, 255, 79, 0.025) 55px 56px);
    content: "";
}

.account-profile__banner > span {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.account-header {
    display: flex;
    position: relative;
    align-items: flex-end;
    gap: 28px;
    min-height: 128px;
    padding: 0 34px 34px;
}

.account-header__avatar {
    display: grid;
    position: relative;
    z-index: 2;
    width: 142px;
    height: 142px;
    flex-shrink: 0;
    margin-top: -72px;
    overflow: hidden;
    place-items: center;
    border: 4px solid #090d0a;
    border-radius: 50%;
    background: var(--color-green-soft);
    box-shadow:
        0 0 0 1px var(--color-green-border),
        0 18px 40px rgba(0, 0, 0, 0.48);
}

.account-header__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-header__avatar span {
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 52px;
    font-weight: 800;
}

.account-header__content {
    flex: 1;
    min-width: 0;
    padding-top: 24px;
}

.account-header__content .account-header__eyebrow {
    margin-bottom: 6px;
}

.account-header__name-row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.account-header__content h1 {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: clamp(31px, 3.2vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.account-header__verified {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--color-green);
    color: var(--color-black);
}

.account-header__content p {
    margin: 8px 0 0;
    color: var(--color-text-muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.account-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.desktop-navigation__link {
    position: relative;
    display: block;
    padding: 13px 14px;
    color: var(--color-text-soft);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.account-header__meta span {
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--color-text-soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-header__actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding-bottom: 10px;
}

.account-header__actions .button {
    gap: 10px;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 20px;
}

.account-card {
    padding: 30px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.035),
            transparent 55%),
        var(--color-surface);
}

.account-card__label {
    margin-bottom: 16px;
    font-size: 10px;
}

.account-card dl {
    margin: 0;
}

.account-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 53px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
}

.account-card dl div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.account-card dt {
    color: var(--color-text-muted);
    font-size: 11px;
}

.account-card dd {
    margin: 0;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

@media (max-width: 800px) {
    .account-profile__banner {
        height: 180px;
    }

    .account-header {
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 22px 25px;
    }

    .account-header__avatar {
        width: 112px;
        height: 112px;
        margin-top: -56px;
    }

    .account-header__content {
        min-width: min(100%, 280px);
    }

    .account-header__actions {
        width: 100%;
        padding-bottom: 0;
    }

    .account-header__actions a {
        width: 100%;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .account-page {
        padding-top: calc(var(--header-height) + 24px);
    }

    .account-profile__banner {
        height: 145px;
    }

    .account-profile__banner > span {
        right: 16px;
        bottom: 15px;
    }

    .account-header {
        align-items: flex-start;
        gap: 15px;
        padding-right: 17px;
        padding-left: 17px;
    }

    .account-header__avatar {
        width: 92px;
        height: 92px;
        margin-top: -46px;
    }

    .account-header__avatar span {
        font-size: 37px;
    }

    .account-header__content {
        padding-top: 16px;
    }

    .account-header__content h1 {
        font-size: 28px;
    }

    .account-card {
        padding: 23px 20px;
    }

    .auth-card {
        padding: 28px 21px;
    }

    .auth-card__header h1 {
        font-size: 43px;
    }

    .header-user__name {
        display: none;
    }
}

/* =========================================================
   17. SOSYAL GİRİŞ (SOCIAL LOGIN)
========================================================= */

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.auth-divider:not(:empty)::before {
    margin-right: 15px;
}

.auth-divider:not(:empty)::after {
    margin-left: 15px;
}

.button--google {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-white) !important;
}

.button--google:hover {
    background: #ea4335 !important;
    border-color: #ea4335 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 26px rgba(234, 67, 53, 0.2);
}

.button--discord {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-white) !important;
}

.button--discord:hover {
    background: #5865f2 !important;
    border-color: #5865f2 !important;
    color: #ffffff !important;
}

/* Reduce GPU-heavy compositing on the devices most likely to stutter. */
@media (max-width: 800px) {
    .site-background__glow {
        display: none;
    }

    .site-header.is-scrolled,
    .mobile-menu,
    .button--secondary {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .hero-section__video {
        filter: none;
    }
}
