* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    overflow: hidden;
}

/* TŁO */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('bg.png') !important; /* Nazwa z Twojego folderu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.5);
    z-index: -1;
    transform: scale(1.1);
}

/* NAWIGACJA */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.discord-btn img { width: 18px; filter: brightness(0) invert(1); }

.nav-menu a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

/* ŚRODEK STRONY */
.main-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    line-height: 0.8;
    text-transform: uppercase;
    text-shadow: 6px 6px 0px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.subtitle { font-size: 90px; }

.text-box {
    max-width: 850px;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 2px 2px 4px #000;
}