@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #020617;
    background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(14, 116, 144, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Scrollbar Tweaks */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0891b2;
}

/* Glassmorphism Surface Container */
.glass-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

/* Touch Friendly Drag-and-Drop Area */
#drop-zone {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#drop-zone.dragover, #drop-zone:hover {
    border-color: #06b6d4 !important;
    background: rgba(6, 182, 212, 0.06) !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

/* Glow CTA Button */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.35);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: translateY(-1px);
}

.btn-glow:active {
    transform: translateY(1px);
}

/* Keyword Badges */
.badge-found {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.05));
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
    backdrop-filter: blur(4px);
    transition: transform 0.15s ease;
}

.badge-found:hover {
    transform: scale(1.05);
}

.badge-missing {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.15), rgba(225, 29, 72, 0.05));
    color: #fb7185;
    border: 1px solid rgba(251, 113, 133, 0.3);
    backdrop-filter: blur(4px);
    transition: transform 0.15s ease;
}

.badge-missing:hover {
    transform: scale(1.05);
}

/* Ad Placement Box */
.adsense-placeholder {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.3);
}

/* Mobile Tweaks */
@media (max-width: 640px) {
    #drop-zone {
        padding: 1.25rem 0.75rem;
    }
    textarea {
        font-size: 0.825rem !important;
    }
}
