/* ============================================
   Watch Together — Landing Page content
   ============================================
   Requires: page.css (reset + theme vars + .landing shell)
             sky.css  (sky / clouds / stars / celestial bodies)
   ============================================ */
/* ---- Content Overlay ---- */
.content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.content.visible {
    opacity: 1;
    transform: translateY(0);
}
.title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: var(--text-shadow);
}
.motto {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-weight: 500;
    opacity: 0.85;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.5;
}
/* ---- Buttons ---- */
.button-group {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}
.btn:focus-visible {
    outline: 2px solid var(--text-color);
    outline-offset: 3px;
}
.btn:active {
    transform: scale(0.96) translateY(0) !important;
}
.btn-primary {
    background: var(--btn-pri-bg);
    color: var(--btn-pri-text);
    box-shadow: 0 4px 16px var(--btn-pri-shadow);
}
.btn-primary:hover {
    background: var(--btn-pri-bg-hover);
    box-shadow: 0 6px 24px var(--btn-pri-shadow);
    transform: translateY(-1px);
}
.btn-secondary {
    background: var(--btn-sec-bg);
    color: var(--btn-sec-text);
    border: var(--btn-sec-border-w) solid var(--btn-sec-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-secondary:hover {
    background: var(--btn-sec-bg-hover);
    transform: translateY(-1px);
}
/* ---- Responsive ---- */
@media (max-width: 640px) {
    .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .btn {
        width: 100%;
    }
    .motto {
        margin-bottom: 2rem;
    }
}
/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .content {
        transition-duration: 0.01ms !important;
        opacity: 1 !important;
        transform: none !important;
    }
}