#main{
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

#main .inner {
    position: relative;
    z-index: 1;
}

/* 지폐 떨어지는 효과 */
.money-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.money {
    position: absolute;
    width: 80px;
    height: auto;
    animation: fallDown linear infinite;
    animation-play-state: paused; /* GSAP으로 펼쳐진 후 시작 */
}

.money-1 {
    left: 3%;
    top: -250px;
    animation-duration: 7s;
    animation-delay: 0s;
    animation-name: fallDown1;
}

.money-2 {
    left: 18%;
    top: -180px;
    animation-duration: 7.5s;
    animation-delay: 0.2s;
    animation-name: fallDown2;
}

.money-3 {
    left: 42%;
    top: -300px;
    animation-duration: 6.5s;
    animation-delay: 0.1s;
    animation-name: fallDown3;
}

.money-4 {
    left: 68%;
    top: -220px;
    animation-duration: 8s;
    animation-delay: 0.3s;
    animation-name: fallDown4;
}

.money-5 {
    left: 88%;
    top: -160px;
    animation-duration: 7.2s;
    animation-delay: 0.15s;
    animation-name: fallDown5;
}

/* 기본 경로 (참고용, 현재는 개별 keyframes 사용) */
@keyframes fallDown {
    0% {
        top: -150px;
        transform: translateX(0) rotate(-10deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateX(10px) rotate(5deg);
    }
    25% {
        transform: translateX(-15px) rotate(-8deg);
    }
    40% {
        transform: translateX(20px) rotate(12deg);
    }
    55% {
        transform: translateX(-10px) rotate(-5deg);
    }
    70% {
        transform: translateX(15px) rotate(8deg);
    }
    85% {
        transform: translateX(-5px) rotate(-3deg);
    }
    95% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        transform: translateX(25px) rotate(20deg);
        opacity: 0;
    }
}

/* 지폐마다 다른 위치/회전 경로 */
@keyframes fallDown1 {
    0% {
        top: -250px;
        transform: translateX(0) rotate(-5deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateX(-5px) rotate(0deg);
    }
    30% {
        transform: translateX(10px) rotate(5deg);
    }
    60% {
        transform: translateX(-8px) rotate(2deg);
    }
    100% {
        top: 100vh;
        transform: translateX(12px) rotate(8deg);
        opacity: 0;
    }
}

@keyframes fallDown2 {
    0% {
        top: -180px;
        transform: translateX(0) rotate(8deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: translateX(8px) rotate(3deg);
    }
    35% {
        transform: translateX(-12px) rotate(-2deg);
    }
    70% {
        transform: translateX(6px) rotate(4deg);
    }
    100% {
        top: 100vh;
        transform: translateX(-10px) rotate(6deg);
        opacity: 0;
    }
}

@keyframes fallDown3 {
    0% {
        top: -300px;
        transform: translateX(0) rotate(-12deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateX(5px) rotate(-4deg);
    }
    40% {
        transform: translateX(-18px) rotate(2deg);
    }
    75% {
        transform: translateX(10px) rotate(6deg);
    }
    100% {
        top: 100vh;
        transform: translateX(15px) rotate(10deg);
        opacity: 0;
    }
}

@keyframes fallDown4 {
    0% {
        top: -220px;
        transform: translateX(0) rotate(4deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
        transform: translateX(-10px) rotate(0deg);
    }
    45% {
        transform: translateX(15px) rotate(-3deg);
    }
    80% {
        transform: translateX(-8px) rotate(5deg);
    }
    100% {
        top: 100vh;
        transform: translateX(-14px) rotate(9deg);
        opacity: 0;
    }
}

@keyframes fallDown5 {
    0% {
        top: -160px;
        transform: translateX(0) rotate(-6deg);
        opacity: 0;
    }
    8% {
        opacity: 1;
        transform: translateX(6px) rotate(-2deg);
    }
    30% {
        transform: translateX(-10px) rotate(3deg);
    }
    65% {
        transform: translateX(14px) rotate(-1deg);
    }
    100% {
        top: 100vh;
        transform: translateX(8px) rotate(7deg);
        opacity: 0;
    }
}

/* 모바일에서 지폐가 하나씩 자연스럽게 떨어지도록 조정 */
@media screen and (max-width: 768px) {
    .money {
        width: 60px;
        animation-timing-function: ease-in-out;
    }

    .money-1 {
        left: 12%;
        animation-duration: 7s;
        animation-delay: 0s;
    }

    .money-2 {
        left: 32%;
        animation-duration: 7.2s;
        animation-delay: 1.2s;
    }

    .money-3 {
        left: 52%;
        animation-duration: 7.4s;
        animation-delay: 2.4s;
    }

    .money-4 {
        left: 72%;
        animation-duration: 7.6s;
        animation-delay: 3.6s;
    }

    .money-5 {
        left: 88%;
        animation-duration: 7.8s;
        animation-delay: 4.8s;
    }
}

#main .sec-1 .top{
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding-top: 100px;
}

#main .sec-1 .top .img {
    width: 45%;
}

#main .sec-1 .top h1 {
    font-family: 'koroad_bold';
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    margin-top: -150px;
}

#main .sec-1 .top h1 .col_primary {
    display: inline-block;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
}

