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

html{
    scroll-behavior:smooth;
}

body{
    background:#05070a;
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    min-height:100vh;
}

/* BACKGROUND */

.site-bg{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.20),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(59,130,246,.15),
    transparent 35%),

    #05070a;

    z-index:-3;
}

.site-noise{
    position:fixed;
    inset:0;
    background-image:url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    opacity:.06;
    z-index:-2;
    pointer-events:none;
}

/* HEADER */

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(20px);
    background:rgba(5,7,10,.72);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
    max-width:1280px;
    margin:auto;
    padding:22px 24px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

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

.logo-text{
    font-size:30px;
    font-weight:900;
    font-style:italic;
    color:white;
    letter-spacing:-2px;
}

.logo-text span{
    color:#3b82f6;
}

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

.top-nav a{
    color:#9ca3af;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    transition:.25s;
}

.top-nav a:hover{
    color:white;
}

.nav-cta{
    background:#2563eb;
    color:white!important;
    padding:14px 22px;
    border-radius:18px;
    box-shadow:
    0 0 25px rgba(37,99,235,.35);
}

.nav-cta:hover{
    transform:translateY(-2px);
}

.header-glow{
    height:1px;
    width:100%;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(59,130,246,.7),
        transparent
    );
}

/* MAIN */

.main-wrap{
    max-width:1280px;
    margin:auto;
    padding:40px 24px 80px;
}

/* GLASS */

.glass{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(16px);
    box-shadow:
    0 0 40px rgba(0,0,0,.35);
}

/* FOOTER */

.site-footer{
    border-top:1px solid rgba(255,255,255,.06);
    padding:30px 24px;
    margin-top:60px;
}

.footer-inner{
    max-width:1280px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#6b7280;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    color:#6b7280;
    text-decoration:none;
}

.footer-links a:hover{
    color:white;
}

/* MOBILE */

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
        gap:18px;
    }

    .top-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .logo-text{
        font-size:24px;
    }

}
/* ======================================================
HERO
====================================================== */

.hero-area{
    position:relative;
    margin-bottom:60px;
    padding:70px 50px;
    border-radius:40px;
    overflow:hidden;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(255,255,255,.06);

    box-shadow:
    0 0 80px rgba(37,99,235,.08),
    inset 0 0 80px rgba(255,255,255,.015);
}

.hero-glow{
    position:absolute;
    width:600px;
    height:600px;
    background:
    radial-gradient(
        circle,
        rgba(37,99,235,.22),
        transparent 70%
    );

    top:-300px;
    right:-250px;

    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:40px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;
    border-radius:999px;

    background:
    rgba(37,99,235,.12);

    border:
    1px solid rgba(59,130,246,.25);

    color:#60a5fa;

    font-size:11px;
    font-weight:800;
    letter-spacing:2px;

    margin-bottom:24px;
}

.hero-title{
    font-size:68px;
    line-height:1;
    font-weight:900;
    font-style:italic;
    letter-spacing:-4px;

    max-width:820px;

    margin-bottom:26px;
}

.hero-desc{
    color:#9ca3af;
    font-size:18px;
    line-height:1.8;

    max-width:720px;

    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:#2563eb;
    color:white;
    text-decoration:none;

    padding:18px 28px;
    border-radius:22px;

    font-weight:900;
    letter-spacing:1px;

    box-shadow:
    0 0 40px rgba(37,99,235,.35);

    transition:.25s;
}

.hero-btn-primary:hover{
    transform:translateY(-3px) scale(1.02);
}

.hero-btn-secondary{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    color:white;
    text-decoration:none;

    padding:18px 28px;
    border-radius:22px;

    font-weight:900;
    letter-spacing:1px;

    transition:.25s;
}

.hero-btn-secondary:hover{
    background:rgba(255,255,255,.08);
}

.hero-side{
    position:relative;
    padding:35px;
    border-radius:35px;
    overflow:hidden;
}

.radar-line{
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 22px,
        rgba(59,130,246,.06) 23px
    );

    animation:radarMove 8s linear infinite;
}

@keyframes radarMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(40px);
    }
}

.hero-mini-title{
    position:relative;
    z-index:2;

    font-size:11px;
    letter-spacing:3px;
    font-weight:900;

    color:#60a5fa;

    margin-bottom:30px;
}

