@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&amp;display=swap');

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

:root {
    /* Sarı / altın vurgular */
    --cd-crimson: #1eb0c8;
    --cd-crimson-dark: #0d4a56;
    --cd-gold: #f4d03f;
    --cd-gold-light: #fff3c4;
    --cd-gold-glow: rgba(244, 208, 90, 0.35);
    /* Mavi + hafif yeşil (teal) ana renk */
    --cd-accent: #1eb0c8;
    --cd-accent-soft: rgba(30, 176, 200, 0.22);
    --cd-accent-deep: #061f28;
    /* Arka planlar (soğuk yeşil-mavi gölgeli koyu) */
    --cd-bg-dark: #040a0c;
    --cd-bg-section: #081418;
    --cd-text: #f4fbfd;
    --cd-text-muted: #b5d2dc;
}

body {
    font-family: "Philosopher", sans-serif;
    background-color: var(--cd-bg-dark);
    background-image:
        radial-gradient(ellipse 100% 60% at 50% -15%, rgba(30, 176, 200, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 45% at 100% 0%, rgba(244, 200, 90, 0.05), transparent 50%),
        radial-gradient(ellipse 80% 50% at 0% 100%, rgba(20, 120, 110, 0.06), transparent 55%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== SCROLL REVEAL ANÃ„Â°MASYONLARI ===== */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* FarklÃ„Â± animasyon tÃƒÂ¼rleri */
.reward-card.reveal-element,
.edition-card.reveal-element {
    transform: translateY(80px) scale(0.95);
}

.reward-card.revealed,
.edition-card.revealed {
    transform: translateY(0) scale(1);
}

.feature-card.reveal-element {
    transform: translateY(50px) rotateX(10deg);
    transform-origin: center bottom;
}

.feature-card.revealed {
    transform: translateY(0) rotateX(0);
}

.gallery-item.reveal-element {
    transform: scale(0.8);
    opacity: 0;
}

.gallery-item.revealed {
    transform: scale(1);
    opacity: 1;
}

.story-grid.reveal-element {
    transform: translateX(-60px);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-grid.revealed {
    transform: translateX(0);
    opacity: 1;
}

.section-title.reveal-element {
    transform: translateY(40px) scale(0.9);
}

.section-title.revealed {
    transform: translateY(0) scale(1);
}

.step-card.reveal-element {
    transform: translateY(40px);
}

.step-card.revealed {
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 210, 120, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 210, 120, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-img {
    height: 28px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border-radius: 4px;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 210, 100, 0.1);
}

.nav-link.active {
    color: #ffffff;
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 113%;
    left: 0;
    min-width: 220px;
    background: rgb(16 16 16 / 85%);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(30, 176, 200, 0.2);
    color: #fff;
}

.dropdown-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

/* Sadece metin (Ares / Gondor) alt menü öğeleri */
.dropdown-item.dropdown-item-text {
    font-size: 14px;
    padding: 10px 20px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.dropdown-header {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-evenly;
}

.header-btn {
    background: url(https://kayra2.com/docs/img/header-btn.png);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    width: 227px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background: url(https://kayra2.com/docs/img/header-btn_hover.png);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 12px;
}

.language-btn {
    background: rgba(30, 176, 200, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: "Philosopher", sans-serif;
}

.language-btn:hover {
    background: rgba(30, 176, 200, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgb(16 16 16 / 95%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: "Philosopher", sans-serif;
}

.lang-option:hover {
    background: rgba(30, 176, 200, 0.3);
    color: #fff;
}

.lang-option.active {
    background: rgba(30, 176, 200, 0.4);
    color: #fff;
    font-weight: 600;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-btn .flag-icon {
    width: 18px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

#currentLang {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

#currentLangCode {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-link .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-nav-link .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.open .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    color: #ffffff;
}

.mobile-dropdown-item-text:hover {
    background: rgba(30, 176, 200, 0.2);
}

.mobile-dropdown-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: block;
    width: 100%;
    background: var(--cd-crimson);
    color: #fff;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Intro Section - Video Arka Plan */
.intro-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 0px 0px 0px; */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1eb0c8;
}

.intro-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.intro-video-bg video,
.intro-video-bg .intro-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.intro-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgb(4 36 42 / 82%) 100%);
}

.intro-content {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 0 24px;
}

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

.intro-split.single {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.intro-split.single .intro-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 44px;
    margin-bottom: 26px;
}

.intro-split-left,
.intro-split-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.intro-split-left .intro-countdown,
.intro-split-right .intro-countdown {
    margin: 0;
}

.intro-split-left .intro-buttons,
.intro-split-right .intro-buttons {
    width: 100%;
    justify-content: center;
}

.intro-logo {
    max-width: 650px;
    width: 100%;
    height: auto;
    margin-bottom: -80px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Sol yeşil / sağ mavi — mavi biraz daha belirgin */
    filter: drop-shadow(-8px 0 12px rgba(40, 220, 140, 0.11))
            drop-shadow(-14px 0 20px rgba(0, 180, 100, 0.055))
            drop-shadow(10px 0 14px rgba(100, 210, 255, 0.22))
            drop-shadow(18px 0 22px rgba(0, 150, 255, 0.13))
            drop-shadow(0 6px 16px rgba(0, 0, 0, 0.38));
    transition: transform 0.3s ease, filter 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.intro-logo:hover {
    transform: scale(1.05) translateZ(0);
    filter: drop-shadow(-9px 0 15px rgba(50, 235, 150, 0.14))
            drop-shadow(-16px 0 24px rgba(0, 200, 110, 0.08))
            drop-shadow(11px 0 17px rgba(120, 220, 255, 0.28))
            drop-shadow(20px 0 26px rgba(0, 175, 255, 0.16))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.intro-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff4c4 0%, #4ec8dc 52%, #e8fbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Hero büyük sunucu butonları — metin parlaması (mini CTA ile aynı mantık; outline = Ares yeşil) */
@keyframes intro-glow-ares {
    0%, 100% {
        text-shadow:
            0 0 3px rgba(0, 0, 0, 0.95),
            0 0 14px rgba(55, 230, 150, 0.42),
            0 0 30px rgba(30, 190, 120, 0.28);
    }
    50% {
        text-shadow:
            0 0 3px rgba(0, 0, 0, 0.95),
            0 0 30px rgba(55, 230, 150, 0.95),
            0 0 56px rgba(30, 190, 120, 0.74);
    }
}

@keyframes intro-glow-gondor {
    0%, 100% {
        text-shadow:
            0 0 3px rgba(0, 0, 0, 0.9),
            0 0 14px rgba(100, 200, 255, 0.48),
            0 0 30px rgba(50, 150, 255, 0.32);
    }
    50% {
        text-shadow:
            0 0 3px rgba(0, 0, 0, 0.9),
            0 0 32px rgba(100, 200, 255, 1),
            0 0 58px rgba(50, 150, 255, 0.78);
    }
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: url(https://kayra2.com/docs/img/intro-btn.png) center / 100% 100% no-repeat;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    width: 386px;
    height: 114px;
    justify-content: center;
}

.intro-btn:not(.outline) {
    animation: intro-glow-gondor 2.2s ease-in-out infinite;
    animation-delay: 0.45s;
}

.intro-btn:hover {
    transform: scale(1.05) !important;
}

.intro-btn:not(.outline):hover {
    background-image: url(https://kayra2.com/docs/img/intro-btn_hover.png);
}

.intro-btn.outline {
    background: url(https://kayra2.com/docs/img/intro-btn2.png) center / 100% 100% no-repeat;
    color: #ffffff;
    animation: intro-glow-ares 2.2s ease-in-out infinite;
}

.intro-btn.outline:hover {
    background-image: url(https://kayra2.com/docs/img/intro-btn2_hover.png);
}

/* Mini CTA: button-mini.png + hover görseli (ölçek animasyonu yok) */
@keyframes intro-mini-glow-ares {
    0%, 100% {
        text-shadow:
            0 0 2px rgba(0, 0, 0, 0.95),
            0 0 10px rgba(55, 230, 150, 0.4),
            0 0 20px rgba(30, 190, 120, 0.25);
    }
    50% {
        text-shadow:
            0 0 2px rgba(0, 0, 0, 0.95),
            0 0 22px rgba(55, 230, 150, 0.95),
            0 0 42px rgba(30, 190, 120, 0.72);
    }
}

@keyframes intro-mini-glow-gondor {
    0%, 100% {
        text-shadow:
            0 0 2px rgba(0, 0, 0, 0.9),
            0 0 10px rgba(100, 200, 255, 0.45),
            0 0 22px rgba(50, 150, 255, 0.3);
    }
    50% {
        text-shadow:
            0 0 2px rgba(0, 0, 0, 0.9),
            0 0 24px rgba(100, 200, 255, 1),
            0 0 46px rgba(50, 150, 255, 0.78);
    }
}

.intro-btn-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: url(https://kayra2.com/docs/img/button-mini.png) center / 100% 100% no-repeat;
    color: #ffffff;
    animation: intro-mini-glow-ares 2.2s ease-in-out infinite;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    border-radius: 4px;
    width: 170px;
    height: 82px;
}

.intro-btn-mini:hover {
    background-image: url(https://kayra2.com/docs/img/button-mini_hover.png);
    transform: none;
}

.intro-btn-mini.outline {
    background-image: url(https://kayra2.com/docs/img/button-mini.png);
    color: #ffffff;
    animation: intro-mini-glow-gondor 2.2s ease-in-out infinite;
    animation-delay: 0.45s;
}

.intro-btn-mini.outline:hover {
    background-image: url(https://kayra2.com/docs/img/button-mini_hover.png);
    transform: none;
}

.intro-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-buttons .intro-btn {
    transition: all 0.3s ease-out;
    transform: translateX(0) !important;
}

.intro-buttons .intro-btn:first-child {
    transform: translateX(0) !important;
}

.intro-buttons .intro-btn:last-child {
    transform: translateX(0) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Game Section - Video BÃƒÂ¶lÃƒÂ¼mÃƒÂ¼ */
.game-section {
    min-height: 60vh;
    background: var(--cd-bg-section);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1eb0c8;
}

.game-section-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
}

.game-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.game-section-title span {
    color: #ffffff;
}

.game-section-desc {
    font-size: 18px;
    color: #ffffff;
    max-width: 600px;
}

/* Video Background */
.video-wrap {
    width: 100%;
    height: 80vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-area {
    position: relative;
    overflow: hidden;
    transition: all 0.15s ease-out;
    will-change: height, border-radius, box-shadow;
    /* GeniÃ…Å¸lik her zaman %100, sadece yÃƒÂ¼kseklik deÃ„Å¸iÃ…Å¸ecek */
    width: 100%;
    height: 50%;
    border-radius: 0;
    box-shadow: none;
}

/* Video Ã„Â°ÃƒÂ§indeki Overlay YazÃ„Â±lar */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 30%) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.video-overlay.hidden {
    opacity: 0;
}

.video-overlay-logo {
    max-width: 300px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.video-overlay-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.video-overlay-title span {
    color: #ffffff;
}

.video-overlay-subtitle {
    width: 800px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto 24px;
    background: url("https://kayra2.com/docs/img/parchment.png") center/contain no-repeat;
}

/* Paragraf alanı */
.video-overlay-subtitle p {
    width: 600px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    text-shadow: 1px 1px 2px #ffffff;
}

.video-overlay-hint {
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.video-overlay-hint .arrow {
    font-size: 20px;
}

/* Video AlanÃ„Â±nda OlduÃ„Å¸unu GÃƒÂ¶steren Ã„Â°ndikatÃƒÂ¶r */
.video-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 176, 200, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(30, 176, 200, 0.3);
}

.video-indicator.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.video-indicator .icon {
    font-size: 18px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Video BÃƒÂ¶lÃƒÂ¼mÃƒÂ¼ Ãƒâ€¡erÃƒÂ§evesi - KaldÃ„Â±rÃ„Â±ldÃ„Â± */

/* Scroll ipucu */
.escape-hint {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-wrap.active .escape-hint {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-poster.visible {
    opacity: 1;
}

/* Mobile Hero Image */
.hero-image-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    text-align: center;
    margin-top: 40px;
    z-index: 2;
}

.game-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.game-info h2 span {
    color: #ffffff;
}

.game-info p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-video,
    .hero-poster {
        display: none;
    }
    .hero-image-mobile {
        display: block;
    }
    .screen-area,
    .screen-area.compact {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    .intro-title {
        font-size: 40px;
    }
}

/* Section Styles */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-dark {
    background: var(--cd-bg-dark);
}

.section-darker {
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title h2 span {
    color: #ffffff;
}

.section-title p {
    font-size: 16px;
    color: #ffffff;
}

.section-img{
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-img img{
    max-width: 100%;
    border-radius: 15px;
    border: 1px solid #1eb0c8;
    transition: all 0.3s;
}

.section-img img:hover{
    box-shadow: 0 0 30px rgb(230 185 85 / 40%);
}

.section-img p {
    position: absolute;
    padding:30px 10px;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 600px;
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(180deg, #00000000 0%, #061f28 100%);
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #1eb0c8;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://kayra2.com/docs/img/section_img/bg-1.jpg') center / cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

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

/* Game Tabs */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.game-tab {
    background: url('https://kayra2.com/docs/img/game-tab.png');
    font-family: "Philosopher", sans-serif;
    width: 256px;
    height: 63px;
    color: #ffffff;
    text-shadow:0 0 10px #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: flex;
    gap: 12px;
    justify-content: space-evenly;
    align-items: center;
    text-decoration:none;
}

.game-tab:hover {
    background: url('https://kayra2.com/docs/img/game-tab_hover.png');
    color: #fff;
}

.game-tab.active {
    background: url('https://kayra2.com/docs/img/game-tab.png') center no-repeat;
    background-size: contain;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(30, 176, 200, 0.4);
    text-shadow:0 0 10px #ffffff;
}

.game-tab img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.rewards-content {
    display: none;
}

.rewards-content.active {
    display: block;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reward-card {
    background: linear-gradient(180deg, rgba(8, 24, 28, 0.85) 0%, rgba(4, 16, 20, 0.92) 100%);
    border: 1px solid rgba(30, 176, 200, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.reward-card:hover {
    border-color: var(--cd-crimson);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 176, 200, 0.2);
}

.reward-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reward-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.reward-desc {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.reward-game {
    display: inline-block;
    background: rgba(30, 176, 200, 0.2);
    color: #ffffff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 16px;
}

.features-section {
    background: #060e12;
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #1eb0c8;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://kayra2.com/docs/img/section_img/partners-bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(180deg, rgba(10, 22, 26, 0.92) 0%, rgba(4, 14, 18, 0.96) 100%);
    border: 1px solid rgba(30, 176, 200, 0.3);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cd-crimson), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--cd-crimson);
    box-shadow: 0 30px 60px rgb(230 185 85 / 30%), 0 0 100px rgb(230 185 85 / 10%);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-inner {
    padding: 20px;
    text-align: center;
    position: relative;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(30, 176, 200, 0.3) 0%, rgba(10, 72, 82, 0.5) 100%);
    border: 2px solid var(--cd-crimson);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    box-shadow: 0 10px 40px rgba(30, 176, 200, 0.3), inset 0 0 30px rgba(30, 176, 200, 0.2);
    transition: all 0.3s;
}

.feature-icon img{
    max-width:100%;
    border-radius:20px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(30, 176, 200, 0.5), inset 0 0 40px rgba(30, 176, 200, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(30, 176, 200, 0.3);
    border-radius: 24px;
    animation: featurePulse 2s infinite;
}

@keyframes featurePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.feature-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.feature-desc {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

.feature-stats .stat {
    background: rgba(30, 176, 200, 0.15);
    border: 1px solid rgba(30, 176, 200, 0.3);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    color: #ffffff;
}

.feature-card-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(30, 176, 200, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(360deg, black, #061f28);
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #1eb0c8;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://kayra2.com/docs/img/section_img/sancaktar-5.jpg) center / cover no-repeat;
    opacity: 0.10;
    z-index: 0;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    background:url('https://kayra2.com/docs/img/gallery-img-corner-left.png');
    width:51px;
    height:44px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    background:url('https://kayra2.com/docs/img/gallery-img-corner-right.png');
    width:51px;
    height:44px;
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

/* Pre-Register Section */
.preregister-section {
    background: linear-gradient(180deg, #0a1418 0%, #030608 100%);
    padding: 100px 24px;
    position: relative;
}

.preregister-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://kayra2.com/docs/img/section_img/onkayit.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.preregister-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.preregister-form {
    background: rgba(8, 20, 24, 0.92);
    border: 1px solid rgba(30, 176, 200, 0.3);
    border-radius: 16px;
    padding: 48px;
}

.preregister-form h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.preregister-form h2 span {
    color: #ffffff;
}

.preregister-form > p {
    color: #ffffff;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.form-group input,
.form-group select{
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s;
}

.form-group option{
    background: rgb(18 28 30);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cd-crimson);
    box-shadow: 0 0 20px rgba(30, 176, 200, 0.2);
}

.form-group input::placeholder {
    color: #ffffff;
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cd-crimson);
    cursor: pointer;
}

.form-group.checkbox-group label {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--cd-crimson), var(--cd-crimson-dark));
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 176, 200, 0.5);
}

.character-render {
    text-align: center;
    position: relative;
}

.character-render img {
    max-width: 100%;
    max-height: 750px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
}

.character-info {
    margin-top: 24px;
}

.character-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.character-info p {
    color: #ffffff;
    font-size: 14px;
}

@media (max-width: 768px) {
    .preregister-grid {
        grid-template-columns: 1fr;
    }
    .character-render {
        order: -1;
    }

    .game-tab {
        background: url(https://kayra2.com/docs/img/game-tab_hover.png) center no-repeat;
        background-size: contain;
        font-size: 13px;
    }
    
    .game-tab:hover {
        background: url(https://kayra2.com/docs/img/game-tab_hover.png) center no-repeat;
    }
    
    .game-tab.active {
        background: url(https://kayra2.com/docs/img/game-tab.png) center no-repeat;
        background-size: contain;
        box-shadow: none;
    }
    
    .game-tab img {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }
}

/* Footer */

/* Hafif hareketli doku hissi */
/* ===== Footer (Kurumsal + MMORPG) ===== */

/* Mevcut .game-footer'ı güçlendir (alpha değerleri 0-1 olmalı) */
.game-footer{
  position: relative;
  padding: 56px 0 24px;
  background:
  radial-gradient(circle at top, rgba(30,176,200,.14), transparent 62%),
  linear-gradient(180deg, #061f28, #050f14);
  border-top: 2px solid rgba(255,200,100,.30);
  overflow: hidden;
}

/* İnce “rune” çizgisi + üst glow */
.game-footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, rgba(255,207,122,.65), transparent); */
  opacity:.85;
}
.game-footer::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: 0;
  height: 372px;
  background: radial-gradient(circle at top, rgba(30, 176, 200, 0.16), transparent 100%);
  pointer-events:none;
}

/* Grid (Bootstrap'siz) */
.gf-grid{
  display:grid;
  grid-template-columns: 2.8fr minmax(220px, 0.9fr);
  gap: 28px;
  align-items:start;
}

@media (max-width: 1100px){
  .gf-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .gf-grid{ grid-template-columns: 1fr; }
}

/* Logo */
.footer-logo img{
  height: 48px;
  width: auto;
  display:block;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.6));
}

/* Açıklama + rozetler (senin mevcut sınıflarınla uyumlu) */
.game-footer-desc{
  margin: 14px 0 0;
  color:#ffffff;
  opacity:.92;
  font-size: 14.5px;
  line-height: 1.75;
}

.game-footer-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.gf-badge{
  font-size:12px;
  color:#ffffff;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(30, 176, 200, .10);
  border: 1px solid rgba(255,200,100,.25);
}

/* Kurumsal “trust” satırı */
.gf-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin-top:16px;
  color: #ffffff;
  font-size: 13px;
}
.gf-trust-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,200,100,.14);
}
.gf-trust-item i{ color:#ffffff; opacity:.95; }

/* Başlık + linkler */
.game-footer-title{
  font-size: 13px;
  letter-spacing: .9px;
  text-transform: uppercase;
  color:#ffffff;
  margin-bottom: 12px;
}

.game-footer-links{list-style:none;padding:0;margin:0;}
.game-footer-links li{ margin: 9px 0; }

.game-footer-links a{
  color:#ffffff;
  text-decoration:none;
  font-size:14px;
  transition: all .2s ease;
}
.game-footer-links a:hover{
  color:#fff;
  text-shadow: 0 0 12px rgba(255,255,255,.55);
}

/* Sağ panel (MMORPG panel ama kurumsal temiz) */
.game-footer-panel{
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,200,100,.18);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
  position: relative;
  overflow:hidden;
}

/* panelin üstünde çok hafif “ornament” çizgisi */
.game-footer-panel::before{
  content:"";
  position:absolute;
  left:-20%;
  right:-20%;
  top:0;
  height:3px;
  background: linear-gradient(90deg, transparent, rgba(30,176,200,.75), transparent);
  opacity:.55;
}

.gf-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 10px;
}

.gf-status{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-size:14px;
  white-space:nowrap;
}
.gf-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#2dd4b8;
  box-shadow: 0 0 18px rgba(45,212,184,.65);
}
.gf-status-text{ color:#fff; font-weight:700; }
.gf-status-meta{ opacity:.85; }

/* meta kutular */
.gf-meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 14px;
  margin-top: 12px;
}
@media (max-width: 991px){
  .gf-meta{ grid-template-columns: 1fr; }
}

.gf-meta-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(30,176,200,.08);
  border: 1px solid rgba(255,200,100,.18);
  color:#ffffff;
  font-size:13px;
}
.gf-meta-item b{ color:#fff; font-weight:800; }

/* panel divider */
.gf-panel-divider{
  height:1px;
  background: rgba(255,200,100,.14);
  margin: 14px 0;
}

/* sosyal ikonlar */
.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.footer-social a{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,200,100,.16);
  color:#ffffff;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.footer-social a:hover{
  transform: translateY(-2px);
  color:#fff;
  box-shadow: 0 12px 30px rgba(30,176,200,.22);
}

/* iletişim */
.gf-contact{ margin-top: 12px; }
.gf-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ffffff;
  font-size:14px;
  margin-top:10px;
}
.gf-contact-item i{ color:#ffffff; opacity:.95; }
.gf-contact-item a{ color:#ffffff; text-decoration:none; }
.gf-contact-item a:hover{ color:#fff; }

/* alt bar */
.gf-bottom{
  padding-top:18px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,200,100,.16);
}
.gf-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-text{
  margin:0;
  color: #ffffff;
  font-size: 13.5px;
}
.gf-mini-link{
  color:#ffffff;
  text-decoration:none;
  transition: all .2s ease;
}
.gf-mini-link:hover{
  color:#fff;
  text-shadow: 0 0 12px rgba(255,255,255,.45);
}
.gf-sep{ opacity:.5; margin: 0 8px; }



/* Story Sections - Sol/SaÃ„Å¸ dÃƒÂ¼zen */
.story-section {
    padding: 50px 24px;
    position: relative;
    background: linear-gradient(
        313deg, #061f28, #000000);
    border-bottom: 1px solid #1eb0c8;
}

.story-section:nth-child(even) {
    background: linear-gradient(45deg, #061f28, #000000);
}

/* section_img arka plan sırası: ödüller bg-1, her story +1 (data-section-bg ile) */
.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.story-section[data-section-bg="2"]::before {
    background-image: url('https://kayra2.com/docs/img/section_img/bg-2.jpg');
}

.story-section[data-section-bg="3"]::before {
    background-image: url('https://kayra2.com/docs/img/section_img/bg-3.jpg');
}

.story-section[data-section-bg="4"]::before {
    background-image: url('https://kayra2.com/docs/img/section_img/bg-4.jpg');
    opacity: 0.12;
}

.story-section[data-section-bg="5"]::before {
    background-image: url('https://kayra2.com/docs/img/section_img/bg-5.jpg');
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-section.reverse .story-grid {
    direction: rtl;
}

.story-section.reverse .story-grid > * {
    direction: ltr;
}

.story-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.story-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text h2 span {
    color: #ffffff;
}

.story-text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-text p span{
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .story-section.reverse .story-grid {
        direction: ltr;
    }
}

/* Notes Section */
.notes-section {
    background: var(--cd-bg-dark);
    padding: 60px 24px;
}

.notes-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.notes-list {
    list-style: none;
}

.notes-list li {
    font-size: 13px;
    color: #ffffff;
    padding: 8px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.notes-list li::before {
    content: 'Ã¢â‚¬Â¢';
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .rewards-grid,
    .editions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .rewards-grid,
    .editions-grid,
    .steps-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 32px;
    }
    .feature-title {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--cd-crimson);
    border-radius: 4px;
}

.intro-countdown {
  margin: 50px 0px;
  text-align: center;
  color: #ffffff;
}

.intro-countdown .cd-label {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.cd-time {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.cd-box {
  min-width: 70px;
  padding: 5px 8px;
  background: linear-gradient(180deg, rgb(30 176 200 / 60%), rgb(10 72 82 / 0%));
  border: 1px solid #1eb0c8;
  box-shadow: 0 0 18px rgb(30 176 200 / 25%);
}

.cd-box span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
}

/* Hero geri sayım: sol iki kutu (GÜN/SAAT) Ares yeşil, sağ iki kutu (DAKİKA/SANİYE) Gondor mavi — intro-btn-mini ile aynı nabız */
.intro-countdown .cd-time .cd-box:nth-child(1) span,
.intro-countdown .cd-time .cd-box:nth-child(1) small,
.intro-countdown .cd-time .cd-box:nth-child(2) span,
.intro-countdown .cd-time .cd-box:nth-child(2) small {
  animation: intro-mini-glow-ares 2.2s ease-in-out infinite;
}

.intro-countdown .cd-time .cd-box:nth-child(3) span,
.intro-countdown .cd-time .cd-box:nth-child(3) small,
.intro-countdown .cd-time .cd-box:nth-child(4) span,
.intro-countdown .cd-time .cd-box:nth-child(4) small {
  animation: intro-mini-glow-gondor 2.2s ease-in-out infinite;
  animation-delay: 0.45s;
}

.cd-box small {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
}

.rewards-section .section-title p{
    opacity:.9;
    max-width: 760px;
    margin: 10px auto 0;
}
.rewards-showcase{
    margin-top:28px;
    display:grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    gap:24px;
    align-items:stretch;
}
.rewards-panel{
    position:relative;
    border:1px solid rgba(255,255,255,.12);
    background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
    border-radius:18px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.rewards-panel:before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(1000px 220px at 20% 0%, rgba(30,176,200,.22), transparent 100%);
    pointer-events:none;
}
.rewards-shot{
    height:100%;
    min-height:320px;
    display:flex;
    flex-direction:column;
}
.rewards-shot .shot-media{
    position:relative;
    flex:1;
    min-height:320px;
}
.rewards-shot img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:saturate(1.05) contrast(1.02);
}
.rewards-shot .shot-fade{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, .75) 100%);
}
.rewards-shot .shot-caption{
    position:absolute;
    left:16px;
    bottom:14px;
    right:16px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
    font-size:13px;
    color:#ffffff;
    text-shadow:0 8px 24px rgba(0,0,0,.7);
}
.rewards-loot{
    padding:20px 20px 18px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.rewards-loot h3{
    margin:0;
    font-size:22px;
    letter-spacing:.2px;
    text-align: center;
}
.rewards-loot p{
    margin:0;
    opacity:.9;
    font-size:13px;
    line-height:1.45;
    text-align: center;
}
.rewards-loot .loot-subtitle{
    color: rgba(255,255,255,.82);
    margin-bottom: 6px;
}
.rewards-loot .loot-subtitle-promo{
    opacity: 1;
    margin: 12px 0 14px;
    padding: 14px 16px;
    font-size: clamp(15px, 2.4vw, 18px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #fff8e8;
    text-align: center;
    text-shadow:
        0 0 24px rgba(255, 200, 80, .45),
        0 2px 12px rgba(0, 0, 0, .85);
    border-radius: 12px;
    border: 1px solid rgba(255, 210, 120, .55);
    background: linear-gradient(
        135deg,
        rgba(255, 200, 90, .28) 0%,
        rgba(6, 36, 44, .92) 48%,
        rgba(30, 140, 155, .42) 100%
    );
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .4),
        0 12px 32px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}
.item-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:14px;
    margin-top:8px;
}
.item-slot{
    position:relative;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.16);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.35));
    display:grid;
    /* Sabit alt bant: uzun/kısa yazıda çizgiler ve ikonlar hizada kalır */
    grid-template-rows: 1fr 48px;
    justify-items:center;
    padding:12px 10px 0;
    height: 118px;
    overflow:hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.item-slot > img,
.item-slot > .item-carousel-viewport{
    align-self:center;
}
.item-slot:before{
    content:"";
    position:absolute;
    inset:-2px;
    background: radial-gradient(1000px 220px at 20% 0%, rgb(30 176 200 / 48%), #000000 100%);
    opacity:.65;
    pointer-events:none;
}
.item-slot:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,.14), transparent 55%);
    opacity:.35;
    pointer-events:none;
}
.item-slot img{
    width:32px;
    height:auto;
    max-height:64px;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
    z-index:1;
}
.item-slot.item-carousel .item-carousel-viewport{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    width: 100%;
}
.item-slot.item-carousel .item-carousel-img{
    transition: opacity 0.35s ease;
    display: block;
}
.item-slot .item-footer{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 5px 4px 6px;
    border-top: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.item-slot .item-footer.has-marquee{
    justify-content: flex-start;
}
.item-slot .item-footer.has-marquee .item-name{
    animation: item-name-marquee 14s ease-in-out infinite alternate;
}
@keyframes item-name-marquee{
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(var(--marquee-x, 0px), 0, 0); }
}
@media (prefers-reduced-motion: reduce){
    .item-slot .item-footer.has-marquee .item-name{
        animation: none;
        transform: translate3d(0, 0, 0);
    }
}
.item-slot .item-name{
    flex: 0 0 auto;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.2;
    color: #d8f4f8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    text-shadow:
        0 0 10px rgba(30, 176, 200, 0.22),
        0 0 1px rgba(244, 208, 90, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.78);
    padding: 0 6px;
}
.item-slot:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(0,0,0,.35);
    border-color: rgba(255,200,0,.35);
}

/* Icon-size aware slots (icons: 32x32 / 32x64 / 32x96) */
.s32x32,
.s32x64,
.s32x96{height:118px;}
.s32x32 img,
.s32x64 img,
.s32x96 img{max-height:64px;}

.rewards-cta{
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.rewards-cta .intro-btn-mini {
    font-size: 30px;
    text-transform: none;
    letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 992px){
    .rewards-showcase{grid-template-columns:1fr; }
    .rewards-shot .shot-media{min-height:260px;}
    .item-grid{grid-template-columns: repeat(3, 1fr);}
}
@media (max-width: 520px){
    .item-grid{grid-template-columns: repeat(2, 1fr);}
}

.lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.88);
    z-index:9999;
    padding:24px;
    backdrop-filter: blur(4px);
}

.lightbox.open{
    display:flex;
    animation: lightboxFade .25s ease;
}

@keyframes lightboxFade{
    from{opacity:0}
    to{opacity:1}
}

.lightbox-content{
    max-width:min(1100px,96vw);
    max-height:86vh;
    position:relative;
    border-radius:10px;
    overflow:hidden;
    box-shadow:
    0 0 40px rgba(30,176,200,.25),
    0 0 120px rgba(30,176,200,.15);
}

.lightbox-content img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#000;
}

/* Close button */
.lightbox-close{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    cursor:pointer;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:22px;
    line-height:42px;
    text-align:center;
    transition:.2s ease;
}

.lightbox-close:hover{
    background:rgba(30,176,200,.7);
    transform:scale(1.05);
}

.lightbox-close:focus{
    outline:2px solid rgba(255,255,255,.6);
}

/* Gallery items */
.gallery-item{
    cursor:default;
    position:relative;
}

.gallery-item img{
    pointer-events:auto;
    transition:.25s ease;
}

.gallery-item:hover img{
    transform:scale(1.03);
    filter:brightness(1.1);
}

@media (max-width: 768px){
    .hide-mobile{
        display:none !important;
    }
}

.mobile-only{display:none}
.desktop-only{display:block}

@media (max-width:768px){
    .section-img {
        display: none !important;
    }
    .mobile-only{display:block}
    .desktop-only{display:none}
}

/* ===== GAME SECTION MOBILE FIX ===== */
@media (max-width: 768px){

    .game-section{
        min-height:auto !important;
        height:auto !important;
        overflow:visible !important;
    }

    .game-section .hero-poster,
    .game-section img{
        transform:none !important;
        scale:1 !important;
        transition:none !important;
    }

    .game-section .hero-poster.mobile-static{
        width:100%;
        max-width:100%;
        height:auto;
    }
}

.floating-image-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  width: 250px;
  height: 220px;
  transform: translateY(-50%);
  z-index: 999;
  opacity: 1;

  /* Giriş + kontrollü titreşim */
  animation:
  floatBtnEnter 300ms ease-out forwards,
  bellCycle 5700ms linear 5s infinite;
}

/* Hover olunca tamamen dur */
.floating-image-btn:hover {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.03);
}

/* Görsel */
.floating-image-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* Giriş animasyonu */
@keyframes floatBtnEnter {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
}
to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
}

/*
  TOPLAM DÖNGÜ: 5.7s
  - %0–%12  → TİTREME (≈0.7s)
  - %12–%100 → TAM DURGUNLUK (≈5s)
*/
@keyframes bellCycle {
  0%   { transform: translateY(-50%) rotate(0deg); }
  2%   { transform: translateY(-50%) rotate(-8deg); }
  4%   { transform: translateY(-50%) rotate(8deg); }
  6%   { transform: translateY(-50%) rotate(-6deg); }
  8%   { transform: translateY(-50%) rotate(6deg); }
  10%  { transform: translateY(-50%) rotate(-3deg); }
  12%  { transform: translateY(-50%) rotate(0deg); }

  /* === 5 saniye TAM DURMA === */
  100% { transform: translateY(-50%) rotate(0deg); }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .floating-image-btn {
    animation: none !important;
    transform: translateY(-50%) !important;
}
}

/* Mobilde kapat */
@media (max-width: 768px) {
    .floating-image-btn {
        display: none;
    }
    
    .intro-logo {
        max-width: 90%;
        margin-bottom: 30px;
    }
    
    .intro-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-content {
        max-width: 100%;
    }
}

/* Scroll kilidi */
body.preloader-active{
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

#preloader{
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(2px);
    transition: opacity .3s ease, visibility .3s ease;
}

.preloader-logo{
    width: 120px;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

#preloader.hide{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.discord-widget {
    width: 392px;
    transition-property: left;
    transition-duration: 2s;
    -webkit-transition-property: left;
    -webkit-transition-duration: 2s;
    position: fixed;
    bottom: 0px;
    left: 10px;
    z-index: 999;
}

/* Discord Fixed Widget */
.discord-fixed {
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.discord-fixed a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.discord-fixed img {
    max-width: 295px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discord-fixed img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Mobil için Discord Widget */
@media (max-width: 768px) {
    .discord-fixed {
        bottom: 80px;
        left: 10px;
        right: auto;
    }
    
    .discord-fixed img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .discord-fixed {
        bottom: 70px;
        left: 5px;
    }
    
    .discord-fixed img {
        max-width: 160px;
    }
}

#game .hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;     /* görüntüyü kırpar ama ekranı doldurur */
  object-position: center;

  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* Popup Base */
.popup-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.72);
  z-index:99999;
  padding:24px;
}
.popup-overlay.is-open{ display:flex; }

.popup-modal{
  width: min(630px, 96vw);
  max-height:min(80vh, 720px);
  overflow:auto;
  background:rgba(15, 12, 10, .98);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding: 20px 20px;
  position:relative;
  box-shadow:0 20px 80px rgba(0,0,0,.6);
}

.popup-close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:28px;
  line-height:38px;
  cursor:pointer;
}

.popup-body{
    padding: 20px;
}

.popup-title{ margin:6px 0 6px; color:#fff; font-weight:800; }
.popup-desc{ margin:0 0 14px; color:#ffffff; }

.popup-form{ display:grid; gap:12px; }
.popup-label{ color:#ffffff; font-size:14px; display:grid; gap:6px; }

.popup-input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.popup-input:focus{ border-color:rgba(255,255,255,.35); }

.popup-submit{
  margin-top:6px;
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:none;
  background:linear-gradient(90deg, #1eb0c8, #f4c430);
  color:#111;
  font-weight:800;
  cursor:pointer;
}

/* Body scroll lock when popup open */
body.popup-lock{
  overflow:hidden !important;
  touch-action:none;
}
