:root {
    --color-bg: #121212;
    --color-surface: #1e1e1e;
    --color-primary: #FF5E00;
    --color-primary-hover: #FF7B33;
    --color-primary-active: #E55400;
    --color-text: #FFFFFF;
    --color-text-muted: #A0A0A0;
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-family);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Subtle background glow mimicking the app's dark mode vibe */
.accent-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    /* Adding a subtle border/shadow to lift it slightly off the pure dark bg */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    background-color: var(--color-surface);
}

.image-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 94, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    /* Ensuring the image background matches the dark UI nicely */
    object-fit: cover;
}

.cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-subtext {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    font-weight: 400;
    max-width: 80%;
}

.android-only-note {
    font-size: 0.8125rem;
    /* ~13px */
    color: #7a7a7a;
    /* Darker gray compared to #A0A0A0 */
    font-weight: 500;
    margin-top: -0.5rem;
    /* Pull slightly closer to the button */
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    /* Pill shape */
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    /* For focus states */
    outline: none;
}

.button-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(255, 94, 0, 0.25);
}

.button-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 94, 0, 0.4);
}

.button-primary:active {
    background-color: var(--color-primary-active);
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(255, 94, 0, 0.2);
}

.button-primary:focus-visible {
    box-shadow: 0 0 0 3px var(--color-bg), 0 0 0 5px var(--color-primary);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.button-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Base Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

/* Responsiveness */
@media (max-width: 600px) {
    .container {
        gap: 2rem;
    }

    .image-wrapper {
        border-radius: 16px;
    }

    .cta-subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    .button {
        width: 100%;
        padding: 1rem;
    }
}