/* --- RESET I BAZA --- */
:root {
    --neon-cyan: #00F0FF;
    --bg-dark: #050a10;
    --glass-bg: rgba(2, 6, 12, 0.7);
}

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

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- KONTENER GŁÓWNY --- */
.center-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

/* --- RAMKA TYTUŁOWA --- */
.title-box {
    border: 2px solid var(--neon-cyan);
    background: var(--glass-bg);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
    padding: 45px 85px;
    margin-bottom: 70px;
    text-align: center;
    backdrop-filter: blur(5px);
    min-width: 620px;
}

.title-box h1 {
    font-family: 'Saira', sans-serif;
    font-weight: 900;
    font-size: 4.2rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 30px var(--neon-cyan);
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.title-box p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    letter-spacing: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

/* --- STATUS --- */
.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: var(--neon-cyan);
    margin-left: 8px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- FORMULARZ --- */
.form-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 5px var(--neon-cyan);
    width: 100%;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

input[type="email"] {
    flex-grow: 1;
    background: rgba(0, 10, 20, 0.8);
    border: 1px solid var(--neon-cyan);
    border-right: none;
    padding: 0 20px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    outline: none;
    text-transform: uppercase;
}

.submit-btn {
    background-color: var(--neon-cyan);
    color: #000;
    border: 1px solid var(--neon-cyan);
    padding: 0 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #fff;
    box-shadow: 0 0 30px var(--neon-cyan);
}

/* --- KONTAKT I SOCIALE --- */
.contact-footer {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.icon-box {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.2rem;
    width: 38px; 
    height: 38px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: 0.3s;
    background: rgba(0,0,0,0.3);
}

.icon-box:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.footer-link {
    color: var(--neon-cyan);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    opacity: 0.7;
    font-family: 'JetBrains Mono', monospace;
    transition: 0.3s;
}

.footer-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* --- EST. 2025 --- */
.est-date {
    position: absolute;
    bottom: 35px;
    left: 50px;
    z-index: 10;
    font-family: 'Saira', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    border-left: 3px solid var(--neon-cyan);
    padding-left: 12px;
    line-height: 1;
}

/* --- MOBILE --- */
@media (max-width: 700px) {
    .title-box { 
        padding: 30px 20px; 
        min-width: unset; 
        width: 92%; 
        margin-bottom: 40px;
    }
    .title-box h1 { font-size: 2.3rem; }
    .newsletter-form { flex-direction: column; height: auto; }
    input[type="email"] { border-right: 1px solid var(--neon-cyan); margin-bottom: 12px; height: 45px; }
    .submit-btn { height: 45px; }
    
    .contact-footer {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
    }
    .est-date { position: relative; left: auto; bottom: auto; margin-top: 20px; text-align: center; border: none; padding: 0; }
    
    /* POPRAWKI DLA MOBILE */
    body { 
        overflow-y: auto; 
        height: auto; 
        padding: 40px 0; 
        flex-direction: column; /* Naprawia układanie elementów w pionie */
        width: 100%;            /* Zapobiega poziomemu paskowi przewijania */
    }
}