@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #060818;
    color: #fff;
    overflow-x: hidden;
}

/* ====================== PRELOADER ====================== */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #060818;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.8s ease, visibility 1.8s ease;
}

.loader {
    text-align: center;
}

.loader h1 {
    font-size: 130px;
    font-weight: 800;
    background: linear-gradient(90deg, #9a4dff, #00d4ff, #ff4fe0);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(153, 77, 255, 0.6);
    animation: textPulse 3s infinite;
}

.glow-line {
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #bb7aff, #00eaff);
    margin: 40px auto;
    border-radius: 10px;
    animation: lineGrow 4.2s forwards;
    box-shadow: 0 0 30px #bb7aff;
}

.loader p {
    color: #bb86fc;
    font-size: 20px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
}

@keyframes lineGrow { to { width: 70%; } }
@keyframes textPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes fadeIn { to { opacity: 1; } }
.preloader-fade-out { opacity: 0; visibility: hidden; }

/* ====================== PARTİKÜL ====================== */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

/* ====================== HEADER ====================== */
header {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
    background: rgba(6, 8, 24, 0.65);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo {
    font-size: 34px;
    font-weight: 700;
    color: #bb7aff;
    text-shadow: 0 0 15px #bb7aff;
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #b6b6ff;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: #ff8cff;
    text-shadow: 0 0 12px #ff8cff;
}

/* ====================== HERO ====================== */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.neon-border {
    padding: 40px 60px;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(#060818, #060818) padding-box,
                linear-gradient(90deg, #9a4dff, #00d4ff, #ff4fe0) border-box;
    animation: neonPulse 4s infinite alternate;
    box-shadow: 0 0 40px rgba(153, 77, 255, 0.4);
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 20px rgba(153, 77, 255, 0.4); }
    100% { box-shadow: 0 0 60px rgba(255, 77, 255, 0.7); }
}

.subtitle {
    font-size: 28px;
    color: #ffb3ff;
    text-shadow: 0 0 15px #ff3edb;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 800;
    background: linear-gradient(90deg, #9a4dff, #00d4ff, #ff4fe0);
    -webkit-background-clip: text;
    color: transparent;
    min-height: 110px;
}

.motto {
    font-size: 23px;
    color: #d7d7ff;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ====================== ABOUT ====================== */
.about {
    padding: 140px 40px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #bb86fc, #00d4ff);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 40px;
}

.about-content {
    background: rgba(255,255,255,0.03);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(187, 122, 255, 0.3);
    box-shadow: 0 0 30px rgba(153, 77, 255, 0.2);
}

.about-content h3 {
    color: #c27bff;
    margin: 30px 0 15px;
    font-size: 26px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0d8ff;
    margin-bottom: 20px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #bb7aff, transparent);
    margin: 40px 0;
}

/* KARTLAR */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 1200px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(187,122,255,0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(139,70,255,0.4);
    border-color: #bb86fc;
}

.feature-card span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 22px;
    margin: 15px 0;
    color: #c27bff;
}

.feature-card p {
    font-size: 16px;
    color: #d7d7ff;
}

.join-call {
    font-size: 22px !important;
    font-weight: 600;
    background: linear-gradient(90deg, #ff6bc4, #8b46ff);
    -webkit-background-clip: text;
    color: transparent;
    margin: 40px 0;
}

.big-join-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: linear-gradient(90deg, #8b46ff, #00c3ff, #ff35d8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(139, 70, 255, 0.6);
    transition: all 0.3s;
}

.big-join-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
}

/* ====================== YAYINCILAR (STREAMERS) YENİ GRID DÜZENİ ====================== */
.streamers-section {
    padding: 100px 40px; 
    text-align: center;
    overflow-x: hidden;
}

.streamers-section h2 {
    font-size: 48px;
    background: linear-gradient(90deg, #ff35d8, #00c3ff);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 50px; 
}

/* YENİ IZGARA KAPSAYICISI */
.streamers-grid {
    display: grid;
    /* Otomatik sığan sütunlar: minimum 150px, maksimum 1fr */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto; 
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(139, 70, 255, 0.3);
}

.streamer-profile {
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #d7d7ff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    padding: 15px;
    border-radius: 15px;
}

.streamer-profile:hover {
    transform: translateY(-8px); 
    background: rgba(187, 122, 255, 0.1);
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.4);
}

.streamer-profile img {
    width: 120px; 
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #c27bff;
    box-shadow: 0 0 20px #c27bff;
    display: block;
    margin-bottom: 15px; 
    transition: all 0.4s;
}

.streamer-profile:hover img {
    border-color: #00d4ff; 
    box-shadow: 0 0 25px #00d4ff;
}

.streamer-profile span {
    display: block;
    font-size: 18px; 
    font-weight: 700;
    color: #fff;
}

.streamer-note {
    margin-top: 40px;
    font-size: 18px;
    color: #bb7aff;
}
/* ====================== YAYINCILAR SONU ====================== */

/* ====================== COMMUNITY ====================== */
.community {
    padding: 100px 20px;
    text-align: center;
}

.community h2 {
    display: none;
}

.widget-box {
    width: 410px;
    margin: 40px auto;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(180,0,255,0.25);
    backdrop-filter: blur(10px);
}

/* ====================== YÜZEN BUTON ====================== */
.floating-discord {
    position: fixed;
    right: 30px;
    bottom: 30px;
    padding: 16px 34px;
    background: linear-gradient(90deg, #8b46ff, #00c3ff, #ff35d8);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    box-shadow: 0 0 25px #8b46ff;
    z-index: 9999;
    animation: float 3s infinite ease-in-out;
    transition: 0.3s;
}

.floating-discord:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 40px #00d4ff;
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ====================== FOOTER ====================== */
footer {
    background: linear-gradient(to top, #090d1b, #0f1429);
    padding: 80px 40px 30px;
    margin-top: 100px;
    border-top: 1px solid rgba(187,122,255,0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-left h3 {
    font-size: 36px;
    background: linear-gradient(90deg, #bb86fc, #00d4ff);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-left p {
    margin-top: 10px;
    color: #b6b6ff;
    font-size: 15px;
}

.footer-center p {
    font-size: 16px;
    color: #b6b6ff;
}

.footer-center .small {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

.footer-right .auren {
    color: #ff8cff;
    margin-bottom: 15px;
    font-size: 15px;
}

.social-links a {
    font-size: 28px;
    color: #bb86fc;
    margin: 0 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00d4ff;
    transform: scale(1.3);
}

/* ====================== MOBİL UYUMLULUK ====================== */
@media (max-width: 768px) {
    .hero h1 { font-size: 56px; }
    .neon-border { padding: 30px 20px; }
    .about { padding: 100px 20px; }
    .about h2 { font-size: 36px; }
    header { padding: 15px 20px; }
    nav a { margin: 0 8px; font-size: 14px; }
    .features-grid { grid-template-columns: 1fr; }
    .loader h1 { font-size: 90px; }
    footer { padding: 60px 20px 30px; }

    /* YENİ YAYINCI MOBİL DÜZENLEMESİ */
    .streamers-section { padding: 80px 20px; }
    .streamers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
        gap: 20px;
    }
    .streamer-profile img {
        width: 90px;
        height: 90px;
    }
}