:root { --dark-bg: #111111; }
body { background-color: #f8f9fa; user-select: none; font-family: system-ui, -apple-system, sans-serif; }
body.prank-active { overflow: hidden; } 

.hero-section { padding: 100px 0; background: linear-gradient(135deg, #000000 0%, #2c3e50 100%); color: white; }

/* UNIFIED SIMPLIFIED & APPEALING CARD STYLING WITH SHARP EDGES */
.card { 
    border: 1px solid #e2e8f0; 
    background: #ffffff;
    cursor: pointer; 
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    border-radius: 0 !important; 
}
.card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.08) !important; 
    border-color: #cbd5e1;
}
.card-img-top { 
    height: 160px; 
    object-fit: cover; 
    border-radius: 0 !important; 
    border-bottom: 1px solid #f1f5f9;
}
.card-placeholder-display {
    height: 160px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
}
.card-title {
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}
.card-desc {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* PRANK OVERLAY */
#fullscreen-overlay { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100vw; height: 100vh; 
    background-color: black; 
    z-index: 10000; 
    cursor: none; 
    overflow: hidden;
}

.seo-text { color: #495057; line-height: 1.8; }
.faq-section { background: #fff; padding: 40px; border-radius: 12px; }

/* UNIFIED SUBTLE SHARP BUTTONS */
.btn-download {
    border-radius: 0 !important;
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
    border-color: #cbd5e1;
    color: #475569;
    font-weight: 500;
}
.btn-download:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

/* FILTER BAR STYLING */
.filter-nav .nav-link {
    color: #64748b;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
    border-bottom: 2px solid transparent;
}
.filter-nav .nav-link.active {
    color: #0d6efd !important;
    background-color: transparent !important;
    border-bottom: 2px solid #0d6efd;
}