/* --- Global Reset & Typography --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevents side-scrolling on mobile */
    -webkit-font-smoothing: antialiased;
}

/* --- Main Layout --- */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* --- Branding --- */
.official-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 10px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.logo-ginjer {
    color: #000000;
    font-weight: 800;
}

.logo-news {
    color: #d05401;
    font-weight: 300;
}

.status-tag {
    color: #d05401;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 1.2rem;
    color: #1a1a1a;
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

/* --- Email Capture (Desktop Mode) --- */
.email-capture {
    width: 100%;
    max-width: 600px;
    margin-bottom: 60px;
}

#mc-embedded-subscribe-form {
    display: flex;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 8px;
}

.email-input {
    flex: 1;
    padding: 20px 25px;
    border: 2px solid #000000;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.premium-button {
    padding: 20px 35px;
    background-color: #d05401;
    color: #ffffff;
    border: 2px solid #d05401;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.premium-button:hover {
    background-color: #000000;
    border-color: #000000;
}

/* --- Sources --- */
.source-header {
    color: #000000;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.source-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    color: #333;
    font-weight: 800;
}

/* --- Footer & Socials (Fixed Blue Error) --- */
footer {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.social-links a {
    text-decoration: none !important;
    color: #000000 !important; /* Force Black for Desktop & Mobile */
    font-size: 1.4rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.social-links a:hover {
    color: #d05401 !important;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
}

/* --- THE MOBILE FIX (Crucial Section) --- */
@media (max-width: 650px) {
    .content-wrapper {
        padding-top: 80px;
    }

    h1 {
        font-size: 2.5rem;
    }

    #mc-embedded-subscribe-form {
        flex-direction: column; /* Stacks the box and button */
        box-shadow: none;
    }

    .email-input {
        border: 2px solid #000;
        border-radius: 8px; /* Rounded all around for mobile */
        margin-bottom: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .premium-button {
        border-radius: 8px; /* Rounded all around for mobile */
        width: 100%;
        box-sizing: border-box;
    }

    .source-list {
        gap: 15px;
        font-size: 0.9rem;
    }
}