/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: white;
    color: #121212;
    overflow-x: hidden;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #091228;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border: 1px solid #dedede;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-selector:hover {
    border-color: #0066ff;
}

/* Hero Section */
.ellipse-background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    max-width: 150vw;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ellipse-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.hero {
    min-height: 812px;
    display: flex;
    align-items: center;
    padding: 72px 24px;
    background: linear-gradient(180deg, #091228 0%, #032672 50%, #2C81FF 100%);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 1110px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
    color: white;
}

.hero-description {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.hero-description .emoji {
    font-size: 32px;
}

/* Hero Image with Floating Icons */
.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 574px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img{
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 545px;
    height: 545px;
    max-width: 100%;
}

/* 동심원 배경 */
.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(78, 228, 255, 0.3);
}

.hero-circles svg{
    width: 545px;
    height: 545px;
}

.hero-circle-1 {
    width: 451.95px;
    height: 451.95px;
    top: 46.52px;
    left: 46.52px;
}

.hero-circle-2 {
    width: 499.43px;
    height: 499.43px;
    top: 22.79px;
    left: 22.79px;
}

.hero-circle-3 {
    width: 545px;
    height: 545px;
    top: 0;
    left: 0;
    color:#f9f9f9;
}

/* 중앙 캐릭터 */
.hero-character {
    position: absolute;
    width: 379.79px;
    height: 379.79px;
    top: 86.4px;
    left: 82.61px;
    z-index: 2;
}

.hero-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

/* 떠다니는 아이콘들 */
.floating-icon {
    position: absolute;
    z-index: 3;
    animation: float-slow 4s ease-in-out infinite;
}

.floating-icon-1 {
    width: 98.75px;
    height: 98.75px;
    left: 6.37px;
    top: 339.63px;
    transform: rotate(-10.073deg);
}

.floating-icon-2 {
    width: 86.91px;
    height: 86.91px;
    left: 410.17px;
    top: 100.64px;
    transform: rotate(13.285deg);
}

.floating-icon-3 {
    width: 68.36px;
    height: 68.36px;
    left: 78.81px;
    top: 30.38px;
    transform: rotate(2.919deg);
}

.floating-icon-4 {
    width: 68.36px;
    height: 68.36px;
    left: 356.05px;
    top: 425.37px;
    transform: rotate(12.342deg);
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) rotate(var(--icon-rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--icon-rotation, 0deg));
    }
}

.floating-icon-1 {
    --icon-rotation: -10.073deg;
}

.floating-icon-2 {
    --icon-rotation: 13.285deg;
}

.floating-icon-3 {
    --icon-rotation: 2.919deg;
}

.floating-icon-4 {
    --icon-rotation: 12.342deg;
}

/* 블러 배경 */
.icon-blur-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(54, 155, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15%;
    box-shadow: 0 4px 12px rgba(78, 228, 255, 0.2);
}

.icon-blur-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-button {
    width: 180px;
    height: 68px;
    background: white;
    border-radius: 24px;
    box-shadow: 0px 12px 40px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.app-button:hover {
    transform: translateY(-4px);
    box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.12);
}

.app-button img {
    height: 27px;
}

/* Banner */
.banner {
    height: 88px;
    background: linear-gradient(90deg, #ffb916 0%, #4ee4ff 52.885%, #0066ff 100%);
    overflow: hidden;
    position: relative;
}

.banner-content {
    display: flex;
    gap: 56px;
    align-items: center;
    padding: 28px 24px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    color: #091728;
}

.banner-item span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-item img {
    height: auto;  
    width: auto;
    vertical-align: middle;  
    display: inline-block;
}

/* Section 2 - Features */
.section-2 {
    padding: 72px 24px;
    background: white;
}

.section-title {
    background: #f6f8fb;
    border-radius: 32px;
    padding: 24px;
    text-align: center;
    margin: 0 auto 24px;
    max-width: 1110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #121212;
}

.section-title .highlight {
    font-weight: 600;
}

.section-title .icon {
    height: 81px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1110px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 258px;
    border-radius: 32px;
    padding: 40px 24px;
    min-height: 308px;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card.primary {
    background: linear-gradient(0deg, #ffa11d 0%, #ffb916 62.595%);
}

.feature-card.secondary {
    background: #f6f8fb;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 12px;
    filter: drop-shadow(4px 4px 12px rgba(0, 47, 100, 0.2));
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #121212;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #303030;
}

.feature-card.primary .feature-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    background-clip: text;
    margin-top: 16px;
}

.feature-card.primary .arrow {
    position: absolute;
    font-size: 48px;
    color: white;
    margin-top: 8px;
}

/* Section 3 - Missions */
.section-3 {
    background: #091728;
    padding: 72px 24px;
}

.section-3 h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 32px;
}

.missions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1110px;
    margin: 0 auto 32px;
}

