/* file: internal/assets/landing.css */
:root {
    --bg: #04022e;
}

* { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--bg);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.page {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: var(--bg);
}

.hero {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.hero-video {
    background: var(--bg);
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;   /* mobile: full width */
    height: 100vh;  /* mobile: full height */
    object-fit: contain;
}

/* Sticky buttons: bottom + ~10% margin; respect iOS safe area */
.cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(env(safe-area-inset-bottom) + 10vh);
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    width: min(560px, 100vw);
    z-index: 10;
}

/* On small screens, stack buttons */
@media (max-width: 420px) {
    .cta {
        flex-direction: column;
        gap: 12px;
        width: min(360px, 92vw);
    }
}

/* On desktop: bring buttons a bit closer */
@media (min-width: 900px) {
    .cta {
        bottom: 48px;
    }
}

/* Your button snippet (slightly adapted for dark BG) */
.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: #5fe3bf;
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: #03002d;
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.playstore-button:hover {
    background-color: #424162;
    color: #ffffff;
}

.icon {
    height: 1.5rem;
    width: 1.5rem;
    flex: 0 0 auto;
}

.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.text-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-2 {
    font-weight: 600;
}