/* Basic Reset & Body Styles */
body {
    background-image: url('blood-drip-bg.jpg'); /* !!! REPLACE 'blood-drip-bg.jpg' with YOUR image file name !!! */
    background-color: #1a0000; /* Dark red/black fallback if image doesn't load */
    background-repeat: no-repeat;
    background-position: center top; /* Position drips at the top, centered */
    background-size: cover;
    background-attachment: fixed; /* Image stays fixed during scroll */

    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    background-color: rgba(10, 0, 0, 0.8);
    padding: 30px 40px;
    border-radius: 5px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 25px rgba(150, 0, 0, 0.5);
    border: 1px solid rgba(100, 0, 0, 0.7);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    font-family: 'Creepster', cursive;
    color: #e50914;
    font-size: 2.8em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    text-shadow: 1px 1px 3px #000;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #f0f0f0;
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
    border-bottom: 1px solid rgba(200, 0, 0, 0.4);
    padding-bottom: 0.3em;
}

h3 { /* General H3 style */
    color: #e0e0e0;
    font-size: 1.5em;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* Paragraphs and Text */
p {
    margin-bottom: 1.2em;
    font-size: 1em;
}

.intro {
    font-size: 1.1em;
    color: #ccc;
}

strong { /* General strong tag, can be overridden */
    color: #ff4d4d;
    font-weight: 700;
}

em {
    color: #ffcdd2;
    font-style: italic;
}

/* Benefits List (Emojis are IN THE HTML for this list) */
.benefits-list {
    list-style-type: none; /* Removes default browser bullets */
    padding-left: 0;       /* No CSS padding needed if emojis are inline in HTML and provide spacing */
    text-align: left;
    margin-top: 1em;
    margin-bottom: 1.5em;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #ddd;
    line-height: 1.5; /* Good line height for readability with inline emojis */
    /* NO ::before rule here that adds content, as emojis are in the HTML itself */
}

/* Early CTA Section */
.cta-section {
    margin-top: 2em;
    margin-bottom: 2.5em;
    padding-top: 1em;
    border-top: 1px dashed rgba(150,0,0,0.4);
}

.early-cta-question {
    font-size: 1.2em;
    margin-bottom: 0.8em !important;
    font-weight: bold;
    color: #ff8a80;
}

/* Info Sections (using Definition Lists - Emojis are added via CSS ::before for dt) */
.info-section {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 3px solid #990000;
    border-radius: 4px;
    text-align: left;
}

.info-section h3 { /* h3 specific to info sections */
    margin-top: 0;
    margin-bottom: 1em;
    color: #ff6b6b;
    font-size: 1.4em;
}

.info-points { /* Styles for the <dl> element */
    margin: 0;
    padding-left: 0;
}

.info-points dt { /* Styles for the <dt> (term/title) element */
    font-weight: 700;
    color: #ff8a80;
    font-size: 1.05em;
    margin-bottom: 0.4em;
    position: relative;   /* CRITICAL for positioning the ::before pseudo-element */
    padding-left: 30px;   /* Space for the skull emoji + a little gap */
    line-height: 1.5;     /* Ensure line height accommodates emoji */
}

.info-points dt::before {
    content: "💀";           /* The skull emoji */
    display: inline-block;  /* Important for proper rendering and sizing */
    position: absolute;     /* Position relative to the dt parent */
    left: 0px;              /* Position at the very start of the padding area */
    top: 50%;               /* Start at the vertical middle of the dt */
    transform: translateY(-50%); /* Precisely center the emoji vertically */
    color: #cc0000;         /* Color of the skull */
    font-size: 1.2em;       /* Size of the skull emoji itself */
    line-height: 1;         /* Prevent emoji's own line height from affecting dt's layout */
    text-align: center;     /* Ensures emoji is centered if it has any width */
    width: 25px;            /* Give it a defined width to ensure it's not collapsed */
}

.info-points dd { /* Styles for the <dd> (description) element */
    margin-left: 30px; /* Should match padding-left of dt to align text */
    margin-bottom: 1.3em;
    font-size: 0.95em;
    color: #e0e0e0;
    line-height: 1.6;
}

.info-points dd strong { /* Style strong text within info point descriptions */
    color: #ffb3b3;
}
.info-points dd em { /* Style em text within info point descriptions */
    color: #ffd1d1;
}

/* Final CTA Section */
.cta-lead {
    font-size: 1.1em;
    margin-top: 2em;
    font-weight: bold;
}

.cta-question { /* For the question before the final CTA button */
    font-size: 1.2em;
    margin-bottom: 1em;
    font-weight: bold;
    color: #ff6b6b;
}

.cta-button {
    display: inline-block;
    background-color: #990000;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    font-family: 'Creepster', cursive;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 0.5em;
    margin-bottom: 1em;
    border: 2px solid #660000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.cta-button.early-cta-button {
    margin-bottom: 0;
}

.cta-button:hover {
    background-color: #b20000;
    border-color: #990000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

/* Footer Note */
.footer-note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 2.5em;
    border-top: 1px solid rgba(100,0,0,0.5);
    padding-top: 1em;
    font-style: italic;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 25px 30px;
    }
    h1 {
        font-size: 2.4em;
    }
}

@media (max-width: 600px) {
    .content-wrapper {
        padding: 20px 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 2.0em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 { /* General h3 */
        font-size: 1.3em;
    }
    .info-section h3 { /* h3 within info section */
        font-size: 1.2em;
    }
    .info-points dt {
        font-size: 1em;
        padding-left: 28px; /* Adjusted padding slightly for smaller screens */
    }
    .info-points dt::before {
        font-size: 1.1em; /* Slightly smaller emoji on small screens */
        width: 23px; /* Adjust width accordingly */
    }
    .info-points dd {
        font-size: 0.9em;
        margin-left: 28px; /* Match dt padding */
    }
    .benefits-list li {
        font-size: 0.95em;
    }
    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .early-cta-question, .cta-question {
        font-size: 1.1em;
    }
}