.counter-section {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.4;
    color: #333;
}

.counter {
    font-weight: 600;
    color: #2563eb;
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.counter::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    z-index: -1;
    border-radius: 4px;
}

/* Welcome Section */
.welcome-section {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 10px 15px -3px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    max-width: 1250px;
    margin: 40px auto;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Welcome Info */
.welcome-info {
    margin-bottom: 30px;
    padding-left: 15px;
}

.welcome-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2563eb;
}

.welcome-phone {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin: 10px 0;
}

.welcome-progress {
    font-size: 25px;
    font-weight: bold;
    color: #1f2937;
    margin: 10px 0;
}

.welcome-hours {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Icon Menu */
.icon-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    min-width: 100px;
    max-width: 140px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.icon-item:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.icon-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.icon {
    width: 24px;
    height: 24px;
    color: #475569;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-text {
    font-size: 14px;
    color: #475569;
    text-align: center;
    margin-top: 8px;
}

/* Login Emphasis */
.icon-item.login-emphasis {
    position: relative !important;
    overflow: visible;
}

.icon-item.login-emphasis::before {
    content: '!';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: bounce 1s infinite;
    z-index: 999;
    pointer-events: none;
}

/* Animations */
.fade-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Alert Banner */
.notice-banner-alert {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 15px auto;
    max-width: 1300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon-alert {
    color: #dc2626;
}

.notice-text-alert {
    color: #7f1d1d;
    font-size: 14px;
    line-height: 1.5;
}

/* Warning Banner */
.notice-banner-warning {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 15px auto;
    max-width: 1300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon-warning {
    color: #d97706;
}

.notice-text-warning {
    color: #78350f;
    font-size: 14px;
    line-height: 1.5;
}

/* Notice Banner */
.notice-banner-notice {
    background-color: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 15px auto;
    max-width: 1300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon-notice {
    color: #0284c7;
}

.notice-text-notice {
    color: #075985;
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .welcome-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .welcome-info {
        width: 45%;
        margin-bottom: 0;
    }

    .icon-menu {
        width: 55%;
        justify-content: flex-end;
    }

    .desktop-only {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    /* 모바일에서 특정 아이콘 숨기기 */
    .icon-item.mobile-hide {
        display: none !important;
    }

    .welcome-section {
        margin: 15px;
        padding: 20px;
        border-radius: 8px;
    }

    .container {
        padding: 0;
    }

    .welcome-info {
        padding-left: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .welcome-title {
        font-size: 16px;
    }

    .welcome-phone {
        font-size: 24px;
    }

    .welcome-progress {
        font-size: 18px;
    }

    .welcome-hours {
        font-size: 13px;
    }

    .icon-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        scrollbar-width: thin;
        -ms-overflow-style: none;
        width: 100%;
        justify-content: flex-start;
        margin: 0 -5px;
    }

    .icon-menu::-webkit-scrollbar {
        display: none;
    }

    .icon-item {
        min-width: 85px;
        padding: 12px 8px;
    }

    .icon-text {
        font-size: 12px;
    }

    .icon {
        width: 20px;
        height: 20px;
    }

    .icon-item.login-emphasis::before {
        display: none;
    }

    /* Notice Banners */
    .notice-banner-alert,
    .notice-banner-warning,
    .notice-banner-notice {
        margin: 10px 15px;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 320px) {
    .welcome-section {
        margin: 10px;
        padding: 15px;
    }

    .welcome-title {
        font-size: 14px;
    }

    .welcome-phone {
        font-size: 20px;
    }

    .welcome-progress {
        font-size: 16px;
    }

    .icon-item {
        min-width: 80px;
        padding: 10px 6px;
    }
}