/* wwwroot/css/site.css */
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Sans+KR:wght@400;700;900&display=swap');

:root {
    --primary-color: #8E24AA;
    --secondary-color: #E91E63;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    /* 블러 효과 설정값 */
    --main-blur: 5px;
    --content-blur: 8px;
    --banner-blur: 7px;
    --opacity-level: 0.9;
}

html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

body {
    /* margin-bottom: 60px; 제거 */
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    min-height: 100vh; /* 최소 높이를 뷰포트 높이로 설정 */
    display: flex;
    flex-direction: column;
}

/* 메인 콘텐츠가 남은 공간을 채우도록 설정 */
.container {
    flex: 1 0 auto;
}

    /* 블러 효과 관련 스타일 */
    body.blur-site > *:not(.login-popup):not(.login-overlay) {
        filter: blur(var(--main-blur));
        pointer-events: none;
        transition: filter 0.3s ease;
        opacity: var(--opacity-level);
    }

    /* 비로그인 상태에서 호기심 유발 효과 */
    body.blur-site .status-card {
        position: relative;
        overflow: hidden;
        filter: blur(var(--content-blur));
        opacity: calc(var(--opacity-level) - 0.05);
    }

    body.blur-site .home-banner .card-body {
        filter: blur(var(--banner-blur));
        opacity: calc(var(--opacity-level) - 0.02);
    }

/* 메인 네비게이션 */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white !important;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

/* 푸터 */
.footer {
    /* position: absolute; 제거 */
    /* bottom: 0; 제거 */
    width: 100%;
    line-height: 60px;
    background-color: white;
    border-top: 1px solid #e9ecef;
    margin-top: 30px; /* 상단 여백 추가 */
}

/* 버튼 스타일 */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: #7B1FA2;
        border-color: #7B1FA2;
    }

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

    .btn-secondary:hover, .btn-secondary:focus {
        background-color: #C2185B;
        border-color: #C2185B;
    }

/* 카드 스타일 */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.card-header {
    font-weight: 600;
    padding: 15px 20px;
}

.card-body {
    padding: 20px;
}

/* 홈배너 스타일 */
.home-banner {
    border-radius: 10px;
    overflow: hidden;
}

/* 실시간 커뮤니티 현황 컨테이너 */
.community-status-container {
    padding: 1.5rem 1rem; /* 패딩 축소 */
    background: linear-gradient(135deg, #0a4cae, #1f78ff);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - 250px); /* 화면 높이에 맞게 최대 높이 제한 */
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 허용 */
}

    /* 배경 효과 */
    .community-status-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="20" cy="20" r="20" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="30" fill="rgba(255,255,255,0.04)"/><circle cx="50" cy="50" r="15" fill="rgba(255,255,255,0.02)"/></svg>');
        background-size: 100px 100px;
        opacity: 0.8;
        z-index: 0;
    }

/* 제목 스타일 */
.status-header {
    text-align: center;
    margin-bottom: 1.5rem; /* 여백 축소 */
    position: relative;
    z-index: 1;
}

.animated-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 2.5rem; /* 폰트 크기 축소 */
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.status-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 0 auto;
    position: relative;
}

    .title-underline::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 4px;
        background-color: rgba(255, 255, 255, 0.8);
        left: 50%;
        transform: translateX(-50%);
        animation: underline-move 2s ease-in-out infinite;
    }

@keyframes underline-move {
    0%, 100% {
        width: 40px;
    }

    50% {
        width: 100px;
    }
}

/* 카드 컨테이너 스타일 */
.status-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* 카드 간 간격 축소 */
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* 상태 카드 스타일 */
.status-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .status-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card-content {
    position: relative;
    padding: 1.5rem 1rem; /* 내부 여백 축소 */
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* 카드 타입별 스타일 */
.woman-waiting-card {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

    .woman-waiting-card .card-glow {
        background: radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.5) 0%, rgba(142, 68, 173, 0) 70%);
        animation: glow-pulse 3s ease-in-out infinite;
    }

.woman-talking-card {
    background: linear-gradient(135deg, #e91e63, #ff4081);
}

    .woman-talking-card .card-glow {
        background: radial-gradient(circle at 50% 50%, rgba(233, 30, 99, 0.5) 0%, rgba(255, 64, 129, 0) 70%);
        animation: glow-pulse 3s ease-in-out infinite;
    }

.man-waiting-card {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
}

    .man-waiting-card .card-glow {
        background: radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.5) 0%, rgba(3, 169, 244, 0) 70%);
        animation: glow-pulse 3s ease-in-out infinite;
    }

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.3;
    }
}

