/* --- VALORANT THEME CORE --- */
:root {
    --v-red: #ff4655;
    --v-dark: #0f1923;
    --v-white: #ece8e1;
    --v-gray: rgba(236, 232, 225, 0.1);
    --v-text-dim: #7e7e7e;
    --v-green: #00ff9d;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--v-dark);
    font-family: 'Inter', sans-serif;
}

/* --- SIDEBAR ANA YAPISI --- */
.v-docs-sidebar {
    width: 300px;
    background: #0f1923; 
    border-right: 1px solid rgba(236, 232, 225, 0.1);
    padding: 30px;
    position: fixed;
    top: 55px; 
    left: 0;
    height: calc(100vh - 55px); 
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
}

.v-hud-label {
    display: block;
    font-size: 0.6rem;
    color: var(--v-red);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.v-search-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(236, 232, 225, 0.2);
    padding: 10px 5px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: 0.3s;
}

.v-search-input-group input:focus {
    border-bottom-color: var(--v-red);
    background: rgba(255, 70, 85, 0.05);
}

.v-nav-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Kategori Linki Genel Yapısı */
.v-cat-link {
    text-decoration: none;
    padding: 10px 15px;
    margin-bottom: 4px;
    color: #7e7e7e;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between; /* Metni sola, sayıyı sağa yaslar */
    align-items: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid transparent;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

/* Aktif veya Hover Durumu */
.v-cat-link:hover, .v-cat-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--v-red);
}

/* İŞARETLEDİĞİN SAYI KUTUCUĞU (BADGE) */
.v-cat-badge {
    background: rgba(255, 255, 255, 0.1); /* Resimdeki o hafif gri kutu */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 10px;
    min-width: 25px;
    text-align: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); /* Hafif Valorant eğimi */
    transition: 0.3s;
}

.v-cat-link:hover .v-cat-badge, 
.v-cat-link.active .v-cat-badge {
    background: var(--v-red); /* Aktifken veya hoverda kırmızı olur */
    color: #0f1923;
}

.v-cat-link:hover, .v-cat-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--v-red);
}

.v-sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 232, 225, 0.05);
}

.v-log-status {
    font-size: 0.65rem;
    color: #00ff9d;
    font-weight: 900;
}

/* --- ANA İÇERİK ALANI (GRID) --- */
.v-docs-content {
    margin-left: 300px; /* Sidebar genişliği */
    padding: 40px 60px; /* İçeriden boşluk */
    
    /* ÇÖZÜM BURASI: */
    margin-top: 55px;   /* Navbar yüksekliği kadar üstten boşluk bırakır */
    
    min-height: calc(100vh - 55px);
    background: #0f1923;
    position: relative;
    box-sizing: border-box; /* Padding'in genişliği bozmasını engeller */
}

.v-header-meta {
    font-size: 0.7rem;
    color: var(--v-red);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.v-plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- VALORANT KART TASARIMI --- */
.v-plugin-card {
    background: #16212b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v-plugin-card:hover {
    transform: translateY(-8px);
    border-color: var(--v-red);
    background: #1c2935;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.v-card-tags {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.v-tag-game {
    background: var(--v-red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 3px 10px;
}

.v-tag-status {
    color: var(--v-green);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.v-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

/* --- TEKNİK ÖZELLİKLER --- */
.v-card-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.spec-label {
    font-size: 0.65rem;
    color: #7e7e7e;
    font-weight: 700;
}

.spec-value {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 800;
}

/* RAM ve CPU Vurgusu */
.spec-item.highlight {
    border-bottom: 1px solid rgba(255, 70, 85, 0.2);
    margin-top: 5px;
}

.spec-item.highlight .spec-value {
    color: var(--v-red); 
}

/* --- AÇIKLAMA ALANI --- */
.v-card-description {
    margin: 20px 0;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--v-red);
    min-height: 70px;
}

.v-card-description p {
    font-size: 0.75rem;
    color: #ababab;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v-btn-details {
    text-decoration: none;
    color: var(--v-red);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.2s;
    margin-top: 10px;
    display: inline-block;
}

.v-btn-details:hover {
    color: #fff;
    transform: translateX(5px);
}
/* hiç ekeltni yok yazısı  */

/* Boş Durum Konteynırı */
.v-empty-state {
    grid-column: 1 / -1; /* Grid içinde tam genişlik kaplasın */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
}

.v-glitch-wrapper {
    position: relative;
    max-width: 500px;
}

/* Ana Glitch Metni */
.v-glitch-text {
    position: relative;
    font-size: 3rem;
    font-weight: 950;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 15px 0;
}

/* Glitch Katmanları (Kırmızı ve Mavi Gölgeler) */
.v-glitch-text::before,
.v-glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.v-glitch-text::before {
    color: #ff4655; /* Valorant Kırmızısı */
    z-index: -1;
    animation: v-glitch-anim 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.v-glitch-text::after {
    color: #00f3ff; /* Neon Mavi */
    z-index: -2;
    animation: v-glitch-anim 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
}

/* Alt Metin */
.v-glitch-sub {
    font-size: 0.85rem;
    color: var(--v-text-dim);
    letter-spacing: 1px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 70, 85, 0.2);
    padding-top: 20px;
}

/* Animasyon Tanımı */
@keyframes v-glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

/* Alt Çizgi Efekti */
.v-glitch-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--v-red), transparent);
    margin-top: 20px;
    animation: v-line-pulse 2s infinite;
}

