*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Orbitron',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#05070d;
    color:white;
}

/* Hintergrund */
.background{
    position:fixed;
    inset:0;
    background:radial-gradient(circle at top,#0d6efd33,#05070d 70%);
    z-index:-1;
    pointer-events:none;
}
/* Navigation */
nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(10px);
    z-index:9999;
}
.logo{
    font-size:30px;
    font-weight:bold;
    color:#00aaff;
    text-shadow:0 0 20px #00aaff;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#00aaff;
}

/* Hero */
.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px;

    background:
        radial-gradient(circle at top,#0d6efd44,#05070d 70%);
}

.hero h1{
    font-size:90px;
    color:#00aaff;
    text-shadow:0 0 25px #00aaff;
}

.hero p{
    margin:20px 0;
    font-size:24px;
    color:#ccc;
}

.button{
    display:inline-block;
    padding:16px 35px;
    background:#00aaff;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.button:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px #00aaff;
}

/* Bereiche */
section{
    padding:100px 10%;

}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:rgba(20,25,40,.85);
    border:1px solid rgba(0,170,255,.3);
    border-radius:20px;
    padding:30px;
    transition:0.3s;
    backdrop-filter:blur(8px);
}

.card h3{
    color:#00aaff;
    margin-bottom:15px;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,170,255,.5);
}

h2{
    color:#00aaff;
    margin-bottom:20px;
}

footer{
    text-align:center;
    padding:30px;
    color:#777;
    border-top:1px solid #222;
}

@media(max-width:768px){

.hero h1{
    font-size:55px;
}

.hero p{
    font-size:18px;
}

nav{
    flex-direction:column;
    gap:15px;
}

nav ul{
    gap:15px;
}

}

.hero h1{
    animation:glow 2s infinite alternate;
}

@keyframes glow{

from{
text-shadow:0 0 20px #00aaff;
}

to{
text-shadow:
0 0 40px #00aaff,
0 0 70px #00aaff,
0 0 100px #00aaff;
}

}

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.stat-box{
    width:220px;
    padding:30px;
    background:rgba(15,20,35,.85);
    border:1px solid rgba(0,170,255,.4);
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(0,170,255,.5);
}

.number{
    display:block;
    font-size:42px;
    font-weight:bold;
    color:#00aaff;
    margin-bottom:10px;
    text-shadow:0 0 20px #00aaff;
}

.social-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.social{
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    transition:0.3s;
}

.twitch{
    background:#9146FF;
}

.discord{
    background:#5865F2;
}

.tiktok{
    background:#111;
    border:1px solid #00f2ff;
}

.social:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(0,170,255,.6);
}

footer{
    text-align:center;
    padding:30px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#999;
}

.stream-container{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.stream-card{
    width:100%;
    max-width:800px;
    padding:40px;
    background:rgba(15,20,35,.9);
    border:1px solid rgba(0,170,255,.4);
    border-radius:20px;
    text-align:center;
    box-shadow:0 0 30px rgba(0,170,255,.2);
}

.stream-card h3{
    color:#00aaff;
    margin-bottom:20px;
    font-size:30px;
}

.stream-card p{
    margin-bottom:30px;
    color:#ccc;
    font-size:18px;
}

.stream-card:hover{
    transform:translateY(-8px);
    transition:0.3s;
    box-shadow:0 0 35px rgba(0,170,255,.5);
}

.community-box{
    max-width:900px;
    margin:40px auto;
    text-align:center;
    background:rgba(15,20,35,.85);
    padding:50px;
    border-radius:20px;
    border:1px solid rgba(0,170,255,.4);
    box-shadow:0 0 30px rgba(0,170,255,.15);
}

.community-box h3{
    color:#00aaff;
    font-size:32px;
    margin-bottom:20px;
}

.community-box p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
    font-size:18px;
}

.community-box:hover{
    transform:translateY(-8px);
    transition:0.3s;
    box-shadow:0 0 40px rgba(0,170,255,.4);
}

.hero-content{
    max-width:900px;
    text-align:center;
}

.live-badge{
    display:inline-block;
    background:#ff2d55;
    color:#fff;
    padding:8px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:20px;
    animation:pulse 1.5s infinite;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.secondary{
    background:transparent;
    border:2px solid #00aaff;
}

.secondary:hover{
    background:#00aaff;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

.menu-toggle{
    display:none;
    font-size:32px;
    color:#00aaff;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    #nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        text-align:center;
        margin-top:20px;
    }

    #nav-links.active{
        display:flex;
    }

    nav{
        flex-wrap:wrap;
    }
}
}

.schedule-box{
    max-width:700px;
    margin:40px auto;
    padding:30px;
    background:rgba(15,20,35,.85);
    border:1px solid rgba(0,170,255,.4);
    border-radius:20px;
    text-align:left;
    box-shadow:0 0 20px rgba(0,170,255,.2);
}

.schedule-box p{
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
    font-size:18px;
}

.schedule-box p:last-child{
    border-bottom:none;
}

.schedule-box strong{
    color:#00aaff;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:40px;
}

.about-card{
    background:rgba(15,20,35,.9);
    border:1px solid rgba(0,170,255,.3);
    border-radius:20px;
    padding:35px;
    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(0,170,255,.4);
}

.about-card h3{
    color:#00aaff;
    margin-bottom:15px;
}

.about-card p{
    color:#ccc;
    line-height:1.8;
}

.connect-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
    list-style:none;
    padding:0;
}

.connect-card{
    background:rgba(15,20,35,.9);
    border:1px solid rgba(0,170,255,.3);
    border-radius:18px;
    padding:30px;
    text-align:center;
    text-decoration:none;
    color:white;
    transition:.3s;
}

.connect-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(0,170,255,.5);
    border-color:#00aaff;
}

.connect-card h3{
    color:#00aaff;
    margin-bottom:12px;
}

.connect-card p{
    color:#ccc;
}

.faq-box{
    max-width:900px;
    margin:40px auto;
}

.faq-item{
    background:rgba(15,20,35,.9);
    border:1px solid rgba(0,170,255,.3);
    border-radius:15px;
    padding:25px;
    margin-bottom:20px;
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(0,170,255,.4);
}

.faq-item h3{
    color:#00aaff;
    margin-bottom:10px;
}

.faq-item p{
    color:#ccc;
    line-height:1.6;
}

#topBtn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#00aaff;
    color:white;
    font-size:24px;
    cursor:pointer;
    display:none;
    box-shadow:0 0 20px rgba(0,170,255,.5);
    transition:.3s;
    z-index:999;
}

#topBtn:hover{
    transform:scale(1.1);
    background:#0088cc;
}

.live-status{
    display:inline-block;
    margin-top:25px;
    padding:12px 25px;
    border-radius:999px;
    font-weight:bold;
    font-size:18px;
    transition:.3s;
}

.live-status.online{
    background:#00c853;
    color:white;
    box-shadow:0 0 20px #00c853;
}

.live-status.offline{
    background:#d32f2f;
    color:white;
    box-shadow:0 0 20px #d32f2f;
}