/* 카드 제목 스타일 */
.card-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 아이콘 컨테이너 스타일 */
.icon-container {
    width: 70px; /* 아이콘 크기 축소 */
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; /* 여백 축소 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .icon-container::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s ease-in-out infinite;
    }

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.icon-container i {
    font-size: 2.5rem; /* 아이콘 크기 축소 */
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 기존 상태 아이콘 스타일 */
.status-icon {
    margin: 20px 0;
}

.woman-waiting .status-icon i {
    color: #e84393;
}

.woman-calling .status-icon i {
    color: #0984e3;
}

.man-waiting .status-icon i {
    color: #2d3436;
}

/* 상태 카운트 스타일 */
.status-count {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 3.5rem; /* 폰트 크기 축소 */
    font-weight: bold;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin: 0.3rem 0; /* 여백 축소 */
    animation: count-pulse 2s ease-in-out infinite;
}

@keyframes count-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* 참여 버튼 스타일 */
.participation-button-container {
    text-align: center;
    margin-top: 1.5rem; /* 여백 축소 */
    position: relative;
    z-index: 1;
}

.participation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 2rem; /* 여백 축소 */
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 1.1rem; /* 폰트 크기 축소 */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .participation-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.5s ease;
    }

    .participation-button:hover {
        box-shadow: 0 15px 30px rgba(255, 87, 34, 0.6);
        transform: translateY(-5px);
    }

        .participation-button:hover::before {
            left: 100%;
        }

    .participation-button span {
        margin-right: 10px;
    }

    .participation-button i {
        font-size: 1.3rem;
    }

