/* Główne ustawienia - Mistyczny klimat */
body {
    background-color: #0d0221; /* Bardzo ciemny fiolet/granat */
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    color: #8a2be2; /* Fioletowy kolor magii */
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* Sekcja wpisywania danych */
.input-section {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

input {
    padding: 12px;
    width: 70%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
}

button {
    padding: 12px 25px;
    background-color: #8a2be2;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #a04ef6;
}

/* Okno z horoskopem - tutaj dzieje się magia */
.horoscope-box {
    margin-top: 30px;
    text-align: left;
    background: rgba(138, 43, 226, 0.1);
    border-left: 5px solid #8a2be2;
    padding: 25px;
    border-radius: 0 15px 15px 0;
    min-height: 100px;
}

/* Miejsce na Google Adsense */
.adsense-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed #444;
    margin: 25px 0;
    padding: 15px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-label {
    font-size: 9px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Stopka */
footer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    font-size: 0.9rem;
    color: #888;
}

.footer-links a {
    color: #8a2be2;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}