.hero-stat{
    position:relative;
    z-index:2;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.hero-stat span{
    color:#9ca3af;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.hero-stat b{
    font-size:14px;
    letter-spacing:1px;
}

/* ======================================================
SEARCH
====================================================== */

.search-box{
    display:flex;
    gap:16px;

    padding:18px;
    border-radius:30px;

    margin-bottom:28px;
}

.search-input{
    flex:1;

    background:transparent;
    border:none;
    outline:none;

    color:white;

    font-size:16px;

    padding:18px;
}

.search-input::placeholder{
    color:#6b7280;
}

.search-btn{
    background:#2563eb;
    border:none;

    color:white;

    padding:0 34px;

    border-radius:22px;

    font-weight:900;
    letter-spacing:1px;

    cursor:pointer;

    transition:.25s;
}

.search-btn:hover{
    transform:scale(1.04);
}

/* ======================================================
CITY BAR
====================================================== */

.city-bar{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-bottom:26px;
}

.city-chip{
    text-decoration:none;

    padding:12px 18px;
    border-radius:999px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    color:#9ca3af;

    font-size:12px;
    font-weight:800;
    letter-spacing:1px;

    transition:.25s;
}

.city-chip:hover{
    color:white;

    border-color:
    rgba(59,130,246,.35);

    box-shadow:
    0 0 30px rgba(37,99,235,.15);
}

.section-line{
    height:1px;

    margin:25px 0 45px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(59,130,246,.6),
        transparent
    );
}

/* ======================================================
SECTIONS
====================================================== */

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:28px;
}

.section-title{
    font-size:32px;
    font-weight:900;
    font-style:italic;
    letter-spacing:-2px;
}

.section-mini{
    color:#6b7280;
    font-size:11px;
    font-weight:900;
    letter-spacing:3px;
}

/* ======================================================
CARDS
====================================================== */

.card-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:28px;
}

.listing-card{
    position:relative;

    border-radius:34px;
    overflow:hidden;

    text-decoration:none;

    transition:.35s;
}

.listing-card:hover{
    transform:
    translateY(-8px)
    scale(1.01);

    box-shadow:
    0 0 60px rgba(37,99,235,.18);
}

.listing-image-wrap{
    position:relative;
    overflow:hidden;
}

.listing-image{
    width:100%;
    height:280px;
    object-fit:cover;

    transition:1.2s;
}

.listing-card:hover .listing-image{
    transform:scale(1.08);
}

.listing-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(5,7,10,.95),
        transparent 60%
    );
}

.listing-content{
    position:relative;

    padding:26px;
}

.listing-title{
    font-size:22px;
    font-weight:900;
    line-height:1.2;

    color:white;

    margin-bottom:12px;
}

.listing-location{
    color:#9ca3af;
    font-size:14px;
}

.listing-type{
    position:absolute;
    top:20px;
    left:20px;

    padding:10px 16px;
    border-radius:999px;

    font-size:11px;
    font-weight:900;
    letter-spacing:2px;

    z-index:3;
}

.listing-type.lost{
    background:
    rgba(239,68,68,.15);

    color:#f87171;

    border:
    1px solid rgba(239,68,68,.25);

    box-shadow:
    0 0 25px rgba(239,68,68,.15);
}

.listing-type.found{
    background:
    rgba(16,185,129,.15);

    color:#34d399;

    border:
    1px solid rgba(16,185,129,.25);

    box-shadow:
    0 0 25px rgba(16,185,129,.15);
}

.premium-badge{
    position:absolute;
    top:20px;
    right:20px;

    z-index:3;

    padding:10px 14px;
    border-radius:999px;

    background:
    rgba(250,204,21,.12);

    border:
    1px solid rgba(250,204,21,.25);

    color:#fde047;

    font-size:10px;
    font-weight:900;
    letter-spacing:2px;

    box-shadow:
    0 0 35px rgba(250,204,21,.18);
}

/* ======================================================
MOBILE
====================================================== */

@media(max-width:900px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:44px;
        letter-spacing:-2px;
    }

    .hero-area{
        padding:40px 26px;
    }

    .search-box{
        flex-direction:column;
    }

    .search-btn{
        height:60px;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

}
/* ======================================================
NEON LIGHT SYSTEM
====================================================== */

.neon-divider{
    position:relative;
    height:2px;
    width:100%;
    margin:45px 0;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(59,130,246,.95),
        transparent
    );

    overflow:hidden;
}

.neon-divider::before{
    content:'';

    position:absolute;
    top:0;
    left:-20%;

    width:20%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        transparent
    );

    filter:blur(6px);

    animation:
    neonSlide 4s linear infinite;
}

@keyframes neonSlide{

    from{
        left:-20%;
    }

    to{
        left:120%;
    }
}

/* ======================================================
LIGHT ORB
====================================================== */

.light-orb{
    position:absolute;
    border-radius:999px;
    filter:blur(120px);
    pointer-events:none;
    opacity:.35;
}