/* 대화 버블 스타일 */
.speech-bubble {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    width: 90%;
    max-width: 250px;
}

    .speech-bubble:after {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -10px;
        border-width: 0 10px 10px;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.9) transparent;
    }

    .speech-bubble p {
        color: #333;
        font-family: 'Noto Sans KR', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

.status-card:hover .speech-bubble {
    opacity: 1;
    transform: translateY(0);
}

/* 리스트 아이템 스타일 */
.list-group-item-action {
    transition: all 0.3s ease;
}

    .list-group-item-action:hover {
        background-color: #f8f9fa;
        transform: translateX(5px);
    }

.post-content, .notice-content {
    line-height: 1.8;
}

.comment {
    transition: background-color 0.3s ease;
}

    .comment:hover {
        background-color: #f8f9fa;
    }

/* 아이콘 래퍼 스타일 */
.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 스위치 스타일 */
.custom-switch .custom-control-label::before {
    border-color: var(--primary-color);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* 폼 컨트롤 스타일 */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(142, 36, 170, 0.25);
}

/* 페이지네이션 스타일 */
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link {
    color: var(--primary-color);
}

    .pagination .page-link:hover {
        color: white;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

/* 펄 애니메이션 스타일 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* 약관 스타일 */
.terms-content {
    line-height: 1.8;
}

    .terms-content h4, .terms-content h5 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .terms-content ul, .terms-content ol {
        margin-bottom: 15px;
        padding-left: 20px;
    }

/* 블러 컨텐츠 스타일 */
.blur-content {
    filter: blur(4px);
    pointer-events: none;
}

/* 로그인 팝업 스타일 개선 */
.login-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    z-index: 2000;
    width: 400px;
    max-width: 90%;
    animation: popup-fade 0.3s ease-out;
}

@keyframes popup-fade {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.login-popup.show {
    display: block;
}

.login-popup-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .login-popup-header h5 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .login-popup-header .close {
        color: white;
        opacity: 0.8;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        background: transparent;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

        .login-popup-header .close:hover {
            opacity: 1;
        }

.login-popup-body {
    padding: 20px;
}

.login-popup-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dee2e6;
}

/* 로그인 오버레이 */
.login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    animation: overlay-fade 0.2s ease-out;
}

@keyframes overlay-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.login-overlay.show {
    display: block;
}

/* 미디어 쿼리 */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .card-body {
        padding: 15px;
    }

    .status-count {
        font-size: 2rem;
    }

    .home-banner h1 {
        font-size: 1.8rem;
    }

    .animated-title {
        font-size: 2.5rem;
    }

    .status-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .status-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .login-popup {
        width: 95%;
    }

    .login-popup-header {
        padding: 12px 15px;
    }

    .login-popup-body {
        padding: 15px;
    }

    .login-popup-footer {
        padding: 12px 15px;
    }

    .home-banner h1 {
        font-size: 1.5rem;
    }

    .card {
        margin-bottom: 15px;
    }

    .animated-title {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .icon-container {
        width: 70px;
        height: 70px;
    }

        .icon-container i {
            font-size: 2.5rem;
        }

    .status-count {
        font-size: 3.5rem;
    }

    .participation-button {
        padding: 0.7rem 2rem;
        font-size: 1.1rem;
    }
}

/* 화면 높이에 따른 추가 최적화 */
@media (max-height: 800px) {
    .animated-title {
        font-size: 2rem;
    }

    .status-count {
        font-size: 3rem;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

        .icon-container i {
            font-size: 2rem;
        }

    .card-content {
        padding: 1rem 0.8rem;
    }
}

/* 매우 작은 화면에 대한 추가 최적화 */
@media (max-height: 700px) {
    .community-status-container {
        padding: 1rem 0.8rem;
    }

    .status-cards-container {
        gap: 0.8rem;
    }

    .animated-title {
        font-size: 1.8rem;
    }

    .status-subtitle {
        font-size: 0.9rem;
    }

    .status-count {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .participation-button {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* 드롭다운 메뉴 수정 */
body[data-logged-in="true"] .dropdown-menu {
    position: absolute;
    z-index: 1500;
    top: 100%;
    right: 0;
    left: auto;
    display: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

body[data-logged-in="true"] .dropdown.show .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* z-index 수정 */
body[data-logged-in="true"] .navbar {
    position: relative;
    z-index: 1050;
}

/* 드롭다운 항목 스타일 보강 */
body[data-logged-in="true"] .dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    body[data-logged-in="true"] .dropdown-item i {
        margin-right: 10px;
        font-size: 1.1em;
        color: var(--primary-color);
    }

    body[data-logged-in="true"] .dropdown-item:hover {
        background-color: rgba(var(--primary-color-rgb, 142, 36, 170), 0.1);
        color: var(--primary-color);
        transform: translateX(3px);
    }

/* 커스텀 드롭다운 메뉴 스타일 */
.custom-dropdown-menu {
    position: fixed !important;
    top: auto;
    left: auto;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px;
    z-index: 9999;
    right: 0;
    margin-top: 5px;
}

.nav-item.dropdown.show .custom-dropdown-menu {
    display: block;
}

/* 사용자 드롭다운 상위 레벨 보정 */
.nav-item.dropdown {
    position: relative;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background-color: #f5f5f5;
        transform: translateX(3px);
    }

    .dropdown-item i {
        margin-right: 8px;
        color: var(--primary-color);
    }

/* 겹침 문제 해결을 위한 z-index 상향 */
.navbar-nav {
    position: relative;
    z-index: 2000;
}

/* 네비게이션 전체 겹칩 보정 */
.navbar {
    position: relative;
    z-index: 1500;
}

/* z-index 계층 구성 */
.navbar-collapse {
    z-index: 1600;
}

.nav-item {
    z-index: 1700;
}

    .nav-item.dropdown {
        z-index: 1800;
    }

/* 사용자 메뉴 강제 스타일 적용 */
body[data-logged-in="true"] #userDropdownMenu {
    display: none;
    position: fixed !important;
    z-index: 9999 !important;
    background-color: white !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    padding: 8px !important;
    min-width: 200px !important;
    border: none !important;
    transform: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* 드롭다운 활성화 시 메뉴 표시 */
body[data-logged-in="true"] #userDropdown.show #userDropdownMenu {
    display: block !important;
}

/* 사용자 메뉴 항목 강제 스타일 */
body[data-logged-in="true"] #userDropdownMenu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    padding: 10px 15px !important;
    color: #333 !important;
    background: transparent !important;
    border-radius: 8px !important;
    margin-bottom: 4px !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

    body[data-logged-in="true"] #userDropdownMenu .dropdown-item:hover {
        background-color: #f8f9fa !important;
        transform: translateX(3px) !important;
    }

    body[data-logged-in="true"] #userDropdownMenu .dropdown-item i {
        margin-right: 10px !important;
        font-size: 1.1em !important;
        color: var(--primary-color) !important;
    }

/* 카운터 애니메이션 효과 */
.counter-increase {
    animation: counter-highlight-increase 0.8s;
}

.counter-decrease {
    animation: counter-highlight-decrease 0.8s;
}

@keyframes counter-highlight-increase {
    0%, 100% {
        color: white;
    }

    50% {
        color: #4CAF50;
    }
}

@keyframes counter-highlight-decrease {
    0%, 100% {
        color: white;
    }

    50% {
        color: #F44336;
    }
}

/* 파티클 효과 */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    animation: float linear infinite;
    max-width: 5px;
    max-height: 5px;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
    }
}
