body {
	background-color: #EAF4F4;
	margin: 0;
	padding: 0;
}

section {
	position: relative;
	padding: 20px 15px;
}

#hero {
	height: 100vh;
	background-color: aqua;
	background-image: url('../image/banner_img.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	animation: ani-slg1 1s ease alternate;
}

@keyframes ani-slg1 {
    0% {
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#world_vibe {
	width: 100%;
	padding: 60px 15px;
	position: relative;
	overflow: hidden;
}

.section_title {
	text-align: center;
	font-size: clamp(32px, 8vw, 48px);
	color: #3E8E7E;
	margin-bottom: 40px;
	transition: all 1s ease;
}

.slider {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	position: relative;
	height: clamp(250px, 60vw, 450px);
	overflow: hidden;
}

.slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	clip-path: circle(0% at 50% 50%);
	transition: clip-path 1.5s ease;
}

.cards {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0 10px;
}

.card {
	width: 100%;
	max-width: 280px;
	min-height: 200px;
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(8px);
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card_title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1E1E1E;
}

.card_text {
	font-size: 16px;
	color: #5B5B5B;
	line-height: 1.5;
}

.section_footer {
	text-align: center;
	font-size: clamp(18px, 4vw, 24px);
	color: #5B5B5B;
	margin-top: 60px;
	padding: 0 15px;
	transition: all 1s ease;
}

#character {
	position: relative;
	padding: 60px 15px;
}

.character_section_elem {
	position: relative;
	padding-bottom: 30px;
}

.character_text {
	position: relative;
	color: #3E8E7E;
	text-align: center;
	padding: 0 15px;
}

.character_table {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 30px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 0 10px;
}

.character_element {
	box-sizing: border-box;
	display: inline-block;
	width: calc(50% - 5px);
	min-width: 150px;
	aspect-ratio: 1.4/1;
	background-color: #e3e3e3;
	border: 1px solid #5f5f5f;
	font-size: clamp(18px, 4vw, 26px);
	text-align: center;
	transition: all .2s;
}

.character_element a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.character_element figcaption {
	padding: 5px;
}

.character_element:hover {
	background-color: navy;
	color: aqua;
}

#world_environment {
	width: 100%;
	min-height: 420px;
	position: relative;
	overflow: hidden;
	padding: 60px 15px;
	font-family: 'Noto Sans KR', sans-serif;
}

.env_title {
    text-align: center;
    font-size: clamp(32px, 8vw, 48px);
    color: #3E8E7E;
    margin-bottom: 40px;
    transition: all 1s ease;
}

.parallax_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-out;
}

.layer_back {
    z-index: 1;
}

.layer_mid {
    z-index: 2;
}

.layer_front {
    z-index: 3;
}

.env_text {
    position: relative;
    width: 100%;
    text-align: center;
    color: #1E1E1E;
    font-size: clamp(18px, 4vw, 28px);
    padding: 0 15px;
    margin-top: 40px;
    transition: all 1s ease;
}

#interactive_explore {
    width: 100%;
    min-height: 600px;
    background-color: #E0E8E2;
    padding: 60px 15px;
    position: relative;
}

.explore_title {
    text-align: center;
    font-size: clamp(32px, 8vw, 48px);
    color: #3E8E7E;
    margin-bottom: 40px;
}

.mini_map {
    width: 100%;
    max-width: 1200px;
    height: clamp(400px, 80vw, 600px);
    margin: 0 auto;
    position: relative;
    background-color: #CBE2E8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map_background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('map_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.character {
    width: clamp(60px, 15vw, 100px);
    height: clamp(60px, 15vw, 100px);
    background-image: url('character.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

.interactive_point {
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive_point:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.explore_message {
    text-align: center;
    font-size: clamp(16px, 4vw, 22px);
    color: #1E1E1E;
    margin-top: 30px;
    padding: 0 15px;
}

#ending_branding {
    width: 100%;
    min-height: 600px;
    position: relative;
    background-color: #CDE0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
}

.ending_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('ending_bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.ending_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 20px;
}

.ending_title {
    font-size: clamp(32px, 8vw, 48px);
    color: #3E8E7E;
    margin-bottom: 20px;
    transition: all 1s ease;
}

.ending_text {
    font-size: clamp(16px, 4vw, 22px);
    color: #1E1E1E;
    margin-bottom: 40px;
    line-height: 1.6;
    transition: all 1s ease;
}

.branding img {
    width: clamp(100px, 30vw, 150px);
    margin-bottom: 15px;
}

.branding-slogan {
    font-size: clamp(14px, 3.5vw, 18px);
    color: #5B5B5B;
    font-style: italic;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}