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

body {
    background: #0a0a0f;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 200, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 200, 0.03) 0%, transparent 50%);
    min-height: 100vh;
    font-family: 'Courier New', monospace;
    color: #b0f0e8;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== GLASSMORPHISM CONTAINER ===== */
.glass-container {
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 32px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    box-shadow: 
        0 0 60px rgba(0, 255, 200, 0.05),
        inset 0 0 60px rgba(0, 255, 200, 0.02);
    position: relative;
    overflow: hidden;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 200, 0.02), transparent, rgba(255, 0, 200, 0.02), transparent);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    100% { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc, #7b2ffc, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 255, 200, 0.2);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.subtitle {
    color: #6a8f8a;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 255, 200, 0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* ===== LOGIN FORM ===== */
.login-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 16px;
    color: #d0fff0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #00ffcc;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.1), inset 0 0 30px rgba(0, 255, 200, 0.02);
    background: rgba(0, 0, 0, 0.8);
}

.input-group label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #0a0a0f;
    padding: 0 8px;
    font-size: 0.7rem;
    color: #00ffcc;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn-neon {
    padding: 16px 32px;
    background: linear-gradient(135deg, #00ffcc, #0088aa);
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-neon:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 255, 200, 0.3);
}

.btn-neon:active {
    transform: scale(0.98);
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1), transparent);
    animation: rotateBtn 6s linear infinite;
}

@keyframes rotateBtn {
    100% { transform: rotate(360deg); }
}

/* ===== TRANSACTION CARDS ===== */
.txn-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
    position: relative;
    z-index: 1;
}

.txn-grid::-webkit-scrollbar {
    width: 4px;
}
.txn-grid::-webkit-scrollbar-track {
    background: rgba(0, 255, 200, 0.05);
    border-radius: 10px;
}
.txn-grid::-webkit-scrollbar-thumb {
    background: #00ffcc;
    border-radius: 10px;
}

.txn-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #00ffcc;
    transition: all 0.3s ease;
    animation: slideIn 0.4s ease;
}

.txn-card:hover {
    transform: translateX(8px);
    background: rgba(0, 255, 200, 0.05);
    border-left-width: 8px;
}

.txn-card.credit {
    border-left-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}
.txn-card.debit {
    border-left-color: #ff4466;
    box-shadow: 0 0 30px rgba(255, 68, 102, 0.05);
}

.txn-amount {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc, #7b2ffc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.txn-type {
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 30px;
    background: rgba(0, 255, 200, 0.08);
    border: 1px solid rgba(0, 255, 200, 0.15);
    color: #8affdd;
}

.txn-time {
    font-size: 0.7rem;
    color: #4a6f6a;
    letter-spacing: 1px;
}

/* ===== NOTIFICATION BADGE ===== */
.notif-badge {
    position: fixed;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 110, 0.4);
    border-radius: 20px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.1);
    z-index: 999;
}

.notif-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff006e;
    animation: pulse 1.2s infinite;
}

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

.notif-badge .count {
    color: #ff006e;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .glass-container { padding: 20px; }
    h1 { font-size: 2rem; }
    .txn-card { flex-wrap: wrap; gap: 8px; }
}