@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --accent: #ff4757;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body { 
    font-family: 'Inter', sans-serif; 
    background: radial-gradient(circle at top right, #1e1e2f, #0f0f0f); 
    color: #f1f1f1; 
    margin: 0; 
    line-height: 1.6;
}

/* Modern Navigation */
nav { 
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem; 
    display: flex; 
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-links { list-style: none; display: flex; gap: 30px; margin: 0; }
.nav-links a { color: #aaa; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { 
    display: none; position: absolute; background: #1a1a1a; 
    min-width: 180px; border-radius: 8px; border: 1px solid var(--border); top: 100%;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 12px; display: block; font-size: 14px; }

/* Grid and Cards */
.container { padding: 40px 20px; max-width: 1100px; margin: auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }

.record-card { 
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 20px; 
    border-radius: 15px; 
    text-align: center; 
    transition: transform 0.3s, box-shadow 0.3s;
}
.record-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--accent);
}

.record-card img { width: 100%; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

button { 
    background: linear-gradient(135deg, #ff4757, #ff6b81); 
    border: none; padding: 12px; color: white; border-radius: 25px;
    font-weight: bold; cursor: pointer; margin-top: 15px; width: 100%; 
}