#main .sec-1 .bottom{
    display: flex;
    gap: 20px;
    margin-top: -100px;
}

#main .sec-1 .bottom .box{
    position: relative;
    flex: 1;
    border-radius: 20px;
    color: #fff;
    font-family: 'koroad_bold';
    padding: 80px 40px 60px 40px;
}

#main .sec-1 .bottom .box.n-1{
    background-color: #F6AB00;
}

#main .sec-1 .bottom .box.n-1 a{
    background-color: #F9C44C;
}

#main .sec-1 .bottom .box.n-2{
    background-color: #EA5529;
}

#main .sec-1 .bottom .box.n-2 a{
    background-color: #F08869;
}

#main .sec-1 .bottom .box h2{
    font-size: 3rem;
}

#main .sec-1 .bottom a {
    border-radius: 10px;
    text-align: center;
    width: 100%;
    padding: 16px 0;
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
    margin-top: 20px;
}

#main .sec-1 .bottom .box .img{
    position: absolute;
    z-index: -1;
}

#main .sec-1 .bottom .box.n-1 .img {
    top: 17px;
    right: 50px;
    width: 150px;
}

#main .sec-1 .bottom .box.n-2 .img {
    top: 0;
    right: 0;
    width: 60%;
}

#main .sec-1 .bottom .box.n-2 .tit {
    position: absolute;
    top: -106px;
    left: 0;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

#main .sec-2{
    margin-top: 100px;
}

#main .sec-2 .list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    word-break: keep-all;
}

#main .sec-2 .list .box{
    width: calc((100% - 20px) / 2);
    border-radius: 20px;
    background-color: #fff;
    padding: 40px;
}

#main .sec-2 .list .box .top{
    display: flex;
    align-items: center;
    gap: 0 20px;
    font-family: 'koroad_bold';
    font-size: 1.5rem;
}

#main .sec-2 .list .box .top span{
    background-color: #999999;
    color: #fff;
    border-radius: 50px;
    padding: 2px 20px;
}

#main .sec-2 .list .box .top p{
    font-size: 1.5rem;
}


#main .sec-2 .list .box.on .top span{
    background-color: var(--primary);
}


#main .sec-2 .list .box.on{
    border: 5px solid var(--primary);
    background-color: #FFDFD5;
}

#main .sec-2 .list .box.on .txt{
    background-color: #fff;
}

#main .sec-2 .list .box  .txt{
    border-radius: 50px;
    padding: 10px 20px;
    background-color: #F3F3F3;
    margin-top: 20px;
}

/* 알림/공지 섹션 */
#main .sec-3 {
    position: relative;
    margin-top: 100px;
}

#main .sec-3 .heart {
    position: absolute;
    top: -223px;
    left: -274px;
    z-index: -1;
}

#main .sec-3 .notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

#main .sec-3 .notice-header .tit-box {
    display: flex;
    gap: 0 20px;
    align-items: center;
}

#main .sec-3 .notice-header .tit-box .notice-counter{
    background-color: #fff;
    border-radius: 50px;
    padding: 4px 20px;
}

#main .sec-3 .notice-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    font-family: 'koroad_bold';
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#main .sec-3 .notice-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#main .sec-3 .notice-counter {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'koroad_bold';
    color: #999;
}

#main .sec-3 .notice-counter .current-page {
    color: var(--primary);
    font-weight: 700;
}

#main .sec-3 .notice-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'koroad_bold';
    box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
}

#main .sec-3 .notice-btn:hover {
    border-color: #ff7a36;
    color: #ff7a36;
    background: #fff7f1;
    transform: scale(1.1);
}

#main .sec-3 .notice-carousel {
    overflow: hidden;
}

#main .sec-3 .notice-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

#main .sec-3 .notice-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#main .sec-3 .notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

#main .sec-3 .notice-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#main .sec-3 .notice-badge {
    display: inline-block; 
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'koroad_bold';
}

