/* 1. Reset i bazy systemowe */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    /* Głębokie bordowe tło na całej stronie */
    background: radial-gradient(circle at center, #3d0303 0%, #1a0101 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    line-height: 1.6;
}

/* 2. Główny kontener strony (Wrapper) */
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

/* 3. Sekcja tekstowa (Opis projektu) */
.content-section {
    flex: 1;
    min-width: 320px;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: 800;
}

.description {
    color: #e0e0e0; /* Poprawiona czytelność tekstu */
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    opacity: 0.9;
}

/* 4. Licznik (Countdown) */
.countdown-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px;
    text-align: center;
    min-width: 70px;
    border-radius: 4px;
}

.time-box span {
    display: block;
    font-size: 24px;
    color: #d4af37;
    font-weight: bold;
}

.time-box label {
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
}

/* 5. Karta Formularza (Dołącz do nas) */
.form-section {
    flex: 0 0 400px;
}

.registration-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #d4af37;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.registration-card h2 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-card p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Pola wejściowe */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 3px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.1);
}

/* Przycisk */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d4af37;
    border: none;
    color: #1a0101;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* 6. Komunikat Sukcesu (Autoryzacja Przyjęta) */
.success-wrapper-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.luxury-card {
    display: flex;
    background: linear-gradient(135deg, #4a0404 0%, #2b0202 100%);
    border: 1px solid #d4af37;
    max-width: 750px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.luxury-icon-side {
    padding: 40px;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.shield-gold-outline {
    font-size: 50px;
    color: #d4af37;
}

.luxury-content-side {
    padding: 40px;
    flex: 1;
}

.luxury-content-side h2 {
    color: #d4af37;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.luxury-line-gold {
    height: 1px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
    margin-bottom: 20px;
}

.value-box-luxury {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.4em;
    font-weight: bold;
    letter-spacing: 2px;
}

.privacy-note {
    font-size: 10px;
    color: #666;
    margin-top: 15px;
}
