/* =========================================================
   POSEDION2 PREMIUM SHOWCASE CSS v2.0
   Ultra Modern • Blur • Glass • Gradient Mavi-Kahve Tema
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #ececf2;
    background: #111827; /* siyah yerine çok koyu mavi-gri */
    overflow-x: hidden;
}

/* BACKGROUND VIDEO ------------------------------------------------- */
.bg-video {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

/* Video: daha az karartılmış, daha soft ve renkli */
.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* 🔹 Önceki: brightness(0.48) saturate(1.2) blur(4px) */
    filter: brightness(0.72) saturate(1.15) blur(2.5px);
}

/* Üst overlay – artık %85 siyah yerine daha soft mavi-kahve */
.bg-video .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(30, 35, 48, 0.55),   /* üst – mavi-gri soft */
        rgba(45, 35, 30, 0.45),   /* orta – kahve nötr */
        rgba(10, 15, 22, 0.60)    /* alt – hafif koyu */
    );
}

/* GLASS EFFECT ----------------------------------------------------- */
.glass {
    background: rgba(25, 30, 42, 0.45); /* öncesi 0.55 idi – şimdi daha şeffaf */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;

    box-shadow:
        0 0 22px rgba(0,0,0,0.40),
        inset 0 0 22px rgba(255,255,255,0.03);
}


/* ANIMATIONS ------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1.1s ease forwards;
}

.fade-down {
    opacity: 0;
    transform: translateY(-26px);
    animation: fadeDown 1.1s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER ----------------------------------------------------------- */
.header {
    width: 100%;
    padding: 25px 60px;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
    filter: drop-shadow(0 0 14px rgba(0,0,0,0.75));
}

.header-buttons {
    display: flex;
    gap: 18px;
}

/* BUTTONS ---------------------------------------------------------- */
.btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

/* Premium Kahve-Mavi degrade düğmeler */
.btn.download {
    background: linear-gradient(135deg, #cda57c, #8b6745);
    color: #111;
}

.btn.download:hover {
    filter: brightness(1.23);
    transform: translateY(-3px);
}

.btn.register,
.btn.main {
    background: linear-gradient(135deg, #6ca8ff, #477acc);
    color: white;
}

.btn.register:hover,
.btn.main:hover {
    transform: translateY(-3px);
    filter: brightness(1.22);
}

.btn.light {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(200,200,255,0.2);
    color: #d5ddff;
}

.btn.light:hover {
    background: rgba(255,255,255,0.22);
}

/* HERO ------------------------------------------------------------- */
.hero {
    height: 86vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-inner {
    padding: 60px 70px;
    max-width: 900px;
}

.hero .title {
    font-size: 64px;
    font-weight: 700;
    color: #eaf0ff;
    text-shadow: 0 0 14px rgba(72,120,255,0.45);
}

.hero .title span {
    background: linear-gradient(135deg, #d7b089, #f7dcc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: 20px;
    font-size: 20px;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 35px;
    gap: 18px;
    display: flex;
    justify-content: center;
}

/* FEATURES ---------------------------------------------------------- */
.features {
    padding: 80px 50px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 35px;
    color: #e9e9ff;
    text-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 25px;
    max-width: 1250px;
    margin: auto;
}

.feature-card {
    padding: 28px;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0,0,0,0.55);
}

.feature-card .icon {
    font-size: 45px;
    color: #d7c4ac;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.85;
}

/* SCREENSHOTS ------------------------------------------------------- */
.screenshots {
    padding: 80px 40px;
    text-align: center;
}

.screen-gallery {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.ss {
    width: 340px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.3s ease;
    box-shadow: 0 0 18px rgba(0,0,0,0.55);
}

.ss:hover {
    transform: scale(1.06);
}

/* SOCIAL ------------------------------------------------------------ */
.social {
    padding: 80px 40px;
    text-align: center;
}

.social-list {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* YAZI DÜZENLEME */
    font-size: 16px;
    font-weight: 600;
    color: #f2f4ff;
    letter-spacing: 0.4px;
    text-shadow: 0 0 8px rgba(0,0,0,0.35);

    text-decoration: none;       /* ← ALT ÇİZGİ KALDIRILDI */
    outline: none;               /* ← Fokus çerçeve temiz */
    cursor: pointer;
    
    transition: 0.25s ease;
}

.showcase-card.map .image {
    width: 100%;
    height: 190px;         /* İstersen 180px yapabilirsin */
    overflow: hidden;
}

.showcase-card.map .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Resmi bozmadan keser */
    border-radius: 5px;
}

.map-image-1 {
    background-image: url("assets/Athenora2/images/mavi.html");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 260px; /* İstersen artırabilirsin */
    border-radius: 14px;
    padding: 20px;
    color: #fff; /* Yazılar görünür olsun diye */
}

.social-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.20);
    box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* İKONLAR */
.social-btn img {
    height: 26px;
    width: 26px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.4));
}