.light-orb-blue{
    width:420px;
    height:420px;

    background:#2563eb;

    top:-180px;
    left:-120px;
}

.light-orb-cyan{
    width:360px;
    height:360px;

    background:#06b6d4;

    bottom:-160px;
    right:-120px;
}

/* ======================================================
EXTRA DEPTH
====================================================== */

.glass{
    position:relative;
    overflow:hidden;
}

.glass::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        transparent 40%
    );

    pointer-events:none;
}

/* ======================================================
PREMIUM CARD GLOW
====================================================== */

.listing-card::after{
    content:'';

    position:absolute;
    inset:-1px;

    border-radius:34px;

    background:
    linear-gradient(
        145deg,
        rgba(59,130,246,.25),
        transparent,
        rgba(255,255,255,.04)
    );

    opacity:0;

    transition:.4s;

    pointer-events:none;
}

.listing-card:hover::after{
    opacity:1;
}

/* ======================================================
KAYIP PULSE
====================================================== */

.listing-type.lost{
    animation:
    lostPulse 2.5s infinite;
}

@keyframes lostPulse{

    0%{
        box-shadow:
        0 0 0 rgba(239,68,68,0);
    }

    50%{
        box-shadow:
        0 0 30px rgba(239,68,68,.35);
    }

    100%{
        box-shadow:
        0 0 0 rgba(239,68,68,0);
    }
}

/* ======================================================
HERO DEPTH
====================================================== */

.hero-area::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom right,
        rgba(255,255,255,.03),
        transparent 50%
    );

    pointer-events:none;
}

/* ======================================================
HEADER SHADOW
====================================================== */

.main-header{
    box-shadow:
    0 10px 40px rgba(0,0,0,.35);
}

/* ======================================================
DAY/LIGHT BALANCE
====================================================== */

body::after{
    content:'';

    position:fixed;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(255,255,255,.015),
        transparent 20%
    );

    pointer-events:none;

    z-index:-1;
}

/* FINAL OVERRIDE — LISTING STATUS BADGE */

.listing-type{
    top:12px !important;
    right:12px !important;
    bottom:auto !important;
    left:auto !important;

    width:auto !important;
    min-width:0 !important;
    max-width:max-content !important;

    padding:5px 9px !important;

    font-size:11px !important;
    line-height:1 !important;

    border-radius:999px !important;
    letter-spacing:0 !important;

    z-index:20 !important;
}

.listing-type.lost{
    background:rgba(239,68,68,.92) !important;
    color:#fff !important;
}

.listing-type.found{
    background:rgba(16,185,129,.92) !important;
    color:#fff !important;
}
/* ======================================================
FINAL READABILITY OVERRIDE
====================================================== */

body{
    background:#05070a !important;
    color:#f8fafc !important;
}

.glass,
.hero-area,
.hero-side,
.search-box,
.listing-card,
.guide-hero,
.guide-card,
.guide-featured-card,
.rehber-article,
.cuzdan-rehber-article{
    background:rgba(15,23,42,.88) !important;
    border:1px solid rgba(148,163,184,.22) !important;
    color:#f8fafc !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.listing-title,
.guide-title,
.guide-featured-title,
.guide-section-title,
.rehber-title,
.cuzdan-rehber-title{
    color:#ffffff !important;
}

p,
li,
.hero-desc,
.section-mini,
.listing-location,
.guide-desc,
.guide-featured-desc,
.guide-text,
.guide-section-count,
.rehber-lead,
.cuzdan-rehber-lead{
    color:#dbe4f0 !important;
}

a{
    color:#93c5fd;
}

input,
select,
textarea{
    background:#0f172a !important;
    color:#ffffff !important;
    border:1px solid rgba(148,163,184,.36) !important;
}

input::placeholder,
textarea::placeholder{
    color:#94a3b8 !important;
    opacity:1 !important;
}

button,
.search-btn,
.nav-cta,
.hero-btn-primary,
.hero-btn-secondary,
.guide-link,
.rehber-btn,
.cuzdan-rehber-btn{
    background:linear-gradient(135deg,#2563eb,#0891b2) !important;
    color:#ffffff !important;
    border:1px solid rgba(191,219,254,.32) !important;
}

button *,
.search-btn *,
.nav-cta *,
.hero-btn-primary *,
.hero-btn-secondary *,
.guide-link *,
.rehber-btn *,
.cuzdan-rehber-btn *{
    color:#ffffff !important;
}

.footer-inner,
.footer-links a,
.footer-desc,
.footer-copy{
    color:#cbd5e1 !important;
}