/* 은퇴시뮬레이터 페이지 스타일 */
.retirecalc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 100vh;
    padding-bottom: calc(50px + 20px); /* 스크롤버튼 + 띠배너1번 + 띠배너여백 + 고정배너 + 여백 */
}

/* 헤더 */
.retirecalc-header {
    text-align: center;
    margin-bottom: 40px;
}

.retirecalc-title {
    font-size: 42px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 182, 193, 0.5);
}

.retirecalc-subtitle {
    font-size: 18px;
    color: #5A5A5A;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* iframe 컨테이너 */
.iframe-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    min-height: 800px;
}

#retirecalcFrame {
    width: 100%;
    min-height: 800px;
    border: none;
    border-radius: var(--radius-md);
    display: block;
}

/* 안내 메시지 */
.info-message {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    color: #2D2D2D;
    font-size: 14px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.info-message p {
    margin: 0;
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 768px) {
    .retirecalc-container {
        padding: 40px 16px 80px;
        padding-bottom: calc(50px + 20px); /* 스크롤버튼 + 띠배너1번 + 띠배너여백 + 고정배너 + 여백 */
    }
    
    .retirecalc-title {
        font-size: 36px;
    }
    
    .retirecalc-subtitle {
        font-size: 16px;
    }
    
    .iframe-container {
        padding: 10px;
        min-height: 600px;
    }
    
    #retirecalcFrame {
        min-height: 600px;
    }
}
