/* RESET I PODSTAWA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

/* TŁO Z EFEKTEM GŁĘBI */
.background-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    z-index: -1;
}

/* KONTENER GŁÓWNY */
.main-container {
    max-width: 800px;
    padding: 40px;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TYPOGRAFIA */
.welcome-text {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #eb9309;
    margin-bottom: 10px;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 8vw, 80px);
    line-height: 1;
    margin-bottom: 30px;
}

h1 span {
    color: #eb9309;
}

.content-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

/* PRZYCISKI */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #eb9309;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #333;
    color: #fff;
}

.btn-secondary:hover {
    border-color: #eb9309;
    color: #eb9309;
}

/* STOPKA */
footer {
    margin-top: 60px;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}