:root {
    --neon-main: #ff0055;
    --neon-sec: #00f3ff;
    --dark-core: #0a0a0c;
}

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

body {
    background-color: var(--dark-core);
    background-image: radial-gradient(circle at center, #1a0a1a 0%, #050505 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
    color: white;
}

canvas#bg-canvas { position: absolute; z-index: 1; }

.layout-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 95%;
    max-width: 1150px;
}

/* Sidebar */
.side-bar {
    flex: 0.8;
    background: rgba(255, 0, 85, 0.03);
    border: 1px solid rgba(255, 0, 85, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.notif-title {
    color: var(--neon-main);
    margin-bottom: 15px;
    font-family: 'Orbitron';
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.log-entry {
    font-size: 0.8rem;
    color: var(--neon-sec);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    padding-bottom: 5px;
    text-transform: uppercase;
}

.log-entry.highlight { color: var(--neon-main); }

/* Main Panel */
.main-panel {
    flex: 2;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--neon-main);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.2);
    border-radius: 40px 5px 40px 5px;
    padding: 50px;
    text-align: center;
}

.bot-head {
    width: 90px;
    height: 70px;
    background: var(--dark-core);
    border: 3px solid var(--neon-sec);
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 20px var(--neon-sec);
    border-radius: 10px;
}

.bot-head::before, .bot-head::after {
    content: '';
    position: absolute;
    top: -15px;
    width: 10px;
    height: 20px;
    background: var(--neon-sec);
}
.bot-head::before { left: 15px; transform: rotate(-20deg); }
.bot-head::after { right: 15px; transform: rotate(20deg); }

.eyes-glow { display: flex; justify-content: space-around; margin-top: 25px; }

.eye {
    width: 20px;
    height: 8px;
    background: var(--neon-sec);
    box-shadow: 0 0 15px var(--neon-sec);
    border-radius: 10px;
    animation: pulse-eye 1.5s infinite alternate;
}

h1 { font-family: 'Orbitron'; font-size: 2.5rem; letter-spacing: 5px; }
.accent { color: var(--neon-main); }
.sub-text { color: #666; margin-bottom: 20px; letter-spacing: 1px; }

/* Scratch Area */
.scratch-frame {
    position: relative;
    width: 350px;
    height: 150px;
    margin: 30px auto;
    border: 4px double var(--neon-sec);
    border-radius: 20px;
    background: #111;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.3);
}

.hidden-pass {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron';
    font-size: 1.6rem;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-sec);
}

#scratch-canvas {
    position: absolute;
    top: 0; left: 0;
    border-radius: 15px;
    cursor: crosshair;
    z-index: 5;
}

/* Button */
.get-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--neon-main);
    color: var(--neon-main);
    font-family: 'Orbitron';
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: 0.4s;
    font-weight: 900;
}

.get-btn:hover {
    background: var(--neon-main);
    color: #000;
    box-shadow: 0 0 50px var(--neon-main);
    transform: translateY(-5px);
}

@keyframes pulse-eye { from { opacity: 0.4; } to { opacity: 1; } }

