@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
    --app-font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-family: var(--app-font-sans);
    --bs-font-sans-serif: var(--app-font-sans);
    --bs-body-font-family: var(--app-font-sans);
}

body {
    margin: 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    color: #0f172a;
    font-family: var(--app-font-sans);
}

.splash-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.splash-main {
    width: 100%;
    max-width: 560px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.splash-logo {
    width: min(360px, 80vw);
    height: auto;
}

.splash-tagline {
    width: min(520px, 90vw);
    height: auto;
}

.splash-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.splash-actions a {
    min-width: 160px;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.splash-actions a.play {
    background: #111827;
    color: #f8fafc;
}

.splash-actions a.flip {
    background: linear-gradient(125deg, #34d399, #059669);
    color: #042f2e;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
}

.splash-actions a.flip img {
    width: 20px;
    height: 20px;
}

.splash-latest {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.4;
    margin-top: 2rem;
}

.splash-latest-label {
    font-size: 0.9rem;
    color: #4b5563;
}