@charset "UTF-8";

/* General Styles */
body {
    font-family: 'Pretendard Variable', sans-serif;
    color: #222;
    background-color: #FCFCFC;
    margin: 0;
}

.container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 240px;
}

h1, h2, h3, p {
    margin: 0;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(252, 252, 252, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 36px;
}

/* Main Banner */
.main-banner {
    position: relative;
    height: 1080px;
    background: url('../images/main/image-a09f53c1053c092d03e743f8a4352a38ddeac4b1.png') no-repeat center center/cover;
    border-bottom-right-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-banner-text h1 {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    color: #fff;
}

/* Title Area */
.title-area {
    text-align: center;
    margin-bottom: 64px;
}

.title-area .sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #00754A;
    margin-bottom: 8px;
}

.title-area h2 {
    font-family: 'Ria Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: -0.04em;
}

/* Participants Section */
.participants-section {
    padding: 240px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-area {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid #D4D4D4;
    padding: 24px 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.filter-btn.active {
    border-bottom: 1px solid #00754A;
    color: #00754A;
}

/* Statistics Section */
.statistics-section {
    padding: 240px 0;
    background-color: #FCFCFC;
    text-align: center;
}

.progress-area {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.progress-bar {
    height: 420px;
    background-color: #EDEDED;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background-color: #00754A;
}

.progress-numbers {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    font-size: 36px;
    font-weight: 700;
}

/* Promotions Section */
.promotions-section {
    padding: 240px 0;
    background-color: #EDEDED;
}

.swiper-container {
    width: 100%;
    height: 495px;
}

.swiper-slide {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: rgba(34, 34, 34, 0.5);
    color: #fff;
}

.promotion-text .badge {
    background-color: #FCFCFC;
    color: #222;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
}

.promotion-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 16px 0;
}

.promotion-text p {
    font-size: 20px;
    font-weight: 500;
}

/* News Section */
.news-section {
    padding: 240px 0;
}

.news-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #D9D9D9;
}

.news-list li {
    border-bottom: 1px solid #D9D9D9;
}

.news-list a {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    text-decoration: none;
    color: #222;
    font-size: 20px;
    font-weight: 500;
}

.more-link {
    display: block;
    text-align: right;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

/* Footer */
.footer {
    padding: 186px 0;
    background: url('../images/main/image-31a3fa6b273bb339c87f38654dc5707dd5d78824.png') no-repeat center center/cover;
    border-top-left-radius: 200px;
    color: #fff;
}