:root {
    --primary: #00ff88;
    --bg: #050505;
    --text-dim: #888;
}

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow: hidden; 
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Tło z efektem radialnym */
.hero-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, transparent, var(--bg));
    z-index: -1;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo-main {
    width: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.status-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

h1 {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

h1 span {
    color: var(--primary);
    display: block;
}

p {
    color: var(--text-dim);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 25px 0 40px 0;
}

.cta-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Przycisk Główny (Neon) */
.btn-join {
    background: var(--primary);
    color: black;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-join:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Przycisk Wtórny (Dark) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

footer {
    padding: 30px;
    color: #444;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}