/* ===========================================
   Viral Sports Hooks - Custom Styles
   =========================================== */

body {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

/* Glassy sticky header */
.header-glass {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1e293b;
}

/* Hook card styling */
.hook-card {
    background: #1e293b;
    border: 1px solid #334155;
    transition: all 0.2s;
}

.hook-card:hover {
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Copy button press effect */
.copy-btn {
    transition: all 0.2s;
}

.copy-btn:active {
    transform: scale(0.95);
}

/* 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;
}
