﻿:root {
    --brand-navy: #003060;
    --accent-blue: #00a8ff;
    --call-orange: #ff9800;
    --success-green: #2ecc71;
    --bg-body: #f0f2f5;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-700.woff2') format('woff2');
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--brand-navy);
    margin-bottom: 70px;
}
.center-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 500px;
    margin: auto;
}

.center-line span:first-child {
    justify-self: end;
    padding-right: 10px;
}

.center-line span:last-child {
    justify-self: start;
    padding-left: 10px;
}

#ads img,
#ads video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* IMPORTANT */
    background-color: #000;
}

#ads {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Header & Hero */
.brand-header {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--brand-navy);
}

.mission-hero {
    background: var(--brand-navy);
    color: white;
    padding: 35px 20px 65px;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.token-card {
    background: white;
    color: var(--brand-navy);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 20px;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    margin: 15px 0;
}

/* Status Banner */
.call-banner {
    background: var(--call-orange);
    color: white;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    display: none;
    animation: pulse-orange 1.5s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Main Content */
.content-card {
    background: white;
    border-radius: 25px;
    padding: 25px;
    margin-top: -40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

/* Dynamic Stepper */
.step-container {
    border-left: 3px solid #e9ecef;
    margin-left: 10px;
    padding-left: 25px;
}

.step-item {
    position: relative;
    padding-bottom: 30px;
}

.step-dot {
    position: absolute;
    left: -34px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #cbd5e0;
    border-radius: 50%;
    border: 3px solid white;
    transition: 0.4s;
}

.status-completed .step-dot {
    background: var(--success-green);
}

.status-called .step-dot {
    background: var(--call-orange);
    box-shadow: 0 0 10px var(--call-orange);
}

.status-waiting .step-dot {
    background: var(--accent-blue);
}

/* Feedback Section */
.feedback-overlay {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f1fcf4;
    border: 2px dashed var(--success-green);
    border-radius: 20px;
    margin-top: 10px;
}

.status-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 800;
}



.lang-select {
    border: 2px solid var(--brand-navy);
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 4px 8px;
    color: var(--brand-navy);
    outline: none;
}

/* Glass Effect for Mission Name */
.mission-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-name {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Ensure Hero text doesn't wash out */
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Standardized Capsule Styling */
.capsule-standard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Consistent background */
    color: var(--brand-navy); /* Consistent dark font color for high contrast */
    border-radius: 50px; /* Uniform pill shape */
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

/* Specific Sizes to maintain hierarchy */
.capsule-mission {
    padding: 8px 20px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.capsule-token {
    padding: 15px 45px;
    font-size: 2rem; /* Larger font for the token as per design */
    letter-spacing: 1px;
}

.capsule-zone {
    padding: 6px 25px;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly different white to distinguish zone */
}

/* Visibility adjustment for the blue background */
.mission-hero {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy) 100%);
    padding: 40px 20px 70px;
    text-align: center;
}

/* Standardized Rounded-Square Styling */
.hero-box-standard {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Solid white background */
    color: var(--brand-navy); /* Dark Navy font for clear readability */
    border-radius: 12px; /* Square-ish with slight rounding as per screenshot */
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    width: auto;
    min-width: 180px; /* Ensures a consistent look */
}

    /* Mission specific padding */
    .hero-box-standard:not(.token-main):not(.zone-sub) {
        padding: 10px 20px;
        font-size: 1.1rem;
    }

/* Token Box - Matches your screenshot exactly */
.token-main {
    padding: 15px 40px;
    font-size: 2.2rem;
    border: none;
    min-width: 280px;
}

/* Zone Box - Standardized to same shape */
.zone-sub {
    padding: 8px 25px;
    font-size: 0.9rem;
    background-color: #ffffff;
}

/* Optional: Slight color change for Zone to match screenshot button style if preferred */
/* .zone-sub {
    background-color: #3abef9;
    color: #000;
}
*/ .ticker-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--brand-navy);
    padding: 12px 0;
    overflow: hidden;
    z-index: 1000;
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 20s linear infinite; /* Marquee-like speed */
}

.ticker-text {
    font-weight: bold;
    color: var(--brand-navy);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hidden {
    display: none !important;
}
