/* Custom Styles for Glassmorphism and Effects */
body {
    background-color: #0f172a;
    color: #ffffff;
    overflow-x: hidden;
}

/* The blurred blobs in the background */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Phone Mockup CSS */
.phone-mockup {
    border: 12px solid #1e293b;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 9/19;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 24px;
    background: #1e293b;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 20;
}

/* App UI Simulation inside phone */
.app-header {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 40px 20px 20px;
}

.receipt-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 99px;
}

.status-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.status-warning {
    background: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

.status-success {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
