/* TrapHouseModz Custom Styles */

/* Background gradient animation */
body {
    background: linear-gradient(270deg, #0f0f0f, #1a1a1a, #0f0f0f);
    background-size: 600% 600%;
    animation: gradientBG 15s ease infinite;
    font-family: 'Inter', sans-serif;
}

/* Smooth gradient animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header styling */
header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navigation links */
header nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}
header nav a:hover {
    color: #00ff99;
    transform: scale(1.05);
}

/* Product grid hover effect */
.product-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Footer text */
footer {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: center;
}
