/* =============================================
   AMATÖR TÜRK İFŞA — Neon Dark Modern Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #0a0818;
    --bg-surface: #120d2b;
    --bg-card: rgba(255,255,255,0.06);
    --bg-card-hover: rgba(255,255,255,0.12);
    --text: #e0f8ff;
    --text-secondary: #a0d4ff;
    --text-muted: #8899bb;
    --neon-cyan: #00f7ff;
    --neon-purple: #e000ff;
    --border: rgba(0, 247, 255, 0.15);
    --border-hover: rgba(224, 0, 255, 0.4);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 20px 50px rgba(224, 0, 255, 0.25);
    --radius: 16px;
    --transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

body {
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 247, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(224, 0, 255, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--neon-cyan); }

img { max-width: 100%; display: block; }

/* ====================== NAVBAR ====================== */
.navbar {
    background: rgba(10, 8, 24, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

.navbar-brand {
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -1.2px;
    color: #fff;
}

.navbar-brand span:first-child { color: var(--neon-cyan); }
.navbar-brand span:last-child  { color: var(--neon-purple); }

.nav-link {
    color: #ccc !important;
    font-weight: 600;
    padding: 16px 18px !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 12px var(--neon-cyan);
}

/* ====================== VIDEO CARD ====================== */
.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}

.thumbnail-container {
    position: relative;
    aspect-ratio: 16 / 9.5;
    overflow: hidden;
    background: #000;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .thumbnail-container img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

/* ====================== OTHER ELEMENTS ====================== */
.card-title {
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.4;
    color: #e0f8ff;
    margin: 0;
}

.views-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .video-card:hover {
        transform: none;
    }
    .nav-link {
        padding: 12px 14px !important;
        font-size: 14px;
    }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0818; }
::-webkit-scrollbar-thumb { background: #2a2a55; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-cyan); }