* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    user-select: none;
}

body {
    background: #f7f8fb;
    color: #1e1e2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    content: url("../images/light/ConfusedKitty.svg");
}

.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e1e2e;
}

.text-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a4a68;
    margin-bottom: 20px;
}

.meta {
    display: block;
    font-size: 0.85rem;
    color: #7a7a96;
    letter-spacing: 0.02em;
}

/* Mobile layout */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .image-section {
        width: 100%;
    }

    .image-section img {
        max-height: 240px;
        width: auto;
    }

    .text-section h1 {
        font-size: 2.4rem;
    }

    .text-section p {
        font-size: 1.05rem;
    }
}

/* =========================
   Dark Mode
   ========================= */

@media (prefers-color-scheme: dark) {
    body {
        background: #0f1117;
        color: #e6e6eb;
    }

    .text-section h1 {
        color: #d9d9d9;
    }

    .text-section p {
        color: #b6b6c9;
    }

    .meta {
        color: #8b8ba7;
    }

    /* Turn SVG logo white */
    .logo {
        content: url("../images/dark/ConfusedKitty.svg");
    }
}