/* ═══════════════════════════════════════════════════════
   ASTERIA2 – LANDING PAGE – Herakles Layout Clone
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #0a0806;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('../media/images/Yellow Black Sci-fi Right-Handed.cur'), auto;
}

/* Tüm elemanlarda custom cursor zorunlu */
*, *::before, *::after,
a, button, input, select, textarea, label,
[role="button"], [onclick], [tabindex] {
    cursor: url('../media/images/Yellow Black Sci-fi Right-Handed.cur'), auto !important;
}

::selection { background: #c9a227; color: #000; }

/* ═══════════════════════════════
   VIDEO / BG
═══════════════════════════════ */
.video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: #0a0806;
}
.video-bg video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.video-bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: none;
}

/* ═══════════════════════════════
   LOADING
═══════════════════════════════ */
.loading-screen {
    position: fixed; inset: 0; z-index: 99999;
    background: #0a0806;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo { max-width: 160px; margin-bottom: 28px; animation: pulse 2s ease-in-out infinite; }
.loading-bar-wrap { width: 200px; height: 3px; background: rgba(201,162,39,0.15); border-radius: 3px; overflow: hidden; }
.loading-bar { height: 100%; background: linear-gradient(90deg, #8b6914, #f0d060); animation: loadBar 2s ease forwards; }
@keyframes loadBar { 0%{width:0} 60%{width:70%} 100%{width:100%} }
@keyframes pulse {
    0%,100%{ filter: drop-shadow(0 0 30px rgba(201,162,39,0.5)); }
    50%{ filter: drop-shadow(0 0 60px rgba(201,162,39,0.8)); }
}



/* ═══════════════════════════════
   MAIN WRAPPER (above chars)
═══════════════════════════════ */
.page-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* ═══════════════════════════════
   HERO CENTER
═══════════════════════════════ */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px 30px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    animation: fadeUp 0.9s ease-out;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes textBreath {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.04); }
}

/* Logo – Herakles yazısının olduğu pozisyon */
.hero-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201,162,39,0.6)) drop-shadow(0 0 70px rgba(201,162,39,0.25));
    animation: logoPulse 4s ease-in-out infinite;
    margin-bottom: 10px;
}
@keyframes logoPulse {
    0%,100%{ filter: drop-shadow(0 0 30px rgba(201,162,39,0.6)) drop-shadow(0 0 70px rgba(201,162,39,0.25)); }
    50%    { filter: drop-shadow(0 0 55px rgba(201,162,39,0.85)) drop-shadow(0 0 100px rgba(201,162,39,0.4)); }
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-top: -30px;
    text-transform: uppercase;
    color: #f5d877;
    text-shadow:
        0 0 8px rgba(0,0,0,0.9),
        0 2px 4px rgba(0,0,0,0.95),
        0 0 25px rgba(201,162,39,0.7),
        0 0 50px rgba(201,162,39,0.35);
    margin-bottom: 6px;
    padding: 6px 24px;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    backdrop-filter: blur(4px);
    animation: fadeUp 0.9s ease-out 0.2s both, textBreath 3.5s ease-in-out 1.2s infinite;
}
.hero-date {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(0,0,0,0.95),
        0 2px 4px rgba(0,0,0,0.95),
        0 0 20px rgba(255,255,255,0.3);
    margin-bottom: 24px;
    padding: 6px 24px;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    backdrop-filter: blur(4px);
    animation: fadeUp 0.9s ease-out 0.35s both, textBreath 3.5s ease-in-out 1.5s infinite;
}

/* ═══════════════════════════════
   COUNTDOWN
═══════════════════════════════ */
.countdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease-out 0.5s both;
}
.cbox {
    width: 72px; height: 78px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(40,32,15,0.92), rgba(18,14,6,0.97));
    border: 1.5px solid rgba(201,162,39,0.4);
    box-shadow: 0 0 18px rgba(201,162,39,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cbox:hover { transform: translateY(-3px); box-shadow: 0 0 28px rgba(201,162,39,0.3); }
.cbox::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.7), transparent);
}
.cbox::after {
    content: '';
    position: absolute; top: 50%; left: 8%; right: 8%; height: 1px;
    background: rgba(201,162,39,0.12);
}
.cval {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem; font-weight: 800;
    color: #f0d060;
    text-shadow: 0 0 12px rgba(201,162,39,0.5);
    line-height: 1; z-index: 1;
}
.clbl {
    font-size: 0.52rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 4px; z-index: 1;
}
.csep {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem; font-weight: 700;
    color: rgba(201,162,39,0.5);
    align-self: flex-start; margin-top: 16px;
    animation: sepPulse 1s ease-in-out infinite;
}
@keyframes sepPulse { 0%,100%{opacity:0.45} 50%{opacity:1} }

