* { margin: 0; padding: 0; box-sizing: border-box; }
/* 푸터 자체 배경을 꽉 채움 */
body { background: #1a1a1a; margin: 0; padding: 0; overflow: hidden; }

footer { 
    width: 100%; 
    height: 80px; 
    background: #1a1a1a; 
    color: #888; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    border: none; /* 테두리 제거 */
}
.footer-logo { color: #fff; font-weight: 700; margin-bottom: 4px; font-size: 14px; }
footer p { font-size: 11px; line-height: 1.4; color: #999; margin: 0; }
.copyright { font-size: 10px; opacity: 0.5; margin-top: 2px; }

@media (max-width: 1024px) {
    footer { height: 75px; }
    .footer-logo { font-size: 12px; }
}
