/* ========================================
   GIVEAWAY PAGE STYLES
   Everyone Ends Up Poor Landing Page
   ======================================== */

:root {
    --giveaway-yellow: #FFE500;
    --giveaway-dark: #1a1a1a;
    --giveaway-navy: #1E3A5F;
    --giveaway-white: #ffffff;
    --giveaway-grey: #f5f5f5;
    --giveaway-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.giveaway-page {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--giveaway-text);
    background: var(--giveaway-white);
}

.giveaway-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.giveaway-hero {
    background: var(--giveaway-white);
    padding: 3rem 0;
    text-align: center;
}

.giveaway-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--giveaway-yellow);
    font-style: italic;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.giveaway-subtitle {
    font-size: 20px;
    color: var(--giveaway-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.giveaway-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.giveaway-hero-image img {
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.giveaway-hero-form {
    text-align: center;
}

.giveaway-form-intro {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.giveaway-form-box {
    background: var(--giveaway-yellow);
    padding: 1.5rem;
    border-radius: 8px;
}

.giveaway-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--giveaway-dark);
    margin-bottom: 0.5rem;
}

.giveaway-form-note {
    font-size: 14px;
    color: var(--giveaway-dark);
    margin-bottom: 1rem;
}

.giveaway-form-box iframe {
    min-height: 300px;
    margin-bottom: 1rem;
}

.giveaway-form-safe {
    font-size: 12px;
    color: var(--giveaway-dark);
    font-style: italic;
}

/* Hero CTA Box */
.giveaway-hero-cta {
    text-align: center;
}

.giveaway-cta-box-hero {
    background: var(--giveaway-yellow);
    padding: 2rem;
    border-radius: 8px;
}

.giveaway-cta-button {
    display: inline-block;
    background: #000000;
    color: var(--giveaway-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.giveaway-cta-button:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.giveaway-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--giveaway-text);
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--giveaway-grey);
    border-radius: 8px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.giveaway-section {
    padding: 4rem 0;
}

.giveaway-section-white {
    background: var(--giveaway-white);
}

.giveaway-section-grey {
    background: var(--giveaway-grey);
}

.giveaway-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--giveaway-dark);
    margin-bottom: 2rem;
    text-decoration: underline;
    text-decoration-color: var(--giveaway-yellow);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.giveaway-section-title-center {
    text-align: center;
}

.giveaway-content-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
}

.giveaway-point {
    margin-bottom: 2rem;
}

.giveaway-point-title {
    font-weight: 700;
    color: var(--giveaway-dark);
    margin-bottom: 0.5rem;
}

.giveaway-point-title span {
    background: var(--giveaway-yellow);
    padding: 0 4px;
}

.giveaway-cta-box {
    background: var(--giveaway-yellow);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
}

.giveaway-cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--giveaway-dark);
    margin-bottom: 1rem;
}

.giveaway-cta-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--giveaway-dark);
}

.giveaway-content-sidebar {
    text-align: center;
}

.giveaway-sidebar-book {
    max-width: 320px;
    height: auto;
    margin-bottom: 2rem;
}

.giveaway-mpi-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 2rem;
}

.giveaway-sidebar-box {
    background: var(--giveaway-yellow);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
}

.giveaway-sidebar-box-white {
    background: var(--giveaway-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ========================================
   OPTIONS SECTION
   ======================================== */
.giveaway-options-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    margin-bottom: 3rem;
}

.giveaway-option {
    margin-bottom: 2rem;
}

.giveaway-option h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--giveaway-dark);
    background: var(--giveaway-yellow);
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
}

.giveaway-options-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.giveaway-options-book {
    max-width: 280px;
    height: auto;
    border-radius: 12px;
}

.giveaway-headshot-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--giveaway-yellow);
}

/* CTA Button Boxes */
.giveaway-cta-button-box {
    display: block;
    background: var(--giveaway-yellow);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.giveaway-cta-button-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.giveaway-cta-button-text {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--giveaway-dark);
    margin-bottom: 1rem;
}

