   :root {
        --primary-dark: #0a1931;
        --accent-orange: #ff8c42;
        --primary-teal: #00a99d;
        --white: #ffffff;

    }

    /* Full Page Center Wrapper with Animated Background */
    .status-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 85vh;
        padding: 20px;
        position: relative;
        overflow: hidden;
     
    }

    /* Floating Background Elements for attractiveness */
    .bg-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
        opacity: 0.4;
        animation: float 10s infinite alternate;
    }
    .shape-1 { width: 300px; height: 300px; background: var(--primary-teal); top: -50px; left: -50px; }
    .shape-2 { width: 250px; height: 250px; background: var(--accent-orange); bottom: -50px; right: -50px; animation-delay: 2s; }

    @keyframes float {
        0% { transform: translate(0, 0); }
        100% { transform: translate(30px, 50px); }
    }

    /* Glassmorphism Card Container */
    .status-container {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        max-width: 700px;
        padding: 60px 40px;
        border-radius: 30px;
        box-shadow: 0 25px 50px -12px rgba(10, 25, 49, 0.15);
        text-align: center;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Header Icons or Accents */
    .icon-box {
        width: 70px;
        height: 70px;
        background: var(--primary-dark);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px;
        box-shadow: 0 10px 20px rgba(10, 25, 49, 0.2);
    }

    .main-title {
        color: var(--primary-dark); 
        font-size: 2.8rem;
        font-weight: 900;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }

    .sub-title {
        color: var(--primary-teal);
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 40px;
        display: block;
    }

    /* Interactive Input Group */
    .input-wrapper {
        max-width: 480px;
        margin: 0 auto 30px;
        position: relative;
    }

    .status-input {
        width: 100%;
        padding: 20px 25px;
        font-size: 1.1rem;
        border: 2px solid transparent;
        background: #f1f5f9;
        border-radius: 18px;
        color: var(--primary-dark);
        font-weight: 600;
        outline: none;
        transition: all 0.3s ease;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    }

    .status-input:focus {
        background: #fff;
        border-color: var(--primary-teal);
        box-shadow: 0 10px 25px rgba(0, 169, 157, 0.15);
        transform: scale(1.02);
    }

    /* Premium Button */
    .check-btn {
        background: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b10 100%);
        color: #fff;
        border: none;
        padding: 18px 50px;
        font-size: 1.1rem;
        font-weight: 800;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 15px 30px rgba(255, 140, 66, 0.3);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .check-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 140, 66, 0.4);
    }

    .check-btn:active {
        transform: scale(0.98);
    }

    /* Modal Styling */
    .custom-modal {
        position: fixed;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-dark);
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .custom-modal.active {
        top: 40px;
    }

    @media (max-width: 600px) {
        .status-container {
            padding: 50px 25px;
            margin: 10px;
        }
        .main-title { font-size: 2rem; }
        .sub-title { letter-spacing: 2px; }
    }

     footer {
        background-color: var(--primary-dark);
        color: white;
        padding: 50px 0;
        margin-top: 0px !important;
        text-align: center;
        position: relative;
    }