/* Mobil menü - normalde sakin */
.navmenu {
    z-index: 1;
}

/* Menü AÇIKKEN tam ekran */
body.mobile-nav-active .navmenu {
	backdrop-filter: blur(10px);
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
}

/* Menü açıkken scroll kilidi */
body.mobile-nav-active {
    overflow: hidden;
}

/* Hamburger her zaman tıklanabilir */
.mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

/* Arka planı pasifleştir */
body.mobile-nav-active .hero,
body.mobile-nav-active .hero-title {
    pointer-events: none;
    opacity: 0.15;
}

/* === GENEL ZEMIN === */
html, body {
    margin: 0;
    font-family: "roboto", sans-serif;
    background: linear-gradient(135deg, #0b0b0b, #121212);
    color: #eaeaea;
}

/* === GENEL YAZILAR === */
p, span, li {
    color: #ddd;
}

/* === BAŞLIKLAR / LOGO === */
h1, h2, .sitename {
    color: #ff6a00;
    letter-spacing: 1px;
    text-shadow:
        0 0 10px rgba(255,106,0,0.6),
        0 0 20px rgba(255,80,0,0.4),
        0 0 40px rgba(255,60,0,0.2);
}


/* LOGO ALEV PARLAMA */
.sitename {
    animation: flameGlow 2.5s ease-in-out infinite alternate;
}

@keyframes flameGlow {
    from {
        text-shadow:
            0 0 10px rgba(255,106,0,0.6),
            0 0 20px rgba(255,60,0,0.4);
    }
    to {
        text-shadow:
            0 0 20px rgba(255,140,0,0.9),
            0 0 40px rgba(255,60,0,0.6);
    }
}

/* === HEADER / NAVBAR === */
header,
.topbar,
.branding,
.navbar {
    background: #000 !important;
    position: relative;
}

/* HEADER ALT ALEV ÇİZGİ */
header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6a00, #ff3c00, transparent);
    box-shadow: 0 0 20px rgba(255,106,0,0.8);
}

/* AKTİF MENÜ */
.navmenu a.active {
    color: #ff6a00 !important;
    position: relative;
}

.navmenu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    box-shadow: 0 0 10px rgba(255,106,0,0.8);
}

/* === BOOTSTRAP BEYAZLIK TEMİZLEME === */
section,
.container,
.container-fluid,
.row {
    background: transparent !important;
}

/* === KARTLAR / SERVİSLER === */
.card,
.service-item,
.box,
.alert,
.alert-box {
    background: rgba(17,17,17,0.75) !important;
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255,106,0,0.15);
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 30px rgba(0,0,0,0.6),
        inset 0 0 20px rgba(255,106,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* KART HOVER */
.card:hover,
.service-item:hover,
.box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 0 40px rgba(255,106,0,0.35),
        0 0 80px rgba(255,60,0,0.15);
}

/* === FORM / BUTON === */
.tombol-simpan {
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    padding: 8px 16px;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tombol-simpan:hover {
    background: linear-gradient(135deg, #ff3c00, #ff6a00);
    box-shadow: 0 0 10px rgba(255,106,0,0.6);
}

/* === TABLO === */
table tr td,
table tr th {
    padding: 12px;
    text-align: center;
}

.data {
    width: 100%;
    border-collapse: collapse;
    background: #0e0e0e;
    color: #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.data tr th {
    background: #1a1a1a;
    color: #ff6a00;
    border: 1px solid #222;
}

.data tr td {
    border: 1px solid #222;
}

.data tr:hover td {
    background: #161616;
}

/* === STATS === */
.stats h3,
.stats .number {
    font-size: 2.5rem;
    color: #00c6ff;
    text-shadow: 0 0 15px rgba(0,198,255,0.6);
}

/* === 🔥 FLAME BACKGROUND === */
#flame-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(8px) contrast(120%);
    background:
        radial-gradient(circle at 50% 120%, rgba(255,106,0,0.45), transparent 60%),
        radial-gradient(circle at 20% 110%, rgba(255,60,0,0.35), transparent 55%),
        radial-gradient(circle at 80% 115%, rgba(255,140,0,0.35), transparent 55%),
        linear-gradient(180deg, #000 0%, #050200 40%, #120600 70%, #000 100%);
    animation: flameMove 6s ease-in-out infinite;
}

/* ATEŞ HAREKETİ */
@keyframes flameMove {
    0% {
        background-position: 50% 120%, 20% 110%, 80% 115%, 0 0;
    }
    50% {
        background-position: 52% 118%, 22% 112%, 78% 113%, 0 0;
    }
    100% {
        background-position: 50% 120%, 20% 110%, 80% 115%, 0 0;
    }
}

/* İÇERİĞİ ATEŞİN ÜSTÜNE AL */
header,
main,
footer {
    position: relative;
    z-index: 2;
}
.hero-title {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6a00;
    text-shadow:
        0 0 20px rgba(255,106,0,0.6),
        0 0 40px rgba(255,60,0,0.4);
}
/* ===== HERO FIX ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    max-width: 1200px;
}

/* ===== SYSTEM NOTICE ===== */
.alert-box-clean {
    background: rgba(0,0,0,0.55);
    border-radius: 14px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

.alert-title {
    color: #ff6a00;
    font-weight: 700;
    margin-bottom: 15px;
}

.alert-text {
    color: #ddd;
    line-height: 1.6;
}

/* ===== STATUS CARDS ===== */
.status-card {
    background: rgba(0,0,0,0.55);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(255,106,0,0.4);
}

.status-card i {
    font-size: 28px;
    color: #ff6a00;
    margin-bottom: 10px;
}

.status-card h4 {
    color: #00c6ff;
    font-size: 16px;
    margin-bottom: 8px;
}

/* ===== STATUS TEXT ===== */
.status {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
}

.status.on {
    color: #00ff9c;
    background: rgba(0,255,156,0.15);
    box-shadow: 0 0 12px rgba(0,255,156,0.6);
}

.status.off {
    color: #ff4d4d;
    background: rgba(255,77,77,0.15);
    box-shadow: 0 0 12px rgba(255,77,77,0.6);
}
.service-item {
    padding: 30px 20px;
	max-width: 380px;
}

.download-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.download-btn {
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    box-shadow:
        0 0 12px rgba(255,106,0,0.6),
        0 0 30px rgba(255,60,0,0.35);
    transition: all 0.3s ease;
    z-index: 2; /* stretched-link üstüne çıkmasın diye */
}

.download-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 20px rgba(255,140,0,0.9),
        0 0 50px rgba(255,60,0,0.6);
}

.zip-pass {
    opacity: 0.7;
    font-size: 0.9rem;
}
.stats-item {
    width: 100%;
    max-width: 280px;
    text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats i {
    margin-bottom: 12px;
}
.stats-item:hover {
   transform: translateY(-8px) scale(1.03);
   box-shadow:
        0 0 40px rgba(255,106,0,0.4),
        inset 0 0 15px rgba(255,106,0,0.1);
}