/* ======================================
   龙虾小镇 | ClawTown.org
   Ultra Minimal Static Design
   ====================================== */

:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.35);
    --font-cn: 'Noto Serif SC', serif;
    --font-en: 'Space Grotesk', sans-serif;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-en);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* ---- Hero Section ---- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ---- Logo ---- */
.logo-wrap {
    width: 320px;
    height: auto;
}

.lobster-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ---- Text Block ---- */
.text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.title {
    font-family: var(--font-cn);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-color);
}

.subtitle {
    font-family: var(--font-cn);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--text-muted);
}

/* ---- Footer ---- */
.footer {
    position: absolute;
    bottom: 2rem;
    text-align: center;
    width: 100%;
}

.footer p {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .logo-wrap {
        width: 240px;
    }

    .hero {
        gap: 2rem;
    }
}