@font-face {
    font-family: 'Burbank Small';
    src: url('/assets/fonts/Burbank Small Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Burbank Small';
    src: url('/assets/fonts/Burbank Small Medium.woff2') format('woff2');
    font-weight: 400;
}

:root {
    --navy: #000c3a;
    --bar-blue: #12246e;
    --button-blue: #3898ec;
    --button-text: #01539c;
    --heading-blue: #29a5dc;
    --footer-teal: #0385b1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Burbank Small', Arial, sans-serif;
    background: var(--navy);
    color: #333;
}

a { text-decoration: none; }

/* ---- Top bar ---- */
.topbar {
    position: relative;
    z-index: 10;
    background: #1d4e9c url('/landing/img/topbar.avif') center / cover;
    height: 56px;
}

.topbar-inner {
    max-width: 1000px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.logo {
    position: relative;
    top: 18px;
    flex-shrink: 0;
}

/* height:auto SART: img'lerdeki width/height OZNITELIKLERI birer stil ipucu.
   CSS yalniz genisligi verirse yukseklik oznitelikteki degerde (174px) cakili
   kalir - logo 148x76 yerine 148x174 cizilip topbar'dan tasiyordu. */
.logo img { width: 148px; height: auto; display: block; }

.mainnav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.mainnav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mainnav a:hover { color: #ffcc00; }

/* Burada CSS yuksekligi veriyor -> genislik auto olmali (yoksa ikonlar
   oznitelikteki 100px'te kalip yassiliyordu) */
.mainnav img { height: 26px; width: auto; }

.play-btn {
    display: block;
    width: 160px;
    height: 60px;
    margin-top: 10px;
    background: url('/landing/img/playbutton.png') center / contain no-repeat;
    flex-shrink: 0;
}

.play-btn:hover { background-image: url('/landing/img/playbutton-hover.png'); }

/* ---- Marquee strip ---- */
.marquee {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    padding: 8px 40px;
    background: var(--bar-blue);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.marquee:hover { color: #ffcc00; }

/* ---- Hero (Ruffle SWF sahnesi) ---- */
.hero {
    position: relative;
    margin-top: -38px;
    height: 480px;
    overflow: hidden;
    background: var(--navy) url('/landing/img/hero-poster.jpg') center / cover no-repeat;
}

/* Dekoratif arka plan: SWF icindeki eski CP linklerine tiklanamasin */
.hero .swf-holder {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ---- White panel ---- */
.panel-wrap { padding: 0 16px 48px; margin-top: -56px; position: relative; z-index: 5; }

.panel {
    max-width: 940px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    padding: 28px 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
}

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

.panel h3 {
    color: var(--heading-blue);
    font-size: 17px;
    margin: 10px 0 6px;
}

.panel p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #333;
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    background: var(--button-blue);
    color: var(--button-text);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 15px;
    border-radius: 6px;
}

.btn:hover { filter: brightness(1.08); }

/* ---- Bilgi / SSS bolumu ---- */
.info-wrap { padding: 0 16px 48px; }

.info {
    max-width: 940px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    padding: 30px 28px;
}

.info h1 {
    color: var(--heading-blue);
    font-size: 24px;
    margin-bottom: 12px;
}

.info h2 {
    color: var(--heading-blue);
    font-size: 18px;
    margin: 26px 0 10px;
}

.info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.info details {
    border-top: 1px solid #e4e8f0;
    padding: 11px 2px;
}

.info details summary {
    cursor: pointer;
    font-size: 15px;
    color: var(--button-text);
    list-style: none;
}

.info details summary::-webkit-details-marker { display: none; }
.info details summary::before { content: '+ '; font-weight: 700; }
.info details[open] summary::before { content: '– '; }

.info details p {
    margin: 9px 0 4px;
    padding-left: 16px;
}

/* ---- Footer ---- */
footer {
    background: var(--footer-teal);
    padding: 34px 16px 26px;
    text-align: center;
}

footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.foot-links { margin-bottom: 16px; }

.foot-links a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    padding: 0 10px;
}

.foot-links a:hover { text-decoration: underline; }

.foot-actions { margin-bottom: 22px; }

.foot-actions .btn { margin: 0 5px; }

.disclaimer {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 720px) {
    .mainnav { display: none; }
    .hero { height: 320px; }
}
