* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: #111;
    overflow-x: hidden;
}

/* Tło strony (Hero Section) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Tutaj wklej link do swojego zdjęcia */
    background-image: url('https://files.facepunch.com/paddy/20240905/rust_202409_ttk_heroimage.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Przyciemnienie tła, żeby napisy były czytelne */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Kontener z treścią */
.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Główny napis */
.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    margin-bottom: 30px;
}

/* Kontener na 3 informacje */
.info-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.info-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #8bc34a; /* Kolor koperkowy/zielony */
    margin-bottom: 5px;
}

.info-box p {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Przycisk dołączenia */
.btn-join {
    display: inline-block;
    padding: 15px 40px;
    background: #4caf50;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-join:hover {
    background: transparent;
    border: 2px solid #4caf50;
    box-shadow: 0 0 15px #4caf50;
}

/* Stopka */
footer {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #222;
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .info-container { flex-direction: column; gap: 20px; }
}