.giveaway-cta-button-box .giveaway-cta-quote {
    display: block;
    font-size: 14px;
    font-style: italic;
    color: var(--giveaway-dark);
}

/* ========================================
   INLINE FORM SECTION
   ======================================== */
.giveaway-inline-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.giveaway-inline-form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--giveaway-dark);
    margin-bottom: 0.5rem;
}

.giveaway-inline-form-subtitle {
    font-size: 16px;
    color: var(--giveaway-text);
    margin-bottom: 1rem;
}

.giveaway-inline-form {
    background: var(--giveaway-yellow);
    padding: 1.25rem 1.25rem 0.25rem 1.25rem;
    border-radius: 8px;
}

.giveaway-inline-form iframe {
    min-height: 460px;
}

#get-free-ebook {
    padding: 2.5rem 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.giveaway-thankyou {
    min-height: 100vh;
    padding: 3rem 0;
    background: var(--giveaway-grey);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.giveaway-thankyou-card {
    background: var(--giveaway-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    border-top: 5px solid var(--giveaway-navy);
}

.giveaway-thankyou-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--giveaway-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.giveaway-thankyou-divider {
    height: 2px;
    background: var(--giveaway-grey);
    margin-bottom: 1.5rem;
}

.giveaway-thankyou-text {
    font-size: 16px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.giveaway-thankyou-subhead {
    font-size: 20px;
    font-weight: 700;
    color: var(--giveaway-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.giveaway-thankyou-ps {
    font-size: 16px;
    margin-bottom: 2rem;
    text-align: left;
}

.giveaway-calendar-wrapper {
    min-height: 600px;
}

.giveaway-calendar-wrapper iframe {
    min-height: 600px;
}

/* ========================================
   FOOTER
   ======================================== */
.giveaway-footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    color: var(--giveaway-white);
}

.giveaway-footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.giveaway-footer p {
    font-size: 14px;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.giveaway-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.giveaway-footer a:hover {
    color: var(--giveaway-yellow);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .giveaway-title {
        font-size: 40px;
    }

    .giveaway-subtitle {
        font-size: 16px;
    }

    .giveaway-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .giveaway-hero-image img {
        max-width: 200px;
    }

    .giveaway-form-title {
        font-size: 18px;
    }

    .giveaway-section-title {
        font-size: 20px;
    }

    .giveaway-inline-form-title {
        font-size: 26px;
    }

    #get-free-ebook {
        padding: 2rem 0;
    }

    .giveaway-content-grid,
    .giveaway-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .giveaway-content-sidebar {
        order: -1;
    }

    .giveaway-sidebar-book {
        max-width: 220px;
    }

    .giveaway-mpi-logo {
        max-width: 200px;
    }

    .giveaway-options-image {
        order: -1;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .giveaway-options-book {
        max-width: 150px;
        border-radius: 8px;
    }

    .giveaway-headshot-large {
        width: 130px;
        height: 130px;
    }

    .giveaway-cta-button-text {
        font-size: 20px;
    }

    .giveaway-thankyou-title {
        font-size: 24px;
        text-align: center;
    }

    .giveaway-thankyou-card {
        padding: 1.5rem;
    }

    .giveaway-thankyou-text,
    .giveaway-thankyou-subhead,
    .giveaway-thankyou-ps {
        text-align: left;
    }

    .giveaway-inline-form-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .giveaway-container {
        padding: 0 1rem;
    }

    .giveaway-title {
        font-size: 26px;
    }

    .giveaway-hero-image img {
        max-width: 160px;
    }

    .giveaway-section {
        padding: 2.5rem 0;
    }

    .giveaway-section-title {
        font-size: 20px;
    }

    .giveaway-thankyou-title {
        font-size: 20px;
        text-align: center;
    }

    .giveaway-thankyou-text,
    .giveaway-thankyou-subhead,
    .giveaway-thankyou-ps {
        text-align: left;
    }
}