/* FOOTER ------------------------------------------------------------ */
.footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    opacity: 0.75;
}

/* TAB PANEL – FULL TANITIM ----------------------------------------- */
.tanitim-section {
    padding: 100px 40px;
    margin-top: 30px;
}

.section-desc {
    max-width: 900px;
    text-align: center;
    opacity: 0.85;
    margin: auto;
    margin-bottom: 45px;
}

/* Tabs */
.tanitim-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tab {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.25s;
}

.tab:hover {
    background: rgba(255,255,255,0.10);
}

.tab.active {
    background: linear-gradient(135deg,#6ea9ff,#467ccf);
    color: white;
    border: none;
}

/* Content Panels */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* SYSTEM GRID */
.system-grid,
.zindan-list,
.item-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.system-box,
.zindan-box,
.item-box,
.video-box {
    padding: 26px;
    transition: 0.25s ease;
}

.system-box:hover,
.zindan-box:hover,
.item-box:hover {
    transform: translateY(-5px);
}

/* QUEST / DROP BOX */
.quest-box,
.drop-box,
.map-list {
    padding: 30px;
    max-width: 950px;
    margin: auto;
}

/* ===========================================================
   PREMIUM SHOWCASE CARDS
=========================================================== */

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: auto;
}

.showcase-card {
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    cursor: default;
    transition: 0.25s ease;
    background: rgba(25,30,40,0.45);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 22px rgba(0,0,0,0.45);
}

/* Hover Glow */
.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(90,140,255,0.55);
}

/* Icons */
.showcase-card .icon {
    font-size: 42px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Titles */
.showcase-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f3f3ff;
}

/* Text */
.showcase-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}



/* CATEGORY COLOR GLOWS -------------------------------------- */

/* Sistemler – Altın Glow */
.showcase-card.system:hover {
    box-shadow: 0 0 28px rgba(218,180,120,0.55);
}

/* Zindanlar – Kırmızı Glow */
.showcase-card.dungeon:hover {
    box-shadow: 0 0 28px rgba(255,100,100,0.55);
}

/* Haritalar – Mavi Glow */
.showcase-card.map:hover {
    box-shadow: 0 0 28px rgba(110,180,255,0.55);
}

/* Eşyalar – Mor Glow */
.showcase-card.item:hover {
    box-shadow: 0 0 28px rgba(180,120,255,0.55);
}

/* Görevler – Sarı Glow */
.showcase-card.quest:hover {
    box-shadow: 0 0 28px rgba(255,210,80,0.55);
}

/* Droplar – Turkuaz Glow */
.showcase-card.drop:hover {
    box-shadow: 0 0 28px rgba(100,240,220,0.55);
}

/* Videolar – Pembe Glow */
.showcase-card.video:hover {
    box-shadow: 0 0 28px rgba(255,140,220,0.55);
}



/* VIDEO FRAME */
.video-wrapper {
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 22px rgba(0,0,0,0.55);
}

.video-wrapper iframe {
    width: 100%;
    height: 230px;
    border: none;
}

/* --- TAB BLOKU --- */
.tanitim-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    margin-top: 20px;
}

/* --- TAB BUTONLARI --- */
.tanitim-tabs .tab {
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;

    color: #e4ecff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);

    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Hover efekti – Mavi-Kahve Glow */
.tanitim-tabs .tab:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow:
        0 0 12px rgba(108,168,255,0.35),
        0 0 16px rgba(202,165,125,0.25);
    border-color: rgba(255,255,255,0.32);
}

