<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #222;
    text-align: center;
    line-height: 1.6;
}

/* Header */
header {
    position: relative;
    height: 70vh; /* Can be adjusted if needed */
    min-height: 500px; /* Ensure space for the button */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 50px;
    overflow: hidden;
}

/* Blurred background layer */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('selfos-photo.webp') no-repeat center center;
    background-size: cover;
    filter: blur(1px);
    transform: scale(1.1);
    z-index: 0;
}

/* NEW: Dark translucent overlay for text contrast */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    z-index: 1;
}

/* Keep header content above blur and overlay */
header &gt; * {
    position: relative;
    z-index: 2;
}

header h1 {
    color: #fef3c7; /* soft warm light yellow */
    font-size: 6.2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}

header p {
    color: #fdf6e3; /* warm light beige */
    font-size: 1.9rem;
    margin-top: 0rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    margin-top: 2rem;
    margin-bottom: 70px; /* Added margin to ensure space at the bottom */
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #6a0dad;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #5800b0;
}

.features {
    padding: 2rem;
    background-color: #fff;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features p {
    font-size: 1.2rem;
    margin: 1rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-buttons {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.social-buttons a {
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}

.social-buttons a.facebook {
    background-color: #3b5998;
}

.social-buttons a.x {
    background-color: #1da1f2;
}

.social-buttons a.linkedin {
    background-color: #0077b5;
}

.social-buttons a.reddit {
    background-color: #ff4500;
}

.social-buttons a.email {
    background-color: #6a0dad;
}

footer {
    padding: 1rem;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    header {
        padding: 30px 15px;
        height: auto;
        min-height: 80vh;
    }

    header h1 {
        font-size: 3rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    header p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.6rem;
    }

    .features {
        padding: 1rem;
    }

    .features h2 {
        font-size: 1.5rem;
    }

    .features p {
        font-size: 1rem;
    }

    .social-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-buttons a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 1.2rem;
    }
}

section {
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

section h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

section p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

section ul {
    list-style: disc inside;
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

section li {
    margin-bottom: 1rem;
}

.cta-button {
    font-size: 1.1rem;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1.5rem;
    display: inline-block;
}
</pre></body></html>