/* Genel Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #e0f7fa; /* Genel yazı rengi */
}

body {
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Video Arka Planı (TA Studios tarzı) */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2; /* Arka planda kalması için */
}

/* bandicam 2025-06-30 23-40-10-293.mp4'teki gibi bir görsel/video placeholder */
.video-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://i.imgur.com/tkIVUgy.jpeg'); /* Geçici bir görsel, videonun ilk karesi olabilir */
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) grayscale(0.5); /* Hafif karartma ve gri tonlama */
    transition: filter 0.5s ease;
}

/* Videonun kendisini kullanmak isterseniz (CDN'e yüklenmeli) */
/* #bgVideo {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
} */

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.9) 70%); /* Hafif kırmızı vurgu */
    opacity: 0.8;
    z-index: -1;
}


/* Kapsayıcı */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigasyon */
header {
    background-color: #1a0000cc; /* Koyu kırmızı transparan */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 15px #ff000088;
    backdrop-filter: blur(5px);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000, 0 0 25px #ff0000;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px; /* Logo boyutunu ayarla */
    width: auto;
    filter: drop-shadow(0 0 8px #ffcc00); /* Hafif sarımsı parlama */
}

.logo:hover {
    transform: scale(1.05);
}

.menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.menu li a {
    color: #ffcccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 5px #ff0000;
    padding: 5px 0;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ff0000;
    box-shadow: 0 0 8px #ff0000, 0 0 15px #ff0000;
    transition: width 0.3s ease-out;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a:hover {
    color: #ff0000;
    text-shadow: 0 0 18px #ff0000;
}

.discord-btn-nav {
    background-color: #7289da;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-shadow: none;
    box-shadow: 0 0 10px rgba(114, 137, 218, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-btn-nav:hover {
    background-color: #677bc4;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(114, 137, 218, 0.9);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ff0000;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Main Content Alanı */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 50; /* İçeriğin arka planın üzerinde kalması için */
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    max-width: 1000px;
    margin: 0 auto 80px auto;
    background: rgba(0, 0, 0, 0.6); /* Hafif transparan arka plan */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.8rem;
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000, 0 0 35px #ff0000, 0 0 50px rgba(255, 0, 0, 0.5);
    margin-bottom: 25px;
    animation: textGlowRed 2s ease-in-out infinite alternate;
}

@keyframes textGlowRed {
    0% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; }
    100% { text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 45px rgba(255, 0, 0, 0.6); }
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffcccc;
    margin-bottom: 30px;
    text-shadow: 0 0 12px rgba(255, 204, 204, 0.6);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #c9c9c9;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.7);
}

.btn:hover {
    background-color: #cc0000;
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
}

.discord-btn-hero {
    background-color: #7289da; /* Discord mavisi */
    box-shadow: 0 0 18px rgba(114, 137, 218, 0.7);
}

.discord-btn-hero:hover {
    background-color: #677bc4;
    box-shadow: 0 0 30px rgba(114, 137, 218, 0.9);
}

/* İçerik Bölümleri Genel Stili */
.content-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    margin-bottom: 60px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.content-section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #ff0000;
    text-shadow: 0 0 18px #ff0000, 0 0 30px #ff0000;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.neon-line {
    display: block;
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, transparent, #ff0000, transparent);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 12px #ff0000, 0 0 25px rgba(255, 0, 0, 0.7);
}

.section-description {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Hakkımızda Bölümü */
.about-section .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    margin-top: 50px;
}

.about-section .about-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #c9c9c9;
}

.about-section .about-text p {
    margin-bottom: 20px;
}

.about-section .about-image {
    flex: 0 0 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 28px rgba(255, 0, 0, 0.6);
    border: 4px solid #ff0000;
}

.about-section .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-section .about-image img:hover {
    transform: scale(1.05);
}

/* Özellikler (Features) Bölümü */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #1a0000;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 22px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    background-color: #260000;
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

.feature-icon {
    font-size: 3.8rem;
    color: #ffcc00; /* Altın sarısı ikonlar */
    margin-bottom: 20px;
    text-shadow: 0 0 12px #ffcc00;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    color: #ff0000; /* Kırmızı başlıklar */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.feature-card p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Ekip Bölümü */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: #1a0000;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 0, 0, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #260000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffcc00; /* Altın sarısı çerçeve */
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.08) rotate(5deg);
}

.team-member h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ff0000;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.team-member p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 10px;
}

.team-member .social-handle {
    font-size: 0.95rem;
    color: #888;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Kurallar Bölümü */
.rules-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.rule-item {
    background-color: #1a0000;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.rule-item:hover {
    transform: translateX(10px);
    background-color: #260000;
}

.rule-item .rule-icon {
    font-size: 1.8rem;
    color: #ffcc00;
    flex-shrink: 0;
    margin-top: 3px;
    text-shadow: 0 0 8px #ffcc00;
}

.rule-item p {
    font-size: 1.1rem;
    color: #c9c9c9;
    line-height: 1.6;
}

.btn.view-all-rules-btn {
    margin-top: 60px;
    background-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.btn.view-all-rules-btn:hover {
    background-color: #cc0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8);
}


/* SSS Bölümü */
.faq-container {
    margin-top: 50px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #1a0000;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
    overflow: hidden;
}

.faq-question {
    font-size: 1.3rem;
    color: #ff0000;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.faq-question:hover {
    background-color: #260000;
}

.faq-question::after {
    content: '\2b'; /* Plus icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '\2212'; /* Minus icon */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #0d0d0d;
}

.faq-answer.active {
    max-height: 500px; /* Yeterince büyük bir değer */
    padding-bottom: 20px;
}

.faq-answer p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a0000;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #bbb;
}

footer a {
    color: #ff0000;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

footer a:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.8rem;
    color: #ff0000;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.2s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

.social-links a:hover {
    color: #ffcc00;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .menu {
        gap: 25px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .about-section .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-section .about-image {
        flex: none;
        width: 80%;
        max-width: 500px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a0000;
        position: absolute;
        top: 80px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 0, 0, 0.2);
    }
    .menu.active {
        display: flex;
    }
    .menu li {
        text-align: center;
        margin: 10px 0;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .feature-card {
        padding: 25px;
    }
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    .team-member img {
        width: 120px;
        height: 120px;
    }
    .team-member h3 {
        font-size: 1.6rem;
    }
    .faq-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    .logo-img {
        height: 35px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 80%;
        max-width: 300px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .feature-card h3 {
        font-size: 1.5rem;
    }
    .team-member h3 {
        font-size: 1.4rem;
    }
    .rule-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .rule-item .rule-icon {
        margin-bottom: 10px;
    }
    .faq-question {
        font-size: 1.1rem;
    }
}