/* Aktif buton – Premium Gradient Border + Glow */
.tanitim-tabs .tab.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 2px solid transparent;
    background-image:
        linear-gradient(#1a1f29, #1a1f29),
        linear-gradient(135deg, #6ca8ff, #caa57d);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    box-shadow:
        0 0 18px rgba(108,168,255,0.45),
        0 0 20px rgba(202,165,125,0.35);
}

/* Hafif animasyon */
.tanitim-tabs .tab {
    animation: fadeTabs 0.5s ease forwards;
}

@keyframes fadeTabs {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Varsayılan gizli */
.tab-pane {
    display: none;
    opacity: 0;
}

/* Açık olan panel */
.tab-pane.active {
    display: block;
    opacity: 1;
}

/* YENİ — Daha sakin, Premium Hover Animasyonu */
.feature-card:hover {
    border: 1px solid rgba(214,176,138,0.45);
    box-shadow:
        0 0 12px rgba(214,176,138,0.18),
        0 4px 22px rgba(108,168,255,0.12);
    transform: translateY(-2px); /* önceki -6px yerine çok daha zarif */
}

/* Orb glow daha yumuşak */
.feature-card:hover::before {
    opacity: 0.65; /* önceki 1 yerine daha pastel */
    transform: scale(1.05);
}

/* Light sweep çok daha yavaş & hafif */
.feature-card::after {
    transition: 0.85s ease;
    background: linear-gradient(
        115deg,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );
}

.feature-card:hover::after {
    left: 160%; /* daha yumuşak hareket */
}

/* Icon hover daha küçük & kontrollü */
.feature-card:hover .icon {
    transform: scale(1.04);
    text-shadow: 0 0 10px rgba(255,255,255,0.25);
}

/* LOGO – Ultra Premium Lightning Flash */
.logo {
    height: 120px;
    animation: lightningStrike 7s infinite;
    transform-origin: center;
}

/* Ana şimşek animasyonu */
@keyframes lightningStrike {
    0% {
        filter: brightness(1)
                drop-shadow(0 0 6px rgba(255,255,255,0.15));
        transform: scale(1) rotate(0deg);
    }

    /* ANA ŞİMŞEK PATLAMASI — güçlü parlama */
    4% {
        filter: brightness(2.8)
                drop-shadow(0 0 40px rgba(110,150,255,0.9))
                drop-shadow(0 0 90px rgba(255,210,140,0.85))
                drop-shadow(0 0 150px rgba(90,140,255,0.75));
        transform: scale(1.05) rotate(0.6deg);
    }

    /* ELEKTRİK ÇATIRTI – mikro titreşim */
    5% {
        filter: brightness(1.9)
                drop-shadow(0 0 22px rgba(120,160,255,0.8))
                drop-shadow(0 0 55px rgba(255,210,160,0.55));
        transform: scale(1.03) rotate(-0.4deg);
    }

    /* İKİNCİ ÇAKMA — kısa parlama */
    6% {
        filter: brightness(2.4)
                drop-shadow(0 0 30px rgba(125,170,255,0.85))
                drop-shadow(0 0 75px rgba(255,220,170,0.6));
        transform: scale(1.045) rotate(0.3deg);
    }

    /* SON ÇITIRTI — zayıflayan elektrik */
    7% {
        filter: brightness(1.5)
                drop-shadow(0 0 12px rgba(140,180,255,0.55));
        transform: scale(1.01) rotate(-0.2deg);
    }

    /* Efekt kapanışı */
    9% {
        filter: brightness(1.15)
                drop-shadow(0 0 7px rgba(255,255,255,0.25));
        transform: scale(1) rotate(0deg);
    }

    /* Döngü arası (normal görünüm) */
    100% {
        filter: brightness(1)
                drop-shadow(0 0 6px rgba(255,255,255,0.15));
        transform: scale(1);
    }
}

/* Header buttons wrapper */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Default navigation button (Anasayfa, Kayıt Ol) */
.nav-btn {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #e8eeff;
    text-decoration: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* İndir – premium kahve degrade */
.nav-btn.download {
    background: linear-gradient(135deg, #caa57d, #8d6844);
    color: #111;
    font-weight: 600;
    border: none;
}

.nav-btn.download:hover {
    filter: brightness(1.18);
    transform: translateY(-3px);
}

/* Discord – premium mavi */
.nav-btn.discord {
    background: linear-gradient(135deg, #6ca8ff, #477acc);
    font-weight: 600;
    color: #fff;
    border: none;
}

.nav-btn.discord:hover {
    filter: brightness(1.22);
    transform: translateY(-3px);
}

/* Responsive fix */
@media (max-width: 768px) {
    .header-buttons {
        gap: 10px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .logo {
        height: 90px;
    }
}



/* FOOTER ------------------------------------------------------------ */
.footer {
    width: 100%;
    padding: 18px 30px;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.85;
}

/* Wrapper: yazı ortada — logo sağda */
.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

/* Ortada yazı */
.footer-center {
    text-align: center;
    font-size: 14px;
}

/* Sağdaki logo */
.footer-logo {
    height: 42px;
    opacity: 0.9;
    justify-self: end;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.6));
    transition: 0.25s ease;
}

/* Hover büyüme */
.footer-logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

/* ===========================================================
   ★ YILDIRIM / ŞİMŞEK ANİMASYONU (HEADER ile birebir aynı)
   =========================================================== */

.lightning-logo {
    position: relative;
}

/* Yıldırım parlaması */
.lightning-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.2) 40%,
        transparent 70%
    );
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
    animation: lightningFlash 6s infinite;
}

/* Flash Animasyonu */
@keyframes lightningFlash {
    0%, 100% { opacity: 0; }
    4% { opacity: 0.8; transform: scale(1.05); }
    5% { opacity: 0; }
    7% { opacity: 0.5; transform: scale(0.97); }
    8% { opacity: 0; }
    13% { opacity: 0.6; transform: scale(1.03); }
    14% { opacity: 0; }
}

/* LEVEL TABLE CONTAINER */
.level-table {
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(20,22,30,0.45);
    backdrop-filter: blur(12px);
}

/* YATAY SATIR */
.level-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 25px;
}