@keyframes v-line-pulse {
    0%, 100% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}




/* NAVBAR TASARIMI */
:root {
    --v-red: #ff4655;
    --v-dark: #0f1923;
    --v-white: #ece8e1;
    --v-gray: rgba(236, 232, 225, 0.1);
    --v-text-dim: #7e7e7e;
    --v-green: #00ff9d;
}

.v-navbar-slim {
    background: var(--v-dark);
    height: 55px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--v-gray);
    font-family: 'Inter', sans-serif;
}

.v-nav-wrapper {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* Logo & Yazı */
.v-brand { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.v-logo-box {
    background: var(--v-red); color: var(--v-dark);
    font-weight: 900; width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.v-brand-text { display: flex; flex-direction: column; line-height: 1; }
.glitch-txt { color: #fff; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }
.sub-txt { font-size: 0.6rem; color: var(--v-text-dim); font-weight: 700; margin-top: 2px; }

/* HUD Bilgileri */
.v-nav-center { display: flex; gap: 30px; align-items: center; }
.hud-item { display: flex; flex-direction: column; }
.hud-label { font-size: 0.55rem; color: var(--v-text-dim); font-weight: 800; letter-spacing: 1px; }
.hud-value { font-size: 0.75rem; color: #fff; font-weight: 900; }
.hud-value.online { color: var(--v-green); }
.hud-divider { width: 1px; height: 20px; background: var(--v-gray); }

/* Sağ Menü & Auth */
.v-nav-right { display: flex; align-items: center; gap: 25px; }
.v-menu { display: flex; gap: 20px; }
.v-menu-link {
    color: var(--v-white); text-decoration: none;
    font-size: 0.8rem; font-weight: 700; opacity: 0.6; transition: 0.2s;
}
.v-menu-link:hover { opacity: 1; color: var(--v-red); }

.v-auth-group {
    display: flex; align-items: center; gap: 15px;
    border-left: 1px solid var(--v-gray); padding-left: 20px;
}
.v-login-link-minimal {
    color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 800; opacity: 0.6;
}
.v-login-link-minimal:hover { opacity: 1; color: var(--v-red); }

/* Kayıt Butonu - Kesik Kenarlı */
.v-btn-register-slim {
    position: relative; border: 1px solid var(--v-red);
    padding: 6px 18px; text-decoration: none; transition: 0.3s;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.v-btn-content { color: var(--v-red); font-size: 0.7rem; font-weight: 900; }
.v-btn-register-slim:hover { background: var(--v-red); }
.v-btn-register-slim:hover .v-btn-content { color: var(--v-dark); }

/* Dekoratif Alt Bar */
.v-nav-bottom-bar {
    height: 2px; width: 100%;
    background: linear-gradient(90deg, transparent, var(--v-red) 50%, transparent);
    opacity: 0.4;
}
/* --- VALORANT COMPACT CARD DESIGN --- */

.v-plugin-grid {
    display: grid;
    /* Kartların genişliğini biraz artırıp responsive yapıyoruz */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.v-plugin-card.compact-mode {
    background: #16212b; /* Kart rengi */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0; /* İç boşluğu sıfırlayıp flex ile yöneteceğiz */
    display: flex;
    flex-direction: column;
    height: 240px; /* Kart boyunu sabitledik, daha düzenli durur */
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 94% 100%, 0 100%); /* Sağ alt kesik */
}

.v-plugin-card.compact-mode:hover {
    transform: translateY(-5px);
    border-color: var(--v-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* --- ÜST KISIM (Header) --- */
.v-compact-header {
    padding: 20px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(90deg, rgba(255,70,85,0.05) 0%, transparent 100%);
}

.v-card-title {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
}

.v-author-line {
    margin-top: 6px;
    font-size: 0.7rem;
    color: #7e7e7e;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.v-author-line i { color: var(--v-red); }

.v-tag-game {
    background: var(--v-red);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 2px;
}

/* --- ORTA KISIM (Açıklama) --- */
.v-compact-body {
    padding: 15px 20px;
    flex-grow: 1; /* Kalan tüm boşluğu kaplar */
    background: rgba(0,0,0,0.15);
    overflow: hidden;
}

.v-compact-body p {
    font-size: 0.8rem;
    color: #bcbcbc;
    line-height: 1.5;
    margin: 0;
    
    /* Metin çok uzunsa 3 satırdan sonrasını ... koyarak keser */
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- ALT KISIM (Footer) --- */
.v-compact-footer {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f1923;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sistem Gereksinimleri Alanı */
.sys-reqs {
    display: flex;
    flex-direction: column;
}

.req-label {
    font-size: 0.55rem;
    color: var(--v-red);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.req-val {
    font-size: 0.75rem;
    color: #ece8e1;
    font-weight: 600;
}

.req-val .sep {
    color: var(--v-text-dim);
    margin: 0 4px;
    font-size: 0.6rem;
}

/* Detay Butonu */
.v-btn-compact {
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v-btn-compact:hover {
    background: var(--v-red);
    border-color: var(--v-red);
    color: #000;
}
/* Chat ikonuna özel hover rengi */
.v-nav-icon-btn.chat-btn:hover {
    color: #ff4655; /* Valorant Kırmızısı */
    transform: translateY(-2px); /* Ufak bir zıplama efekti */
}