/* =========================================
   VASQUARA - CORE VARIABLES & RESET
========================================= */
:root {
    /* Renk Paleti (Karanlık & Neon) */
    --bg-main: #0a0a0a;       /* Zifiriye yakın ana arka plan */
    --bg-darker: #050505;     /* Daha koyu bölümler */
    --bg-card: #121212;       /* Kart arka planları */
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    
    /* Vurgu Renkleri - Gotik Cyberpunk */
    --accent-crimson: #ff003c; /* Ana vurgu rengi (Kan Kırmızısı/Neon) */
    --accent-cyan: #00f7ff;    /* İkincil vurgu (Simülasyon/Tekno) */
    
    /* Fontlar */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Diğer */
    --nav-height: 80px;
    --border-radius: 8px;
    --section-spacing: 100px;
}

/* Temel Sıfırlama ve Ayarlar */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    /* İnce bir doku efekti (isteğe bağlı) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* =========================================
   TYPOGRAPHY & UTILITIES
========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin-inline: auto;
}

.padding-block { padding-block: var(--section-spacing); }
.bg-darker { background-color: var(--bg-darker); }
.text-center { text-align: center; }
.accent-dot { color: var(--accent-crimson); }

/* Bölüm Başlıkları */
.section-header { margin-bottom: 60px; }
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-crimson);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--accent-crimson);
}
.section-subtitle { color: var(--text-secondary); max-width: 600px; margin-inline: auto; }

/* =========================================
   COMPONENTS: BUTTONS & TAGS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-crimson);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/* Buton Hover Efekti - Parlama */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* Etiketler (Tags) */
.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tag-sim { background: rgba(0, 247, 255, 0.15); color: var(--accent-cyan); border: 1px solid rgba(0, 247, 255, 0.3); }
.tag-horror { background: rgba(255, 0, 60, 0.15); color: var(--accent-crimson); border: 1px solid rgba(255, 0, 60, 0.3); }
.tag-live { 
    background: var(--accent-crimson); color: white;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

/* =========================================
   NAVBAR & HEADER
========================================= */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
/* Scroll edilince navbar değişimi */
#navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--accent-crimson);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--accent-crimson); }

.nav-toggle, .nav-close { display: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   HERO SECTION (Giriş)
========================================= */
.hero-section {
    height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Saf karanlık arka plan + hafif neon yansıma efekti */
    background: radial-gradient(circle at center bottom, rgba(255, 0, 60, 0.15) 0%, rgba(10, 10, 10, 1) 60%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Glitch Efektli Başlık */
.hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 0, 60, 0.3);
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.8;
}
.glitch::before {
    color: var(--accent-cyan);
    z-index: -1;
    transform: translate(-2px, 0);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
    color: var(--accent-crimson);
    z-index: -2;
    transform: translate(2px, 0);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent-crimson);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}
/* Profil resmi çerçeve efekti */
.img-border {
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent-crimson);
    z-index: -1;
    transition: all 0.4s ease;
}
.about-image-wrapper:hover .img-border {
    top: 10px; left: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
}
.about-img {
    border-radius: 4px;
    width: 100%;
    filter: grayscale(30%) contrast(110%);
    transition: all 0.4s ease;
}
.about-image-wrapper:hover .about-img { filter: grayscale(0%); }

.lead-text { font-size: 1.1rem; margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 15px; }
.about-content strong, .about-content em { color: white; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-crimson);
}
.stat-desc { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; }

/* =========================================
   SCHEDULE SECTION
========================================= */
.schedule-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}
.schedule-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-crimson);
    box-shadow: 0 10px 30px -15px rgba(255, 0, 60, 0.3);
}
/* Öne Çıkan Kart (Cuma) */
.schedule-card.featured {
    border-color: var(--accent-crimson);
    background: linear-gradient(145deg, var(--bg-card), rgba(255, 0, 60, 0.05));
}

.day-header {
    background: rgba(255,255,255,0.03);
    padding: 15px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.featured .day-header {
    background: var(--accent-crimson);
    color: white;
}

.card-body { padding: 25px; text-align: center; }
.content-title { font-size: 1.2rem; margin: 15px 0; }
.platform {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* =========================================
   SOCIAL SECTION
========================================= */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.social-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
/* Hover Efektleri */
.social-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.social-card:hover::before { transform: scaleX(1); }
.social-card:hover { transform: translateY(-5px); }

.card-icon { font-size: 3rem; margin-bottom: 20px; transition: all 0.4s ease; }
.card-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.card-info p { font-size: 0.85rem; color: var(--text-muted); }

/* Platform Renkleri */
.youtube { color: #ff0000; } .youtube:hover .card-icon { text-shadow: 0 0 20px #ff0000; }
.live { color: #00ff7f; /* Kick yeşili */ } .live:hover .card-icon { text-shadow: 0 0 20px #00ff7f; }
.discord { color: #5865f2; } .discord:hover .card-icon { text-shadow: 0 0 20px #5865f2; }
.instagram { color: #E1306C; } .instagram:hover .card-icon { text-shadow: 0 0 20px #E1306C; }

/* =========================================
   CONTACT & FOOTER
========================================= */
.contact-text { color: var(--text-secondary); margin-bottom: 30px; font-size: 1.1rem; }
.discord-note { margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); }

.footer {
    padding: 30px 0;
    background: black;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; }
.copyright { color: var(--text-muted); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 20px; font-size: 1.2rem; }
.footer-socials a:hover { color: var(--accent-crimson); }

/* =========================================
   RESPONSIVE (MOBİL UYUMLULUK)
========================================= */
@media (max-width: 768px) {
    :root { --nav-height: 70px; --section-spacing: 60px; }
    
    /* Mobil Menü */
    .nav-toggle, .nav-close { display: block; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 8rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-menu.show { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
    .nav-link { font-size: 1.2rem; }
    .nav-close { position: absolute; top: 1.5rem; right: 2rem; }

    /* Hero Mobil */
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    /* Hakkımda Mobil */
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image-wrapper { max-width: 400px; margin: 0 auto 40px; }
    .stats-grid { justify-items: center; }
    
    /* Diğer */
    .footer-content { flex-direction: column; }
}