/* son satır çizgi kaldır */
.level-row:last-child {
    border-bottom: none;
}

/* Level */
.level-row .lv {
    font-size: 17px;
    font-weight: 700;
    color: #ffdfb3;
    width: 70px;
    flex-shrink: 0;
}

/* Görev */
.level-row .task {
    flex: 1;
    color: #eaefff;
    font-weight: 500;
    line-height: 1.4;
}

/* Ödül */
.level-row .reward {
    width: 260px;
    text-align: right;
    color: #bcd2ff;
    font-weight: 500;
    line-height: 1.4;
    flex-shrink: 0;
}

/* Hover efekti */
.level-row:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: 0.2s;
}

/* MOBİL DÜZEN */
@media (max-width: 768px) {
    .level-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .level-row .reward {
        text-align: left;
        width: 100%;
    }
}

/* ============================
   HARİTALAR SLIDER – PREMIUM
=============================== */

.harita-slider-container {
    width: 100%;
    margin-top: 60px;
    text-align: center;
}

.harita-nav {
    margin-bottom: 25px;
}

.harita-nav .dot {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #d5ddff;
    transition: 0.25s;
}

.harita-nav .dot.active {
    background: linear-gradient(135deg,#6daaff,#cfa77d);
    color: #fff;
    box-shadow: 0 0 15px rgba(109,170,255,0.4);
}

/* SLIDER YAPISI */
.harita-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 26px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: 0.25s;
}

.arrow:hover {
    background: rgba(255,255,255,0.16);
}

.arrow.left { left: 40px; }
.arrow.right { right: 40px; }

/* SLAYT */
.harita-slider {
    width: 100%;
    max-width: 900px;
}

