:root {
    --gold: #d4af37;
    --red: #dc143c;
    --soft-white: #fcfcfc;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.background-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, #fff 70%);
    z-index: -1;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
}

/* Sekcja Logo - Naprawa wyglądu */
.logo-area {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 25%; /* To sprawia, że białe tło logo staje się kołem */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 5;
    background: white; /* Spójność z białym tłem grafiki */
}

.glass-bg {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.orbit-gold, .orbit-red {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.orbit-gold {
    width: 240px; height: 240px;
    border-top: 2px solid var(--gold);
    animation: rotate 12s linear infinite;
}

.orbit-red {
    width: 230px; height: 230px;
    border-bottom: 2px solid var(--red);
    animation: rotate 8s linear infinite reverse;
    opacity: 0.3;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }

/* Napisy */
.main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 8px;
    margin: 0;
    color: var(--gold);
}

.tagline {
    letter-spacing: 10px;
    font-weight: 300;
    color: #777;
    margin-top: 5px;
}

.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.line { width: 60px; height: 1px; background: #eee; }
.heart-icon { color: var(--red); font-size: 1.2rem; }

.status-badge {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 30px;
}

/* Licznik */
#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-part {
    display: flex;
    flex-direction: column;
}

.time-part span {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
}

.time-part label {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
}

/* Formularz */
.join-us {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.join-us input {
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    outline: none;
    width: 220px;
}

.join-us button {
    padding: 12px 25px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.join-us button:hover {
    background: #333;
}