.mission-card {
    flex: 1;
    min-width: 320px;
    min-height: 340px;
    border: 2px solid #16efff;
    border-radius: 32px;
    padding: 40px 24px;
    background: rgba(22, 239, 255, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(22, 239, 255, 0.1);
    transform: translateY(-8px);
}

.mission-icon {
    font-size: 80px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #16efff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
    letter-spacing: -0.48px;
}

.section-note {
    font-size: 20px;
    font-weight: 500;
    color: silver;
    text-align: center;
}

/* Section 4 - CTA Banner */
.section-4 {
    padding: 72px 24px;
    background: white;
}

.cta-banner {
    max-width: 752px;
    height: 361.77px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0066ff 50%, #1ba3ff 100%);
    border-radius: 21.679px;
    box-shadow: 0px 2.71px 13.55px 0px rgba(0, 45, 100, 0.12);
    position: relative;
    overflow: hidden;
}

/* 텍스트 - 상단 */
.cta-text {
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.cta-text p {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* 아이콘 일렬 - 정 가운데 */
.cta-icons {
    position: relative;
    z-index: 1;
    top: 120px;
    left: -10%;
}

.cta-icons img {
    display: block;
    width: 120%;
    height: auto;
}

/* 티켓 이미지 - 하단 */
.cta-ticket {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 558px;
    z-index: 1;
}

.cta-ticket img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 5 - Final CTA */
.section-5 {
    padding: 72px 24px 150px;
    position: relative;
    background: white;
}

.section-5 .container {
    text-align: center;
    max-width: 1110px;
    margin: 0 auto;
}

.final-title {
    font-size: 32px;
    font-weight: 500;
    color: #121212;
}

.final-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 32px;
    margin-bottom: 24px;
}

.final-subtitle .bold {
    font-weight: 900;
}

.highlight-box {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.highlight-box span {
    font-size: 60px;
    font-weight: 900;
    color: white;
}

.section-5 .app-buttons {
    justify-content: center;
}

.character-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 278px;
    height: 180px;
}

.character-bottom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer */
footer {
    background: #f6f8fb;
    padding: 24px;
}

.footer-content {
    max-width: 1110px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 36px;
    filter: grayscale(1);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-company {
    flex: 1;
    min-width: 450px;
}

.footer-company h3 {
    font-size: 14px;
    font-weight: 700;
    color: #707070;
    margin-bottom: 4px;
}

.footer-company p {
    font-size: 12px;
    color: #cdcdcd;
}

.footer-details {
    flex: 1;
    min-width: 300px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 12px;
    color: #707070;
    margin-bottom: 4px;
}

.footer-row span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.divider {
    width: 1px;
    height: 12px;
    background: #cdcdcd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-banner {
        height: 300px;
    }

    .cta-text {
        top: 24px;
    }

    .cta-text h2,
    .cta-text p {
        font-size: 28px;
    }

    .cta-icons {
        top: 95px;
    }

    .cta-ticket {
        bottom: 30px;
        max-width: 480px;
    }
}

/* 태블릿 (800px) */
@media (max-width: 800px) {
    .hero {
        min-height: 812px;
        padding: 111px 24px;
    }

    .hero-content {
        max-width: 752px;
        gap: 20px;
        align-items: center;
    }

    .hero-text {
        flex: 0 0 366px;
        min-width: 366px;
        max-width: 366px;
    }

    .hero-text h1 {
        font-size: 28px;
        width: 308px;
        height: 90px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 18px;
        width: 366px;
        height: 48px;
    }

    .app-buttons {
        width: 372px;
    }

    .app-button {
        width: 180px;
        height: 68px;
    }

    .hero-image {
        flex: 0 0 366px;
        min-width: 366px;
        max-width: 366px;
    }

    .hero-circles svg{
        width: 366px;
        height: 366px;
    }

    .hero-image-container {
        width: 366px;
        height: 366px;
    }

    .hero-circle-1 {
        width: 303.51px;
        height: 303.51px;
        top: 31.24px;
        left: 31.24px;
    }

    .hero-circle-2 {
        width: 335.39px;
        height: 335.39px;
        top: 15.3px;
        left: 15.3px;
    }

    .hero-circle-3 {
        width: 366px;
        height: 366px;
    }

    .hero-character {
        width: 255.05px;
        height: 255.05px;
        top: 58.02px;
        left: 55.47px;
    }

    .floating-icon-1 {
        width: 76.89px;
        height: 76.89px;
        left: 4.28px;
        top: 239.68px;
    }

    .floating-icon-2 {
        width: 70.22px;
        height: 70.22px;
        left: 288.87px;
        top: 67.59px;
    }

    .floating-icon-3 {
        width: 48.19px;
        height: 48.19px;
        left: 55.26px;
        top: 20.4px;
    }

    .floating-icon-4 {
        width: 54.66px;
        height: 54.66px;
        left: 248.92px;
        top: 285.66px;
    }
}

/* 모바일 (768px 이하) - 세로 레이아웃으로 전환 */
@media (max-width: 768px) {
    header {
        padding: 0 16px;
    }

    .hero-content {
        flex-direction: column;
        gap: 24px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-circles svg{
        width: 366px;
        height: 366px;
    }

    .section-title h2,
    .section-3 h2,
    .final-title,
    .final-subtitle {
        font-size: 24px;
    }

    .section-title .icon {
        font-size: 36px;
    }

    .banner-item {
        font-size: 16px;
    }

    .feature-card {
        min-width: 100%;
    }

    .feature-card.primary .feature-title {
        font-size: 24px;
    }

    .mission-card {
        min-width: 100%;
    }

    .cta-banner {
        height: 280px;
    }

    .cta-text {
        top: 20px;
    }

    .cta-text h2,
    .cta-text p {
        font-size: 24px;
    }

    .cta-icons {
        top: 95px;
    }


    .cta-ticket {
        bottom: 25px;
        max-width: 420px;
    }

    .highlight-box span {
        font-size: 24px;
    }

    .footer-company,
    .footer-details {
        min-width: 100%;
    }

    .section-2,
    .section-3,
    .section-4 {
        padding: 48px 16px;
    }
}

/* 모바일 (360px) */
@media (max-width: 480px) {
    .hero {
        min-height: 812px;
        padding: 111px 24px;
    }

    .hero-content {
        flex-direction: column;
        gap: 24px;
        max-width: 312px;
    }

    .hero-text {
        flex: 1;
        min-width: 312px;
        max-width: 312px;
        order: 1;
    }

    .hero-text h1 {
        font-size: 28px;
        width: 312px;
        height: 90px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 18px;
        width: 312px;
        height: 48px;
    }

    .app-buttons {
        width: 312px;
        gap: 12px;
    }

    .app-button {
        width: 150px;
        height: 68px;
    }

    .hero-image {
        flex: 0 0 312px;
        min-width: 312px;
        max-width: 312px;
        order: 2;
    }

    .hero-image-container {
        width: 312px;
        height: 312px;
    }

    .hero-circle-1 {
        width: 258.73px;
        height: 258.73px;
        top: 26.63px;
        left: 26.63px;
    }

    .hero-circle-2 {
        width: 285.91px;
        height: 285.91px;
        top: 13.05px;
        left: 13.05px;
    }

    .hero-circle-3 {
        width: 312px;
        height: 312px;
    }

    .hero-character {
        width: 217.42px;
        height: 217.42px;
        top: 49.46px;
        left: 47.29px;
    }

    .floating-icon-1 {
        width: 65.55px;
        height: 65.55px;
        left: 3.65px;
        top: 204.32px;
    }

    .floating-icon-2 {
        width: 59.86px;
        height: 59.86px;
        left: 246.25px;
        top: 57.62px;
    }

    .floating-icon-3 {
        width: 41.08px;
        height: 41.08px;
        left: 47.11px;
        top: 17.39px;
    }

    .floating-icon-4 {
        width: 46.6px;
        height: 46.6px;
        left: 212.2px;
        top: 243.51px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .banner {
        height: 72px;
    }

    .banner-item {
        font-size: 14px;
    }

    .cta-banner {
        height: 240px;
    }

    .cta-text {
        top: 18px;
    }

    .cta-text h2,
    .cta-text p {
        font-size: 20px;
    }

    .cta-icons {
        top: 85px;
    }


    .cta-ticket {
        bottom: 20px;
        max-width: 320px;
        width: 85%;
    }
}

#locale {
    border: none;
}
