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

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.container {
    max-width: 1100px; /* Increased to accommodate larger horizontal layout */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.main-logo {
    height: 120px; /* Made waaaay bigger */
    max-width: 90vw;
    object-fit: contain;
    margin-top: 40px;
    mix-blend-mode: screen; /* Knocks out the pure black background */
}

.product-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px; /* Increased gap to give icon more room */
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 1000px;
}

.mega-icon {
    width: 320px; /* Made icon even bigger */
    height: 320px;
    object-fit: contain;
    mix-blend-mode: screen;
    flex-shrink: 0;
}

.mega-text-content {
    text-align: left;
    max-width: 600px; /* Increased for breathing room */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.product-title-mega {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #FFFFFF;
}

.product-desc-mega {
    font-size: 22px; /* Slightly larger text */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6; /* Increased line-height for better breathing */
    margin-bottom: 8px;
}

.cta-button {
    padding: 16px 40px;
    background: #FFFFFF;
    color: #000000;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button .arrow {
    transition: transform 0.2s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

/* ── Mobile Overrides ── */
@media (max-width: 768px) {
    .main-logo {
        height: 80px;
    }
    
    .product-hero {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .mega-text-content {
        align-items: center;
        text-align: center;
    }
    
    .mega-icon {
        width: 240px;
        height: 240px;
    }
    
    .product-title-mega {
        font-size: 36px;
    }

    .product-desc-mega {
        font-size: 18px;
    }
}