.harita-slide {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.harita-slide.active {
    display: flex;
    animation: fadeIn 0.6s ease;
}

/* DIAMOND (baklava formu) */
.diamond {
    width: 310px;
    height: 310px;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.diamond img {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    object-fit: cover;
    transform: rotate(-45deg);
}


/* SAĞ TARAF BİLGİ PANELİ */
.harita-info {
    max-width: 320px;
    padding: 22px 28px;
    text-align: left;
}

.harita-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.harita-info p {
    opacity: 0.9;
    font-size: 15px;
}

.harita-desc2 {
    max-width: 700px;
    margin: 0 auto 35px auto;
    padding: 14px 22px;

    /* Kenarlarda çizgi */
    border-left: 3px solid #6ca8ff;
    border-right: 3px solid #6ca8ff;

    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #d7e1ff;

    background: rgba(255,255,255,0.05);
    border-radius: 8px;

    backdrop-filter: blur(6px);
}

.harita-gradient {
    max-width: 700px;
    margin: 0 auto 35px auto;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Başlık */
.level-section-title {
    margin: 50px auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.level-section-title h2 {
    font-family: "Cinzel", serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0px 0px 8px rgba(255,255,255,0.35);
}

.level-section-title .line {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    position: relative;
}

.level-section-title .line::after {
    content: "◇";
    position: absolute;
    top: -14px;
    right: -12px;
    font-size: 18px;
    color: #caa57d;
}

/* Açıklama paragrafı */
.level-desc {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 45px auto;
    color: #dfdfdf;
    font-size: 15px;
    line-height: 26px;
    opacity: 0.9;
}

/* Timeline – Level Steps */
.level-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    max-width: 1000px;
    padding: 25px 0;
    border-top: 2px solid rgba(255,255,255,0.1);
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.level-timeline .step {
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.level-timeline .step p {
    margin-top: 12px;
    font-size: 15px;
    color: #fff;
    opacity: 0.7;
}

.level-timeline .step .dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    display: inline-block;
    transition: 0.3s;
}

/* Aktif step */
.level-timeline .step.active .dot {
    background: #6ca8ff;
    box-shadow: 0 0 10px #6ca8ff;
}

.level-timeline .step.active p {
    opacity: 1;
    font-weight: 600;
}

/* Alt açıklama */
.level-info {
    margin: 20px auto 60px auto;
    max-width: 700px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: #dfe6ff;
    border-left: 3px solid #6ca8ff;
    border-right: 3px solid #6ca8ff;
    line-height: 27px;
}

/* PET SİSTEMİ GENEL */
.pet-system {
    padding: 60px 40px;
    text-align: center;
}

.pet-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 1px;
}

/* LAYOUT */
.pet-layout {
    display: grid;
    grid-template-columns: 220px 1fr 380px;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

/* SOL EVRİM PETLER */
.pet-evolution-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pet-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    padding: 6px;
    transition: 0.25s;
    cursor: pointer;
}

.pet-circle:hover {
    transform: scale(1.05);
    border-color: #6ca8ff;
}

.pet-circle.active {
    border: 3px solid #caa57d;
    box-shadow: 0 0 20px rgba(202,165,125,0.7);
    transform: scale(1.1);
}

/* ORTA BÜYÜK PET */
.pet-main {
    display: flex;
    justify-content: center;
}

.pet-big {
    max-width: 540px;
    filter: drop-shadow(0 0 26px rgba(0,0,0,0.6));
}

/* SAĞ METİN */
.pet-info {
    padding: 30px;
    text-align: left;
}

.pet-info h3 {
    font-size: 32px;
    color: #8fe3d9;
    margin-bottom: 16px;
}

.pet-info p {
    font-size: 16px;
    color: #d8e7ff;
    line-height: 28px;
}

.pet-info ul {
    margin-top: 10px;
    padding-left: 20px;
}

.pet-info ul li {
    font-size: 15px;
    line-height: 26px;
    color: #e5eaff;
    margin-bottom: 10px;
}

/* ALT BİLGİ */
.pet-bottom-text {
    margin-top: 50px;
    max-width: 900px;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #e2e7ff;
    margin-left: auto;
    margin-right: auto;
}

/* PET ZİKZAG POZİSYON */
.zigzag-list {
    position: relative;
    width: 220px; /* geniş alan */
    height: 700px; /* yüksek alan */
}

/* Ortak PET daire yapısı */
.zigzag-list .pet-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 6px;
    background: rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.15);
    transition: .25s ease;
    cursor: pointer;
}

/* Hover */
.zigzag-list .pet-circle:hover {
    transform: scale(1.05);
}

/* Active */
.zigzag-list .pet-circle.active {
    border-color: #caa57d;
    box-shadow: 0 0 18px rgba(202,165,125,.7);
    transform: scale(1.1);
}

/* --- GERÇEK FOTOĞRAFTAN ALINAN 1-1 POZİSYONLAR --- */

/* 1 - ÜSTTEKİ */
.pet-pos-1 { 
    top: 0px; 
    left: 55px;     /* tam sağa yakın */
}

/* 2 - Hemen altında solda */
.pet-pos-2 { 
    top: 150px; 
    left: 10px;     /* net sola çekik */
}

/* 3 - Daha aşağı sola yakın */
.pet-pos-3 { 
    top: 300px; 
    left: 70px;     /* biraz sağa kayık */
}

/* 4 - Daha da aşağı tamamen sağda */
.pet-pos-4 { 
    top: 450px; 
    left: 110px;    /* sağdaki daire */
}

/* 5 - En alttaki hafif solda */
.pet-pos-5 { 
    top: 600px; 
    left: 40px;
}

/* ===================================================== */
/* VİDEOLAR – ORİJİNAL GÖRSELİN 1:1 UYUMLU  */
/* ===================================================== */

.video-dual {
    position: relative;
    width: 100%;
    padding: 120px 0;
    overflow: hidden;
}

/* Arka Plan Blur + Koyuluk */
.video-bg-blur {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);
    z-index: 1;
}