#main .sec-3 .notice-badge.badge-gray {
    background: #333;
    color: #fff;
}

#main .sec-3 .notice-badge.badge-pink {
    background: #FF1C7F;
    color: #fff;
}

#main .sec-3 .notice-badge.badge-yellow {
    background: #F6AB00;
    color: #fff;
}

#main .sec-3 .notice-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'koroad_bold';
    line-height: 1.4;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#main .sec-3 .notice-card-text {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#main .sec-3 .notice-date {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: auto;
}

@media screen and (max-width: 1200px) {

    #main .sec-1 .top h1 {
        font-size: 2.8rem;
    }

    #main .sec-1 .bottom .box.n-2 .tit {
        position: absolute;
        top: -70px;
    }

}/*E:1200px*/


@media screen and (max-width: 1024px) {

    #main {
        margin-bottom: 0;
    }

    #main .sec-3 {
        padding: 60px 0;
        margin-top: 0;
    }
    
    #main .sec-3 .notice-title {
        font-size: 2.5rem;
    }
    
    #main .sec-3 .notice-header {
        align-items: flex-start;
        gap: 20px;
    }
    
    #main .sec-3 .notice-controls {
        align-self: flex-end;
    }

    #main .sec-1 .top h1 {
        font-size: 2.2rem;
    }

    #main .sec-2 .list .box{
        width: 100%;
    }

    #main .sec-2 {
        margin-top: 50px;
    }


}/*E:1024*/

@media screen and (max-width: 768px) {
    #main .sec-3 {
        padding: 40px 0;
        margin-top: 0;
    }
    
    #main .sec-3 .notice-title {
        font-size: 2rem;
    }
    
    #main .sec-3 .notice-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    #main .sec-3 .notice-card {
        padding: 25px;
    }

    #main .sec-1 .bottom .box.n-2 .tit {
        top: -40px;
        width: 300px;
    }

 

    #main .sec-1 .bottom .box.n-2 .img {
        width: 40%;
    }


    
    #main .sec-1 .top {
        padding-top: 200px;
        flex-direction: column;
    }

    #main .sec-1 .bottom {
        display: flex;
        gap: 60px 0;
        margin-top: -50px;
        flex-direction: column;
    }

    #main .sec-1 .top .img{
        display: none;
    }

    #main .sec-1 .top h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    #main .sec-2 .list .box {
        width: 100%;
        padding: 20px;
    }

    #main .sec-2 .list .box .top {
        font-size: 1rem;
    }

    #main .sec-2 .list .box .top p {
        font-size: 1.2rem;
    }

    #main .sec-2 .list .box .txt{
        border-radius: 10px;
    }

    #main .sec-3 .heart {
        top: -167px;
        left: -272px;
    }
    

}/*E:768*/


@media screen and (max-width: 640px) {
    #main .sec-3 .notice-title {
        font-size: 1.8rem;
    }
    
    #main .sec-3 .notice-counter {
        font-size: 1rem;
    }
    
    #main .sec-3 .notice-card-title {
        font-size: 1.1rem;
    }

    #main .sec-1 .bottom a {
        padding: 7px 0;
        font-size: 1.2rem;
    }

    #main .sec-1 .bottom .box h2 {
        font-size: 2rem;
    }

}/*E:640*/


@media screen and (max-width: 480px) {

    #main .sec-1 .bottom .box.n-1 .img{
        width: 50px;
    }

}/*E:480*/

/* 사업 신청자 현황 섹션 */
.status-area {
    margin-top: 40px;
    padding: 50px 0;
}

.status-title {
    font-family: 'koroad_bold';
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
}

.status-grid {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.status-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.status-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.status-card-title {
    font-family: 'koroad_bold';
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.status-bank-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bank-name {
    font-family: 'koroad_Medium', sans-serif;
    font-size: 1rem;
    color: #333;
    flex: 1;
}

.bank-status {
    display: inline-block;
    padding: 2px 15px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'koroad_bold', sans-serif;
    white-space: nowrap;
}

@media screen and (max-width: 1420px) and (min-width: 1025px) {
    .status-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .status-title {
        font-size: 2.5rem;
    }
    
    .status-grid {
        padding: 30px 20px;
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .status-bank-item {
        gap: 5px;
        flex-direction: column;
    }
   
}

@media screen and (max-width: 768px) {
    .status-area {
        margin-top: 50px;
        padding: 30px 0;
    }
    
    .status-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .status-swiper {
        padding: 20px 15px;
    }
    
    .status-card {
        padding: 20px 15px;
    }
    
    .status-card-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .bank-name {
        font-size: 0.9rem;
    }
    
    .bank-status {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}