/* ═══════════════════════════════
   HERO BUTTONS
═══════════════════════════════ */
.hero-btns {
    display: flex; flex-direction: column;
    gap: 12px; width: 100%; max-width: 320px;
    animation: fadeUp 0.9s ease-out 0.65s both;
}
.hbtn {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 36px;
    font-family: 'Cinzel', serif;
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
    overflow: hidden;
}
/* Shimmer sweep */
.hbtn::after {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}
.hbtn:hover::after { left: 100%; }

.hbtn-primary {
    background: linear-gradient(145deg, #c9a227 0%, #9a7510 50%, #c9a227 100%);
    background-size: 200% 200%;
    color: #0a0806;
    border: 1.5px solid #f0d060;
    box-shadow: 0 4px 20px rgba(201,162,39,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    animation: goldShimmer 3s ease-in-out infinite;
}
@keyframes goldShimmer { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.hbtn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(201,162,39,0.55);
    color: #0a0806;
}
.hbtn-secondary {
    background: rgba(10,8,6,0.55);
    color: #f0d060;
    border: 1.5px solid rgba(201,162,39,0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.hbtn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(201,162,39,0.1);
    border-color: #f0d060;
    box-shadow: 0 8px 28px rgba(201,162,39,0.25);
    color: #f0d060;
}
.hbtn:active { transform: translateY(0) scale(0.98); }

/* ═══════════════════════════════
   ANNOUNCEMENT SLIDER CARD
   (görseldeki koyu kart, ortada)
═══════════════════════════════ */
.announce-section {
    position: relative; z-index: 3;
    width: 100%; max-width: 720px;
    margin: 10px auto 0;
    padding: 0 20px 30px;
    animation: fadeUp 0.9s ease-out 0.8s both;
}
.announce-card {
    position: relative;
    background: linear-gradient(160deg, rgba(22,18,10,0.93), rgba(10,8,6,0.97));
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0,0,0,0.65), 0 0 30px rgba(201,162,39,0.1);
}
.announce-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

/* Slides */
.aslide { display: none; padding: 28px 50px; animation: slideIn 0.45s ease; }
.aslide.active { display: block; }
@keyframes slideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

.aslide-inner {
    display: flex; align-items: center; gap: 24px;
}
.aslide-media {
    width: 130px; height: 130px; border-radius: 10px;
    object-fit: cover; flex-shrink: 0;
    border: 1.5px solid rgba(201,162,39,0.3);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.aslide-body { flex: 1; text-align: left; }
.aslide-title {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem; font-weight: 700;
    color: #f0d060; margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(201,162,39,0.3);
}
.aslide-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.65);
    line-height: 1.6; margin-bottom: 14px;
}
.abtn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 24px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none;
    color: #0a0806;
    background: linear-gradient(135deg, #c9a227, #8b6914);
    border: 1px solid #f0d060;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 14px rgba(201,162,39,0.3);
}
.abtn:hover { transform: translateY(-2px); box-shadow: 0 5px 22px rgba(201,162,39,0.5); color: #0a0806; }

/* Arrows */
.aarrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50%; color: #f0d060;
    font-size: 0.8rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; backdrop-filter: blur(5px);
    z-index: 10;
}
.aarrow:hover { background: rgba(201,162,39,0.25); border-color: #f0d060; transform: translateY(-50%) scale(1.1); }
.aarrow.prev { left: 10px; }
.aarrow.next { right: 10px; }

/* Dots */
.adots {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; padding: 0 0 18px;
}
.adot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(201,162,39,0.2);
    border: 1px solid rgba(201,162,39,0.3);
    cursor: pointer; transition: all 0.3s ease;
}
.adot.active {
    background: #c9a227; border-color: #f0d060;
    box-shadow: 0 0 8px rgba(201,162,39,0.5);
    transform: scale(1.3);
}

/* ═══════════════════════════════
   SOCIAL MEDIA CARDS
═══════════════════════════════ */
.social-section {
    position: relative; z-index: 3;
    width: 100%; max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
    animation: fadeUp 0.9s ease-out 1s both;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.scard {
    position: relative;
    border-radius: 12px; overflow: hidden;
    cursor: pointer; text-decoration: none; display: block;
    aspect-ratio: 3/2.5;
    border: 2px solid rgba(255,255,255,0.12);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.4s ease;
}
.scard--ig { border-color: #c13584; box-shadow: 0 4px 20px rgba(193,53,132,0.25); background: rgba(193,53,132,0.18); }
.scard--dc { border-color: #5865F2; box-shadow: 0 4px 20px rgba(88,101,242,0.25); background: rgba(88,101,242,0.18); }
.scard--wa { border-color: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.25); background: rgba(37,211,102,0.15); }
.scard--ig:hover { box-shadow: 0 8px 32px rgba(193,53,132,0.45); }
.scard--dc:hover { box-shadow: 0 8px 32px rgba(88,101,242,0.45); }
.scard--wa:hover { box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.scard:hover { transform: translateY(-6px) scale(1.02); }

.scard-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    z-index: 0; transition: transform 0.5s ease;
}
.scard:hover .scard-bg { transform: scale(1.07); }

.scard-overlay { position: absolute; inset: 0; z-index: 1; background: none; }
.scard:hover .scard-overlay { background: none; }

.scard-badge {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    width: 42px; height: 42px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}
.scard:hover .scard-badge { transform: scale(1.12) rotate(-5deg); }
.scard--ig .scard-badge { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.scard--dc .scard-badge { background: #5865F2; }
.scard--wa .scard-badge { background: #25D366; }

.scard-foot {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 14px 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 100%);
    text-align: center;
}
.scard-name {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: #fff; margin-bottom: 3px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.scard-sub {
    font-size: 0.68rem; color: rgba(255,255,255,0.65); font-style: italic;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.landing-footer {
    position: relative; z-index: 3;
    width: 100%; text-align: center;
    padding: 40px 20px 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(5,4,3,0.92) 40%);
}
.footer-logo { max-width: 150px; margin-bottom: 22px; opacity: 0.85; filter: drop-shadow(0 0 16px rgba(201,162,39,0.25)); }
.footer-nav {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 22px;
}
.fnav {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 18px;
    font-family: 'Cinzel', serif;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; color: #d4b84a;
    background: rgba(201,162,39,0.06);
    border: 1px solid rgba(201,162,39,0.28);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.fnav:hover { background: rgba(201,162,39,0.14); border-color: #f0d060; transform: translateY(-2px); color: #f0d060; }
.footer-div {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    margin: 0 auto 16px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-credit { font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: #c9a227; text-decoration: none; font-weight: 600; }
.footer-credit a:hover { color: #f0d060; }

/* ═══════════════════════════════
   SERVER STATUS (top right)
═══════════════════════════════ */
.status-pill {
    position: fixed; top: 18px; right: 18px; z-index: 100;
    display: flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    background: rgba(10,8,6,0.78);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 40px; backdrop-filter: blur(10px);
}
.sdot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #c9a227; box-shadow: 0 0 7px rgba(201,162,39,0.7);
    animation: sdotPulse 2s ease-in-out infinite;
}
.sdot.live { background: #23a55a; box-shadow: 0 0 7px rgba(35,165,90,0.7); }
@keyframes sdotPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.stxt { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; text-transform: uppercase; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
    .char-left, .char-right { height: 75vh; }
}
@media (max-width: 900px) {
    .char-left, .char-right { display: none; }
    .hero-logo { max-width: 280px; }
}
@media (max-width: 640px) {
    .hero-center { padding: 30px 15px 20px; }
    .hero-logo { max-width: 220px; }
    .cbox { width: 58px; height: 66px; }
    .cval { font-size: 1.4rem; }
    .csep { font-size: 1.2rem; margin-top: 12px; }
    .clbl { font-size: 0.46rem; }
    .countdown { gap: 7px; }
    .hbtn { padding: 12px 24px; font-size: 0.78rem; }
    .hero-btns { max-width: 280px; }
    .aslide { padding: 22px 20px; }
    .aslide-inner { flex-direction: column; text-align: center; }
    .aslide-body { text-align: center; }
    .aslide-media { width: 100px; height: 100px; }
    .social-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .scard { aspect-ratio: 16/9; }
    .status-pill { top: 10px; right: 10px; padding: 5px 10px; }
}
@media (min-width: 641px) and (max-width: 900px) {
    .social-grid { max-width: 560px; margin: 0 auto; }
}
