/* style.css */

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

body {
    background: #0b0f19;
    color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* background grid */

.bg-grid {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

/* container */

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding-top: 40px;
}

/* header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #00d4ff;

    text-shadow: 0 0 12px rgba(0,212,255,0.5);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 14px;
    color: #aaa;
}

.status-dot {
    width: 10px;
    height: 10px;

    background: #00ff95;
    border-radius: 50%;

    box-shadow: 0 0 12px #00ff95;
}

/* search */

.search-section {
    margin-bottom: 45px;
}

.search-box {
    width: 100%;
    padding: 18px 22px;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.04);

    color: #fff;
    font-size: 18px;

    backdrop-filter: blur(12px);

    outline: none;

    transition: 0.3s;
}

.search-box:focus {
    border-color: #00d4ff;

    box-shadow: 0 0 25px rgba(0,212,255,0.25);
}

/* dashboard */

.dashboard {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

/* card */

.card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 25px;

    backdrop-filter: blur(12px);

    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);

    border-color: rgba(0,212,255,0.4);

    box-shadow:
            0 0 25px rgba(0,212,255,0.15),
            0 0 50px rgba(0,212,255,0.08);
}

.card h2 {
    margin-bottom: 20px;

    color: #00d4ff;

    font-size: 20px;
}

/* links */

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.links a {
    text-decoration: none;

    color: #d0d7e2;

    padding: 12px 15px;

    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    transition: 0.25s;
}

.links a:hover {
    background: rgba(0,212,255,0.12);

    color: #00d4ff;

    transform: translateX(5px);
}

/* footer */

.footer {
    margin-top: 60px;
    margin-bottom: 30px;

    display: flex;
    justify-content: space-between;

    color: #666;
    font-size: 13px;
}

/* mobile */

@media(max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer {
        flex-direction: column;
        gap: 10px;
    }

}