* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    background-image: 
        linear-gradient(to bottom, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%),
        radial-gradient(circle at 20% 50%, rgba(30, 30, 60, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 30, 60, 0.5) 0%, transparent 50%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 도시 실루엣 효과 */
body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: 
        linear-gradient(to top, #000000 0%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(20, 20, 40, 0.1) 2px,
            rgba(20, 20, 40, 0.1) 4px
        );
    z-index: 0;
    pointer-events: none;
}

/* 도시 건물 실루엣 */
body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: 
        linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.8) 20%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 3%,
            rgba(20, 20, 40, 0.3) 3%,
            rgba(20, 20, 40, 0.3) 3.5%,
            transparent 3.5%
        );
    clip-path: polygon(
        0% 100%, 2% 100%, 2% 70%, 4% 70%, 4% 100%, 
        6% 100%, 6% 50%, 8% 50%, 8% 100%, 10% 100%, 
        10% 80%, 12% 80%, 12% 100%, 15% 100%, 15% 60%, 
        18% 60%, 18% 100%, 20% 100%, 20% 75%, 22% 75%, 
        22% 100%, 25% 100%, 25% 55%, 28% 55%, 28% 100%, 
        30% 100%, 30% 85%, 32% 85%, 32% 100%, 35% 100%, 
        35% 65%, 38% 65%, 38% 100%, 40% 100%, 40% 50%, 
        42% 50%, 42% 100%, 45% 100%, 45% 70%, 48% 70%, 
        48% 100%, 50% 100%, 50% 60%, 52% 60%, 52% 100%, 
        55% 100%, 55% 80%, 58% 80%, 58% 100%, 60% 100%, 
        60% 55%, 62% 55%, 62% 100%, 65% 100%, 65% 75%, 
        68% 75%, 68% 100%, 70% 100%, 70% 65%, 72% 65%, 
        72% 100%, 75% 100%, 75% 50%, 78% 50%, 78% 100%, 
        80% 100%, 80% 70%, 82% 70%, 82% 100%, 85% 100%, 
        85% 60%, 88% 60%, 88% 100%, 90% 100%, 90% 80%, 
        92% 80%, 92% 100%, 95% 100%, 95% 55%, 98% 55%, 
        98% 100%, 100% 100%
    );
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* 눈이 쌓인 효과 */
.snow-ground {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: 
        linear-gradient(to top, 
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 20%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.3) 60%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%
        ),
        radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    clip-path: polygon(
        0% 100%,
        5% 95%,
        10% 98%,
        15% 92%,
        20% 96%,
        25% 94%,
        30% 97%,
        35% 91%,
        40% 95%,
        45% 93%,
        50% 98%,
        55% 92%,
        60% 96%,
        65% 94%,
        70% 97%,
        75% 91%,
        80% 95%,
        85% 93%,
        90% 96%,
        95% 92%,
        100% 100%
    );
    animation: snowAccumulate 3s ease-in-out infinite alternate;
    box-shadow: 
        inset 0 20px 40px rgba(255, 255, 255, 0.2),
        0 -10px 30px rgba(255, 255, 255, 0.1);
}

@keyframes snowAccumulate {
    0% {
        transform: translateY(0);
        opacity: 0.9;
    }
    100% {
        transform: translateY(-2px);
        opacity: 1;
    }
}

/* 눈 더미 텍스처 효과 */
.snow-ground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px, 35px 35px;
    background-position: 0 0, 10px 10px, 20px 20px, 15px 15px;
    opacity: 0.6;
    animation: snowTexture 20s linear infinite;
}

@keyframes snowTexture {
    0% {
        background-position: 0 0, 10px 10px, 20px 20px, 15px 15px;
    }
    100% {
        background-position: 50px 50px, 40px 40px, 60px 60px, 50px 50px;
    }
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.content {
    text-align: center;
    z-index: 2;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.time-value {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.time-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.message {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-particle 20s ease-in-out infinite;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.2);
    }
    50% {
        transform: translate(-30px, -100px) scale(0.8);
    }
    75% {
        transform: translate(30px, -50px) scale(1.1);
    }
}

/* 눈 파티클 컨테이너 */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: #ffffff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall ease-in-out infinite;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    3% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        transform: translateX(calc(var(--drift) * 0.5)) rotate(180deg);
    }
    97% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

/* 다양한 크기의 눈송이 */
.snowflake.small {
    font-size: 0.7em;
    animation-duration: 12s;
    opacity: 0.5;
    animation-timing-function: ease-in-out;
}

.snowflake.medium {
    font-size: 1em;
    animation-duration: 15s;
    opacity: 0.7;
    animation-timing-function: ease-in-out;
}

.snowflake.large {
    font-size: 1.4em;
    animation-duration: 18s;
    opacity: 0.9;
    animation-timing-function: ease-in-out;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit {
        padding: 1.5rem 1.5rem;
        min-width: 100px;
    }
    
    .time-value {
        font-size: 3rem;
    }
    
    .time-label {
        font-size: 1rem;
    }
    
    .separator {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 1rem 1rem;
        min-width: 80px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
    
    .separator {
        font-size: 1.5rem;
    }
}

/* 댓글 섹션 스타일 */
.comments-section {
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.comments-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comments-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.comment-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #95a4e9 0%, #b586e4 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.comments-list::-webkit-scrollbar {
    width: 8px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.comment-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideIn 0.5s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.comment-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.comment-content {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.empty-comments {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* 댓글 섹션 반응형 */
@media (max-width: 768px) {
    .comments-section {
        padding: 2rem 1rem;
    }
    
    .comments-container {
        padding: 2rem 1.5rem;
    }
    
    .comments-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
    
    .comments-list {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .comments-section {
        padding: 1.5rem 1rem;
    }
    
    .comments-container {
        padding: 1.5rem 1rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-form {
        padding: 1rem;
    }
    
    .comment-item {
        padding: 1rem;
    }
    
    .comment-name {
        font-size: 1rem;
    }
    
    .comment-content {
        font-size: 0.9rem;
    }
}

/* 관리자 버튼 */
.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

.admin-dashboard {
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: rgba(255, 255, 255, 0.8);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ffffff;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 2rem;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

.modal-content .form-group label {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.modal-content input[type="text"],
.modal-content input[type="password"],
.modal-content input[type="datetime-local"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* 비밀번호 입력 필드 래퍼 */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 45px;
}

/* 비밀번호 표시/숨김 버튼 */
.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 5px;
}

.password-toggle-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.password-toggle-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-content input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.modal-content input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

/* 관리자 대시보드 */
.admin-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.admin-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.admin-input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.admin-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

.admin-action-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.admin-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.admin-comments-list {
    max-height: 300px;
    overflow-y: auto;
}

.admin-comment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-comment-info {
    flex: 1;
    min-width: 200px;
}

.admin-comment-name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.admin-comment-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.admin-comment-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.admin-delete-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
    .admin-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 10% auto;
    }
    
    .admin-dashboard {
        max-height: 70vh;
    }
}

