@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Pretendard';
    line-height: 1.6;
    color: #333;
}

#header-placeholder,
#section-placeholder {
    width: 100%;
}

/* 플로팅 버튼 */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn img {
    width: 100%;
    height: auto;
    display: block;
}

/* 모바일 플로팅 버튼 */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn img {
        width: 80px;
    }
}