/* Placeholder Page specific */
:root {
    --primary-color: #ff8400; /* Orange */
    --secondary-color: #ff8400; /* Orange */
    --bg-dark: #0f172a;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(90deg,rgba(31, 31, 31, 1) 0%, rgba(43, 26, 26, 1) 76%, rgba(31, 31, 31, 1) 100%);
    color: white;
    height: 100vh;
    /* FLEX SETTINGS CHANGED HERE */
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Adds space between the two boxes */
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* New style for the version box */
.version-badge {
    background: rgba(0, 0, 0, 0.3); /* Darker background */
    padding: 0.5rem 1.5rem;
    border-radius: 50px; /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-family: 'Courier New', Courier, monospace; /* Tech/Code font */
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

/* The pulsing radar effect */
.radar-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto 2rem auto;
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 132, 0, 0.7);
    animation: pulse-blue 2s infinite;
}

h3 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Animation Keyframes */
@keyframes pulse-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 132, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(255, 132, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 132, 0, 0);
    }
}