* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    background: #0a1a2f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    position: relative;
}

/* ========= ANIMASI BACKGROUND BERGERAK BIRU TUA ========= */
.moving-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(145deg, #0a1f2e 0%, #05223b 100%);
}

.moving-bg::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 40%, rgba(18, 78, 128, 0.4) 0%, rgba(2, 28, 51, 0.6) 80%);
    animation: driftWave 22s infinite alternate ease-in-out;
}

.moving-bg::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    top: -40%;
    left: -30%;
    background: repeating-linear-gradient(45deg, rgba(0, 60, 100, 0.2) 0px, rgba(0, 60, 100, 0.2) 2px, transparent 2px, transparent 12px);
    animation: slideShift 18s infinite linear;
    pointer-events: none;
}

@keyframes driftWave {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translate(5%, 3%) rotate(3deg);
        opacity: 1;
    }
}

@keyframes slideShift {
    0% {
        transform: translateX(0%) translateY(0%);
    }
    100% {
        transform: translateX(6%) translateY(4%);
    }
}

.bg-aura {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(0, 150, 210, 0.15), transparent 70%);
    animation: pulseBreath 8s infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulseBreath {
    0% { opacity: 0.3; transform: scale(1);}
    100% { opacity: 0.8; transform: scale(1.08);}
}

/* container utama card style */
.dashboard {
    max-width: 1300px;
    width: 100%;
    background: rgba(10, 25, 45, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 3rem;
    padding: 2rem 2rem 2.5rem 2rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(120, 180, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 150, 220, 0.3);
}

/* header + logo restoran (gambar PNG) */
.header-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 1rem;
    border-bottom: 2px dashed rgba(100, 180, 250, 0.5);
    padding-bottom: 1.2rem;
}

.title-section h1 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, #7bc5ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.title-section p {
    color: #b3d9ff;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 6px;
    letter-spacing: 0.3px;
}

/* Logo gambar restoran PNG */
.resto-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    border: 1px solid #ffbc6e;
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.resto-logo:hover {
    transform: translateY(-2px);
}

.resto-logo img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4));
    transition: transform 0.2s ease;
}

.resto-logo img:hover {
    transform: scale(1.03);
}

.resto-logo .logo-text {
    font-weight: bold;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #FFD966, #FFA559);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

/* Grid menu utama */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin: 2.5rem 0 1.8rem 0;
}

.card-menu {
    background: rgba(15, 35, 55, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 2rem;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(90, 170, 255, 0.5);
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.3);
}

.card-menu:hover {
    transform: translateY(-8px);
    background: rgba(25, 65, 100, 0.85);
    border-color: #ffbc6e;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-menu:active {
    transform: scale(0.97);
}

.menu-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #f0fcff;
    letter-spacing: 1px;
    word-break: break-word;
}

.menu-sub {
    font-size: 0.8rem;
    color: #aad0ff;
    margin-top: 12px;
    font-weight: 500;
    border-top: 1px dashed rgba(255,215,130,0.5);
    display: inline-block;
    padding-top: 8px;
}

.incoming-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}

.clickable-link {
    cursor: pointer;
    transition: all 0.2s;
}

.status-footer {
    margin-top: 2.8rem;
    text-align: center;
    font-size: 0.8rem;
    color: #9bc2f0;
    background: rgba(0,0,0,0.3);
    border-radius: 2rem;
    padding: 0.8rem;
    backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 680px) {
    .dashboard {
        padding: 1.5rem;
    }
    .title-section h1 {
        font-size: 1.8rem;
    }
    .menu-title {
        font-size: 1.2rem;
    }
    .resto-logo {
        padding: 0.3rem 1rem;
    }
    .resto-logo img {
        height: 40px;
    }
    .resto-logo .logo-text {
        font-size: 1rem;
    }
}