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

body {
    background-color: #000;
    background-image: url('nebula.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

/* Delikatne przyciemnienie tła dla lepszej czytelności */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-section {
    margin-bottom: 60px;
}

.logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1); /* Zapewnia biały kolor logo jeśli oryginał jest czarny */
}

.headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.25;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.description {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 50px auto;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.cta-section {
    margin-top: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.arrow {
    margin-left: 8px;
    display: inline-block;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .headline {
        margin-bottom: 30px;
    }
}
