*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:
radial-gradient(circle at top left,#16337a 0%,transparent 35%),
radial-gradient(circle at bottom right,#0d4ec4 0%,transparent 35%),
#020617;
color:white;
padding:50px 20px;
min-height:100vh;
}

.container{
max-width:1100px;
margin:auto;
}

.card{
background:linear-gradient(
135deg,
rgba(30,58,138,.95),
rgba(15,23,42,.95)
);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

padding:50px;

box-shadow:
0 20px 50px rgba(0,0,0,.45),
0 0 80px rgba(59,130,246,.15);
}

h1{
font-size:4rem;
font-weight:800;
margin-bottom:10px;
}

.subtitle{
color:#94a3b8;
margin-bottom:40px;
}

.section{
margin-top:50px;
}

.section h2{
color:#60a5fa;
margin-bottom:20px;
font-size:2rem;
}

.search-box{
display:flex;
gap:10px;
margin-top:25px;
}

.search-box input{
flex:1;
padding:16px;
border:none;
border-radius:14px;
background:rgba(255,255,255,.06);
color:white;
}

.search-box button{
padding:16px 24px;
border:none;
border-radius:14px;
cursor:pointer;
background:#2563eb;
color:white;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}

.box{
background:rgba(255,255,255,.05);
padding:24px;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.box:hover{
transform:translateY(-5px);
border-color:#3b82f6;
box-shadow:0 0 30px rgba(59,130,246,.2);
}

.box h3{
margin-bottom:10px;
}

.box p{
color:#cbd5e1;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 20px;
border:none;
border-radius:14px;
cursor:pointer;
background:linear-gradient(
135deg,
#3b82f6,
#2563eb
);
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 30px rgba(59,130,246,.4);
}

.actions{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.status{
display:flex;
align-items:center;
gap:12px;
padding:18px;
border-radius:16px;
background:rgba(34,197,94,.1);
border:1px solid rgba(34,197,94,.2);
}

.dot{
width:12px;
height:12px;
background:#22c55e;
border-radius:50%;
box-shadow:0 0 15px #22c55e;
}

.faq-item{
margin-bottom:15px;
background:rgba(255,255,255,.05);
border-radius:14px;
overflow:hidden;
}

.faq-question{
padding:18px;
cursor:pointer;
font-weight:600;
}

.faq-answer{
display:none;
padding:18px;
color:#cbd5e1;
border-top:1px solid rgba(255,255,255,.08);
}

.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.7);
justify-content:center;
align-items:center;
padding:20px;
z-index:999;
}

.modal-content{
width:100%;
max-width:600px;
background:#0f172a;
border-radius:24px;
padding:30px;
border:1px solid rgba(255,255,255,.08);
}

.modal-content h3{
margin-bottom:20px;
}

.modal-content input,
.modal-content textarea,
.modal-content select{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:12px;
background:rgba(255,255,255,.06);
color:white;
}

.close{
float:right;
cursor:pointer;
font-size:24px;
}

.footer{
margin-top:40px;
text-align:center;
color:#64748b;
}

.toast{
position: fixed;
top: 30px;
left: 50%;
transform: translateX(-50%) translateY(-20px);
background: rgba(15, 23, 42, 0.95);
color: white;
padding: 14px 20px;
border-radius: 14px;
border: 1px solid rgba(59,130,246,.5);
box-shadow: 0 0 25px rgba(59,130,246,.35), 0 10px 30px rgba(0,0,0,.4);
font-weight: 600;
opacity: 0;
pointer-events: none;
transition: all 0.3s ease;
z-index: 9999;
min-width: 240px;
backdrop-filter: blur(12px);
}

.toast.show{
opacity: 1;
transform: translateX(-50%) translateY(0);
}

.toast-bar{
height: 4px;
width: 100%;
background: rgba(255,255,255,0.15);
border-radius: 10px;
margin-top: 10px;
overflow: hidden;
}

.toast-bar::after{
content: "";
display: block;
height: 100%;
width: 100%;
background: #3b82f6;
animation: progressBar 2.5s linear forwards;
}

@keyframes progressBar {
from { width: 100%; }
to { width: 0%; }
}


@media(max-width:768px){

h1{
font-size:2.8rem;
}

.card{
padding:30px;
}

.search-box{
flex-direction:column;
}

}