
.ai-guide-page .container {
    padding-top: 180px;
}

html {
    background-color: #dde7dd;
}

:root {
    --bg-color: #f0f4f0;
     /* 매우 연한 민트/세이지 */
    --card-bg: #ffffff;
    --text-color: #3a4a4d;
     /* 다크 그린-그레이 */
    --header-bg: #4a7c59;
     /* 메인 그린 */
    --header-text: #ffffff;
    --accent-color: #6b9080;
     /* 부드러운 세이지 그린 */
    --highlight-bg: #e6f0e6;
    --highlight-text: #3c6e4e;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ai-guide-page {
    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    line-height: 1.7;

}

.ai-guide-page body {
    color: var(--text-color);
    background-color: var(--bg-color);
}

.slide {
    background: var(--card-bg);
    margin: 30px 0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    animation: fadeIn 0.8s ease-out;
}


.slide-footer {
    text-align: center;
    margin-bottom: 20px;
    background-color: #3c6e4e;
    padding: 80px 40px;
    border-radius: 12px;
    color: #ffffff;
}

.ai-guide-page .header {
    background: linear-gradient(135deg, var(--header-bg), var(--accent-color));
}

.ai-guide-page .header-content h1 {
    font-size: 1.8em;
    font-weight: 800;
    line-height: 1.3;
    color: var(--header-text);
}

.ai-guide-page .header-content p {
    margin-bottom: 5px;
}

.ai-guide-page h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.ai-guide-page h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    color: var(--header-bg);
}

.ai-guide-page h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 30px 0 15px;
}

.ai-guide-page h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.back-btn {
    color: #fff;
}

.back-btn:hover {
    transform: scale(1.08);
    background: #355c41;
    box-shadow: 0 2px 16px 0 rgba(120,80,200,0.17);
    text-decoration: none;
}

.ai-guide-page .header-content .subtitle {
    color: var(--header-text);
    font-size: 1.1em;
    opacity: 0.95;
}

p {
    margin-bottom: 15px;
}

strong {
    color: var(--highlight-text);
    font-weight: 700;
}

.highlight {
    background-color: var(--highlight-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--highlight-text);
}

ul, ol {
    margin-left: 20px;
    padding-left: 15px;
}

li {
    margin-bottom: 10px;
}

.strategy-box {
    background: var(--bg-color);
    border: 1px solid #e0e8e0;
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
}
.prompt-box {
    background: #3a4a4d;
    color: #f0f4f0;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    margin-top: 15px;
}

.week-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.week-card { 
    background: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e0e8e0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.week-card:hover { 
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.week-card h3 { 
    margin-top: 0;
    font-size: 1.5em;
    color: var(--header-bg);
}
.week-card ul {
    padding-left: 20px;
}

.mission-check {
    font-weight: 700;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.4em;
    }
    h2 {
        font-size: 1.2em;
    }
    .week-plan-grid { 
        grid-template-columns: 1fr;
    }
}

@media (max-width: 530px) {
    body {
        font-size: 80%;
    }
    .ai-guide-page .container {
        padding-top: 100px;
    }
    .ai-guide-page .header-content h1 {
        margin-top: 8px;
        margin-bottom: 4px;
        font-size: 1.2em;
    }
    .ai-guide-page .header-content .subtitle {
      font-size: 1em;
      margin-bottom: 8px;
    }
    .header-content {
        padding: 25px 20px 12px 20px;
      }
      .header-content p {
        margin-bottom: 2px;
      }
      .back-btn {
        top: 8px;
        font-size: 1em;
        padding: 4px 10px;
        min-width: 60px;
        min-height: 28px;
      }
  }