:root {
    --white: #ffffff;
    --black: #000000;
    --accent: #0047AB;
    --glass-bg: rgba(22, 22, 24, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Background */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 90%);
    backdrop-filter: blur(4px);
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

/* Main Layout */
.main-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Context for children */
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography */
.status-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #4da6ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.subtitle strong {
    color: #fff;
    font-weight: 600;
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
    opacity: 0.8;
}

/* CTA & Store Buttons */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.cta-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.app-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Safety wrap for tiny screens */
}

.store-btn {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    /* Standard official badge radius */
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 140px;
}

.store-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background: #111;
}

.store-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    white-space: nowrap;
}

.small-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 600;
}

.big-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* System font for badges looks more authentic */
}

/* Floating Instagram - Premium & Proper Colors */
.instagram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    /* Slightly squircle for modern look */
    /* OFFICIAL INSTAGRAM GRADIENT */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.insta-icon {
    color: white;
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.instagram-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.4);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .app-icons {
        flex-direction: row;
        /* Keep side by side on mobile unless really small */
    }

    /* Adjust float for mobile */
    .instagram-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .insta-icon {
        width: 26px;
        height: 26px;
    }
}