/* ... (기존 style.css 내용) ... */

/* 헤더 스타일 */
header {
    background-color: #333; /* Flaregear 느낌의 어두운 배경 */
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 기존 h1 스타일은 이제 필요 없으므로 주석 처리하거나 제거 가능 */
/*
header h1 {
    margin: 0;
    font-size: 1.8em;
    letter-spacing: 2px;
}
*/

/* 로고 이미지 스타일 */
.logo-container {
    height: 40px; /* 로고가 들어갈 컨테이너 높이 */
    display: flex;
    align-items: center;
}

.header-logo {
    height: 100%; /* 부모 컨테이너 높이에 맞춤 */
    width: auto; /* 비율 유지 */
}


nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

/* ... (나머지 style.css 내용) ... */

