/* 라이브 이용 가이드 페이지 - 깔끔한 스타일 */

.live-guide-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 헤더 섹션 */
.guide-header {
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.main-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.live-schedule {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.live-schedule i {
    font-size: 1.1rem;
    color: #667eea;
}

/* 공통 스타일 */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px 0;
}

/* 시작하기 전에 섹션 */
.before-start {
    padding: 80px 0;
    background: #fafbfc;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.requirement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.req-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.requirement-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* 주문 과정 섹션 */
.order-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: #e9ecef;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: relative;
    z-index: 2;
}

.step-number {
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px 0;
}

.order-examples {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.example-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.example-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.example-text {
    font-size: 0.95rem;
    color: #1a1a1a;
}

.example-text code {
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* 주문 예시 섹션 */
.order-examples-section {
    padding: 80px 0;
    background: #fafbfc;
}

.examples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.example-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.example-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.example-card.correct .example-header {
    background: #d4edda;
    color: #155724;
}

.example-card.incorrect .example-header {
    background: #f8d7da;
    color: #721c24;
}

.example-content {
    padding: 20px;
    background: #f8f9fa;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.username {
    color: #667eea;
    font-weight: 600;
    min-width: 80px;
}

.message {
    color: #1a1a1a;
}

/* 주의사항 섹션 */
.important-notes {
    padding: 80px 0;
    background: white;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.note-card {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid;
}

.note-card.warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.note-card.info {
    background: #d1ecf1;
    border-color: #74b9ff;
    color: #0c5460;
}

.note-card.success {
    background: #d4edda;
    border-color: #00b894;
    color: #155724;
}

.note-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.note-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.note-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* FAQ 섹션 */
.faq-section {
    padding: 80px 0;
    background: #fafbfc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-question i {
    color: #667eea;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 20px 25px;
    background: #f8f9fa;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .requirement-card {
        padding: 30px 25px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .process-step {
        gap: 20px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-examples {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .guide-header,
    .before-start,
    .order-process,
    .order-examples-section,
    .important-notes,
    .faq-section {
        padding: 60px 0;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .requirement-card {
        padding: 25px 20px;
    }
    
    .note-card {
        padding: 25px 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
}
