:root {
    --background: #ffffff;
    --surface: rgba(255, 255, 255, 0.92);
    --text: #111111;
    --muted: #6f6f6f;
    --gold: #b98a2f;
    --gold-dark: #8e651d;
    --gold-light: #d8b862;
    --border: rgba(185, 138, 47, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.7;
}

a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--gold);
    text-decoration: underline;
}

/* Çok silik Sportloges filigranı */
.watermark {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.watermark::before {
    content: "";
    position: absolute;
    width: min(900px, 92vw);
    aspect-ratio: 16 / 9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background:
        url("images/sportloges-hero.png")
        center / contain
        no-repeat;
    opacity: 0.025;
    filter: grayscale(1) sepia(0.35);
}

/* SPORTLOGES ORTAK HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    width: 100%;

    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(185, 138, 47, 0.22);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    animation: headerReveal 0.6s ease-out both;
}

.site-header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 70px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--text);
    text-decoration: none;
}

.site-brand:hover,
.site-brand:focus-visible {
    color: var(--gold-dark);
    text-decoration: none;
}

.site-brand-mark {
    width: 13px;
    height: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    font-size: 18px;
    line-height: 1;

    filter:
        drop-shadow(0 2px 4px rgba(185, 138, 47, 0.24));
}

.site-brand-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-navigation a {
    position: relative;

    padding: 23px 0 21px;

    color: #555555;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-navigation a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 15px;

    width: 0;
    height: 2px;

    border-radius: 999px;
    background: var(--gold);

    transform: translateX(-50%);

    transition: width 0.24s ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a.active {
    color: var(--text);
    text-decoration: none;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after,
.site-navigation a.active::after {
    width: 100%;
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;
    padding: 10px;

    border: 1px solid rgba(185, 138, 47, 0.34);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.78);

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 100%;
    height: 2px;
    margin: 4px 0;

    border-radius: 999px;
    background: var(--text);
}

@keyframes headerReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {

    .site-header-inner {
        width: min(100% - 24px, 1180px);
        min-height: 62px;
        gap: 12px;
    }

    .site-brand-logo {
        width: 165px;
        height: 38px;
        object-fit: cover;
        object-position: center;
    }

    .site-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

}
.policy-page {
    width: min(960px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0 40px;
}

.policy-hero {
    padding: 34px 0 48px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.26em;
}

.policy-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.hero-description {
    margin: 22px 0 0;
    color: var(--text);
    font-size: clamp(17px, 2.4vw, 22px);
    font-weight: 700;
}

.effective-date {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.hero-divider {
    width: min(360px, 70%);
    height: 2px;
    margin: 34px auto 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.accordion {
    width: 100%;
}

details {
    background: var(--surface);
}

summary {
    position: relative;

    min-height: 76px;
    padding: 22px 54px 22px 4px;

    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;

    cursor: pointer;
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary:hover .section-title {
    color: var(--gold-dark);
}

summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 8px;
}

.section-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.section-title {
    color: var(--text);
    font-size: clamp(17px, 2.5vw, 21px);
    font-weight: 800;
    letter-spacing: -0.015em;
    transition: color 0.2s ease;
}

.arrow {
    position: absolute;
    right: 10px;
    top: 50%;

    width: 13px;
    height: 13px;

    border-right: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);

    transform:
        translateY(-70%)
        rotate(45deg);

    transition: transform 0.25s ease;
}

details[open] .arrow {
    transform:
        translateY(-20%)
        rotate(225deg);
}

.section-content {
    padding: 2px 54px 26px 46px;
    color: #303030;
    animation: contentReveal 0.28s ease-out;
}

.section-content p {
    margin: 0 0 16px;
    font-size: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.contact-line {
    font-weight: 600;
}

/* Arena ve Tribün hissindeki ince altın divider */
.sportloges-divider {
    width: 100%;
    height: 2px;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        var(--gold-dark),
        var(--gold-light),
        var(--gold-dark)
    );

    opacity: 0.82;
}

.policy-footer {
    padding: 72px 0 26px;
    text-align: center;
}

.all-in-one {
    margin: 0;
    color: var(--gold);
    font-size: clamp(30px, 6vw, 52px);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
}

.footer-slogan {
    margin: 14px 0 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}

.footer-navigation {
    margin-top: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.footer-navigation span {
    color: var(--gold);
}

.copyright {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 12px;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(-7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    .topbar {
        min-height: 60px;
        padding: 0 16px;
    }

    .brand-link {
        font-size: 14px;
    }

    .policy-page {
        width: min(100% - 24px, 960px);
        padding-top: 34px;
    }

    .policy-hero {
        padding: 24px 4px 36px;
    }

    summary {
        min-height: 68px;
        padding:
            18px
            42px
            18px
            2px;

        grid-template-columns: 34px 1fr;
    }

    .section-content {
        padding:
            0
            12px
            24px
            35px;
    }

    .section-content p {
        font-size: 15px;
        line-height: 1.72;
    }

    .arrow {
        right: 8px;
    }

    .policy-footer {
        padding-top: 56px;
    }

    .all-in-one {
        letter-spacing: 0.07em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
/* Premium sayfa açılışı */

.topbar {
    animation: topbarReveal 0.6s ease-out both;
}

.policy-hero .eyebrow {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.7s ease-out 0.15s forwards;
}

.policy-hero h1 {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    animation: heroFadeUp 0.85s ease-out 0.28s forwards;
}

.hero-description {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp 0.7s ease-out 0.45s forwards;
}

.effective-date {
    opacity: 0;
    transform: translateY(8px);
    animation: heroFadeUp 0.65s ease-out 0.58s forwards;
}

.hero-divider {
    transform: scaleX(0);
    transform-origin: center;
    animation: dividerReveal 0.75s ease-out 0.68s forwards;
}

.accordion {
    opacity: 0;
    transform: translateY(14px);
    animation: contentFadeUp 0.8s ease-out 0.82s forwards;
}

/* Küçük Sportloges marka işareti */

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);
    font-size: 17px;
    line-height: 1;

    filter: drop-shadow(
        0 2px 4px rgba(185, 138, 47, 0.24)
    );
}

/* Daha net Home butonu */

.home-link {
    padding: 8px 13px;
    border: 1px solid rgba(185, 138, 47, 0.42);
    border-radius: 999px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.home-link:hover,
.home-link:focus-visible {
    color: var(--gold-dark);
    border-color: var(--gold);
    background: rgba(185, 138, 47, 0.07);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Accordion açılış hissi */

details[open] .section-content {
    animation: accordionReveal 0.28s ease-out;
}

details[open] .section-title {
    color: var(--gold-dark);
}

/* Animasyonlar */

@keyframes topbarReveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dividerReveal {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes contentFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accordionReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-brand-logo {
    display: block;
    width: 220px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 700px) {
    .site-brand-logo {
        width: 180px;
        height: 42px;
    }
}