* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #111;
    color: white;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}
.logo {
    color: white;
}


header {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: #121212;
    z-index: 100;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

nav a:hover {
    color: #3b82f6;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #1f1f1f;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #3b82f6;
    padding: 12px 24px;
    color: white;             
    text-decoration: none;    
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;         
}

.btn:hover {
    background-color: #121212; 
    color: white;               
}

.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 30px;
    text-align: center;
}

.cards {
    display: flex;           
    flex-wrap: wrap;         
    gap: 20px;               
    justify-content: center; 
}

.card.genre {
    display: block;           
    width: 200px;             
    height: 200px;            
    background-color: #1f1f1f;
    color: white;             
    text-decoration: none;    
    border-radius: 10px;      
    text-align: center;
    padding: 20px;
    transition: 0.3s;         
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); 
}

.card.genre h3 {
    margin-top: 0;
}

.card.genre:hover {
    background-color: #3b82f6;  
    transform: scale(1.05);     
    color: white;                
}
.light {
    background: #181818;
}

footer {
    background: #1a1a1a;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
