*{
    transition: 0.25s ease;
}

body{
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-image: radial-gradient(circle at top,rgba(26, 0, 0, 0.75),rgba(0, 0, 0, 0.9) 70%),url('/documents/images/main.png');
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center center;
    background-size: cover, cover;
    background-attachment: scroll, fixed;
    color: #fff;
    backdrop-filter: blur(1px);
}

header{
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(80deg, #c20000, #5a0000);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

header h1{
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.description{
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(4px);
    padding: 20px 25px;
    border-left: 5px solid #c20000;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.7;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
    margin-bottom: 50px;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.naszteam {
    text-align: center;
    font-size: 22px;
    text-shadow: rgba(255, 0, 0, 0.15) 1px 0 45px;
    padding: 5px;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.features{
    text-align: center;
    text-shadow: rgba(255, 0, 0, 0.15) 1px 0 45px;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.features h2{
    color: #ff3333;
    margin-bottom: 10px;
}

.features ul{
    margin: 0;
    padding-left: 10px;
}

.features li{
    margin-bottom: 8px;
}

.team-section{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.member{
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(4px);
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 1px rgba(255, 0, 0, 0.15);
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.member:hover{
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.member img{
    width: 100px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.member img:hover{
    transform: scale(1.08);
}

.member h3{
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.discord{
    text-align: center;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.discord p{
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ddd;
}

.discord a{
    display: inline-block;
    padding: 12px 28px;
    background: #c20000;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, box-shadow 0.3s;
}

.discord a:hover{
    background: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.server-status{
    text-align: center;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 12px;
    text-shadow: rgba(255, 0, 0, 0.15) 1px 0 25px;
    animation: fadeUp 0.7s ease forwards;
    opacity: 0;
}

.server-status h2{
    color: #ff3333;
    margin-bottom: 10px;
}

#server-info{
    font-size: 1.2rem;
}

footer{
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #300;
    color: #bbb;
    font-size: 0.9rem;
}

@keyframes fadeUp {
    from{
        transform: translateY(25px);
        opacity: 0;
    }

    to{
        transform: translateY(0);
        opacity: 1;
    }
}