/* === YENİ HERO V2 === */
.hero-v2 { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 13, 26, 0.7); z-index: 2; }
.hero-content { position: relative; z-index: 3; color: white; padding: 2rem; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.hero-content h1 .text-primary { color: var(--primary-color); text-shadow: 0 0 15px var(--neon-glow-primary); }
.hero-content p { font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 600px; margin: 0 auto 2rem auto; opacity: 0.9; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-buttons .cta-button.secondary { background: transparent; border-color: var(--primary-color); color: var(--primary-color); }
.hero-buttons .cta-button.secondary:hover { background: var(--primary-color); color: var(--bg-color); }

/* === İSTATİSTİK BÖLÜMÜ === */
.stats-section { background-color: rgba(0,0,0,0.2); padding: 4rem 2rem; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.stats-section .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: auto; }
.stat-item { text-align: center; }
.stat-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; text-shadow: 0 0 10px var(--neon-glow-primary); }
.stat-item h3 { font-size: 3rem; font-weight: 700; }
.stat-item p { font-size: 1rem; color: #aaa; text-transform: uppercase; }

/* === BÖLÜM BAŞLIĞI === */
.section-title { text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 3rem; }
.section-title span { color: var(--primary-color); text-shadow: 0 0 10px var(--neon-glow-primary); }
.home-section { padding: 5rem 2rem; }

/* === KURUCULAR TAKIM KARTLARI === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: auto; }
.team-card { background-color: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); border-radius: 10px; overflow: hidden; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2); }
.card-image img { width: 100%; height: 350px; object-fit: cover; }
.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-content p { color: var(--primary-color); font-weight: 600; margin-bottom: 1rem; }
.card-socials { display: flex; justify-content: center; gap: 1rem; }
.card-socials a { font-size: 1.2rem; color: #ccc; }

/* === CTA BÖLÜMÜ === */
.cta-section { background: linear-gradient(45deg, rgba(0, 191, 255, 0.1), rgba(255, 0, 255, 0.1)); padding: 5rem 2rem; text-align: center; }
.cta-content h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-content p { max-width: 600px; margin: 0 auto 2rem auto; }

/* === DISCORD V2 BÖLÜMÜ === */
.discord-section-v2 { text-align: center; padding: 5rem 2rem; }
.discord-content i { font-size: 5rem; color: #7289DA; margin-bottom: 1.5rem; }
.discord-content h2 { font-size: 2.2rem; }
.discord-content p { max-width: 500px; margin: 1rem auto 2rem auto; }
.discord-button { display: inline-block; padding: 1rem 2.5rem; background-color: #7289DA; color: white; font-weight: 700; border-radius: 5px; text-transform: uppercase; transition: transform 0.3s, box-shadow 0.3s; }
.discord-button:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4); }

/* === GİRİŞ ANİMASYONLARI === */
.animate-fade-in-down { animation: fadeInDown 1s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 1s ease-out 0.5s forwards; opacity: 0; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }