body { 
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; 
    margin: 0; 
    background-color: #FAFAFA; 
    color: #333; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.navbar {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px; 
    background-color: #ffffff;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: 1.4rem;
    margin: 0;
    font-weight: bold;
}

.main-title a {
    text-decoration: none;
    color: inherit; 
}


.sub-title {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

.nav-search {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 6px 15px;
    border-radius: 20px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 180px;
    font-size: 0.9rem;
}

.search-btn {
    border: none;
    background: transparent;
    cursor: pointer;
}

#band {
    color: #333;
    border: none;

    outline: none;
    appearance: none;
    -webkit-appearance: none;

    font-size: 18px; 
    padding: 12px 40px 12px 15px;
    width: auto;
    min-width: 150px;
    cursor: pointer;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}


#song {
    width: 95%; 
    max-width: 1200px;  
    margin: 40px auto; 
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 25px; 
    
    box-sizing: border-box;
}

.lyrics-btn {
    aspect-ratio: 2 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    color:#333;
}

.mygo:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #3388BB; 
    color: #fff; 
}

.roselia:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #3344AA; 
    color: #fff; 
}

.popipa:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #FF3377; 
    color: #fff; 
}

.mujica:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #881144; 
    color: #fff; 
}

.afterglow:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #EE3344; 
    color: #fff; 
}

.yuki:hover {
    transform: translateY(-8px); 
    box-shadow: 0 12px 20px rgba(0,0,0,0.1); 
    background-color: #91bfdb; 
    color: #fff; 
}

.site-footer {
    background-color: #f9f9f9; 
    color: #666;   
    padding: 40px 20px;  
    font-size: 13px;  
    line-height: 1.8;   
    text-align: center;    
    border-top: 1px solid #eee;
    font-family: sans-serif;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-important {
    color: #333;
    font-weight: bold;
}

.footer-divider {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 20px auto;
    width: 50%;
}