/* İç Alan */
.video-dual-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 120px;
}

/* Sol & Sağ Panel */
.video-side {
    width: 50%;
    text-align: center;
    padding: 0 30px;
    color: #f5e1d6;
}

/* Başlık */
.video-side h2 {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #e3c0b5;
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

/* Açıklama Metni */
.video-side p {
    font-size: 17px;
    line-height: 28px;
    max-width: 420px;
    margin: 0 auto 40px auto;
    color: #eaeaea;
    opacity: 0.95;
}

/* Video */
.video-frame {
    width: 80%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.55);
}

.video-frame iframe {
    width: 100%;
    height: 360px;
    border: none;
}

/* --- BLOK GENELİ --- */
.transform-block {
    margin-bottom: 60px;
    text-align: center;
}

.transform-block h3 {
    font-size: 32px;
    color: #e5d4be;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 12px rgba(0,0,0,0.6);
}

/* --- SLOT SATIRLARI --- */
.slot-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

/* --- SLOTLAR (bir tık küçültüldü) --- */
.slot-3 .slot { width: 135px; height: 135px; }
.slot-4 .slot { width: 135px; height: 135px; }
.slot-5 .slot { width: 125px; height: 125px; }

/* --- SLOT TASARIMI --- */
.slot {
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    padding: 7px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .25s;
    cursor: pointer;
}

/* Hover efekti */
.slot:hover {
    transform: scale(1.08);
    border-color: #caa57d;
    box-shadow: 0 0 22px rgba(202,165,125,0.50);
}

/* İç görsel */
.slot img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    pointer-events: none;
}

/* Başlık daha premium görünüm */
.fancy-title h2 {
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
    font-size: 32px;
}

/* Alt açıklama modern */
.modern-desc {
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 17px;
    text-align: center;
    color: #dce6ff;
    opacity: 0.9;
}

/* GRID */
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    padding: 10px 20px;
}

/* KART TASARIMI */
.system-card {
    padding: 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

/* Hover premium efekti */
.system-card:hover {
    transform: translateY(-6px);
    border-color: #caa57d;
    box-shadow: 0 0 25px rgba(202,165,125,0.35);
}

/* Icon görünümü */
.sys-icon {
    font-size: 38px;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(255,255,255,0.25);
    color: #fff;
}

/* Başlık */
.system-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f8f4ff;
}

/* Açıklama */
.system-card p {
    font-size: 15px;
    color: #cdd7f7;
    opacity: .85;
}
