body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #0d1117;
    color: #c9d1d9;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #58a6ff;
    text-shadow: 0 0 5px #58a6ff, 0 0 10px #1f6feb;
}

.jam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.jam-card {
    border-radius: 16px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1f2937, #111827);
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.2);
    color: #d1d5db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(88, 166, 255, 0.3);
    backdrop-filter: blur(4px);
    position: relative;
}

.jam-card:hover {
    transform: scale(1.04);
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.5),
        0 0 25px rgba(88, 166, 255, 0.3);
}

.jam-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 0 4px #58a6ff;
}

.jam-meta {
    font-size: 0.9rem;
    color: #f3f4f7;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Special glowing effect for new jams */
.new-jam {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6), 0 0 20px rgba(0, 255, 0, 0.4),
        0 0 30px rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.5);
}
