body {
    margin: 0;
    padding: 0;
    background: #050505;
    font-family: Arial, Helvetica, sans-serif;
    color: #e0e0e0;
    text-align: center;
}

.scanner-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.logo-box img {
    width: 260px;
    filter: drop-shadow(0 0 12px #00eaff);
    animation: glowPulse 3s ease-in-out infinite;
}

.title {
    font-size: 42px;
    color: #00eaff;
    text-shadow: 0 0 14px #00eaff;
    margin-top: 10px;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 30px;
}

.input-box {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#scanUrl {
    width: 60%;
    padding: 14px;
    border-radius: 6px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 18px;
}

#scanBtn {
    padding: 14px 24px;
    background: #00eaff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

#scanBtn:hover {
    background: #00bcd4;
    box-shadow: 0 0 12px #00eaff;
}

.results {
    margin-top: 40px;
}

.panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 18px rgba(0,255,255,0.12);
    animation: fadeIn 1s ease-out;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%   { filter: drop-shadow(0 0 6px #00eaff); }
    50%  { filter: drop-shadow(0 0 22px #00eaff); }
    100% { filter: drop-shadow(0 0 6px #00eaff); }
}
