/* Resetowanie domyślnych marginesów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; /* Głęboka czerń */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

/* Główny kontener strony */
.container {
    width: 100%;
    max-width: 500px; /* Wąsko, żeby wyglądało jak aplikacja mobilna */
    padding: 40px 20px;
}

/* Stylowanie nagłówka */
h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
    /* Efekt metalicznego gradientu na tekście */
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Zdjęcie produktu */
.hero img, .hero video {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
}

/* Korzyści */
.benefits ul {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
    display: inline-block;
}

.benefits li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #cccccc;
    font-weight: 700;
}

/* Sekcja zapisu */
.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-section p {
    color: #888888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Kontener na formularz MailerLite */
#mailerlite-form-container {
    background-color: #141414;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* --- WYMUSZONY WYGLĄD FORMULARZA MAILERLITE --- */

/* 1. Usuwamy białe tła, które ładuje MailerLite */
#mailerlite-form-container .ml-form-embedWrapper,
#mailerlite-form-container .ml-form-embedContainer,
#mailerlite-form-container .ml-block-form {
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. Ukrywamy ich domyślne teksty ("Newsletter" itp.) */
#mailerlite-form-container .ml-form-embedWrapper h2,
#mailerlite-form-container .ml-form-embedWrapper h3,
#mailerlite-form-container .ml-form-embedWrapper h4,
#mailerlite-form-container .ml-form-embedWrapper p {
    display: none !important;
}

/* 3. Stylowanie pola na e-mail (Mroczne premium) */
#mailerlite-form-container .ml-form-embedWrapper input[type="email"],
#mailerlite-form-container .ml-form-embedWrapper input[type="text"] {
    background-color: #050505 !important; /* Bardzo głęboka czerń */
    border: 1px solid #333 !important;
    color: #ffffff !important;
    padding: 16px !important;
    border-radius: 8px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5) !important; /* Lekkie wcięcie */
    margin-bottom: 12px !important;
    height: auto !important;
}

#mailerlite-form-container .ml-form-embedWrapper input:focus {
    border-color: #666 !important;
    outline: none !important;
}

/* 4. Stylowanie przycisku (Złoty akcent) */
#mailerlite-form-container .ml-form-embedWrapper button {
    background-color: #d4af37 !important; /* Złoty (możesz zmienić na kolor diod Promila) */
    color: #000000 !important;
    font-weight: 900 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 16px !important;
    border-radius: 8px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#mailerlite-form-container .ml-form-embedWrapper button:hover {
    background-color: #b5952f !important;
    transform: translateY(-2px) !important;
}

/* 5. Ukrycie marginesów wokół przycisku */
#mailerlite-form-container .ml-form-embedWrapper .ml-button-position {
    margin: 0 !important;
    padding: 0 !important;
}