/* ===========================
   Global Styling
=========================== */

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

body{

    min-height:100vh;

    font-family:Arial, Helvetica, sans-serif;

    color:white;

    background:linear-gradient(-45deg,#667eea,#764ba2,#6a11cb,#2575fc);

    background-size:400% 400%;

    animation:gradient 12s ease infinite;
}


/* ===========================
   Background Animation
=========================== */

@keyframes gradient{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}


/* ===========================
   Hero Section
=========================== */

.hero{

    margin-bottom:60px;

}

.hero h1{

    font-size:72px;

    font-weight:700;

    text-shadow:0 10px 25px rgba(0,0,0,.35);

}

.hero p{

    font-size:28px;

    opacity:.9;

}


/* ===========================
   Glass Card
=========================== */

.glass-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:25px;

    padding:35px;

    min-height:420px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    transition:.35s;

}

.glass-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.glass-card h3{

    margin-bottom:30px;

    font-size:38px;

}


/* ===========================
   TABLE FIX
=========================== */

.table{

    background:transparent !important;

}

.table tbody{

    background:transparent !important;

}

.table tr{

    background:transparent !important;

}

.table td{

    background:transparent !important;

    color:white !important;

    font-size:20px;

    padding:18px 10px;

    border-bottom:1px solid rgba(255,255,255,.18);

}

.table td strong{

    color:#FFD54F;

}


/* ===========================
   Status Boxes
=========================== */

.status{

    padding:18px;

    margin-bottom:18px;

    border-radius:15px;

    font-size:22px;

    background:rgba(52,211,153,.15);

    border:1px solid rgba(52,211,153,.45);

}


/* ===========================
   Footer
=========================== */

footer{

    margin-top:70px;

    text-align:center;

    font-size:18px;

    opacity:.85;

}


/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.hero h1{

font-size:48px;

}

.hero p{

font-size:20px;

}

.glass-card{

margin-bottom:25px;

}

}
