/* 메인 페이지 스타일 */

/* 배경 설정 */
body {
    background-color: var(--sky-blue);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 프레임 컨테이너 */
.frame-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.frame {
    position: absolute;
    object-fit: cover;
}

.frame-top {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 15vh;
}

.frame-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 15vh;
}

.frame-left {
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    max-width: 10vw;
}

.frame-right {
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    max-width: 10vw;
}

/* 메인 콘텐츠 */
.main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

/* 윗행 */
.top-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* 로고 박스 */
.logo-box {
    width: 320px;
    height: 320px;
    padding: 0;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 퀴즈 박스 */
.quiz-box {
    width: 320px;
    height: 320px;
    flex-direction: column;
}

.quiz-box .box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.quiz-box img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.quiz-box .box-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin: 0;
}

/* 아래행 */
.bottom-row {
    display: flex;
    justify-content: center;
}

/* 타임캡슐 박스 */
.memory-box {
    width: 650px;
    height: 200px;
    padding: 25px;
    justify-content: flex-start;
    gap: 20px;
}

.memory-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

.memory-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.memory-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

.memory-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--gray);
    margin: 0;
    line-height: 1.3;
}

/* 반응형 - 태블릿 사이즈 */
@media (max-width: 1024px) {
    .top-row {
        gap: 8px;
    }

    .logo-box,
    .quiz-box {
        width: 280px;
        height: 280px;
    }

    .quiz-box img {
        width: 140px;
        height: 140px;
    }

    .quiz-box .box-text {
        font-size: 28px;
    }

    .memory-box {
        width: 568px;
        height: 180px;
        padding: 20px;
    }

    .memory-icon {
        width: 130px;
        height: 130px;
    }

    .memory-title {
        font-size: 28px;
    }

    .memory-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .main-content {
        gap: 15px;
    }

    .top-row {
        gap: 8px;
    }

    .logo-box,
    .quiz-box {
        width: 220px;
        height: 220px;
    }

    .quiz-box img {
        width: 110px;
        height: 110px;
    }

    .quiz-box .box-text {
        font-size: 22px;
    }

    .memory-box {
        width: 448px;
        height: 150px;
        padding: 15px;
        gap: 15px;
    }

    .memory-icon {
        width: 100px;
        height: 100px;
    }

    .memory-title {
        font-size: 22px;
    }

    .memory-subtitle {
        font-size: 16px;
    }

    .frame-top,
    .frame-bottom {
        max-height: 10vh;
    }

    .frame-left,
    .frame-right {
        max-width: 7vw;
    }
}

/* 반응형 - 모바일 사이즈 */
@media (max-width: 480px) {
    /* 배경 프레임 조정 */
    .frame-top,
    .frame-bottom {
        max-height: 8vh;
    }

    .frame-left,
    .frame-right {
        max-width: 5vw;
    }

    /* 메인 콘텐츠 레이아웃 */
    .main-content {
        gap: 10px;
        padding: 15px;
    }

    /* 윗행 - 세로 배치 */
    .top-row {
        flex-direction: column;
        gap: 10px;
    }

    /* 로고 박스 */
    .logo-box {
        width: 180px;
        height: 180px;
    }

    .logo-box img {
        width: 100%;
        height: 100%;
    }

    /* 퀴즈 박스 */
    .quiz-box {
        width: 180px;
        height: 180px;
    }

    .quiz-box .box-content {
        gap: 10px;
    }

    .quiz-box img {
        width: 90px;
        height: 90px;
    }

    .quiz-box .box-text {
        font-size: 16px;
    }

    /* 타임캡슐 박스 - 세로 배치 */
    .memory-box {
        width: 180px;
        height: 235px;
        padding: 15px;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .memory-icon {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .memory-text-container {
        gap: 5px;
        text-align: center;
    }

    .memory-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .memory-subtitle {
        font-size: 12px;
        line-height: 1.4;
    }
}

