@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
    --primary: #4CAF50;
    --primary-light: #81C784;
    --primary-glow: rgba(76, 175, 80, 0.25);
    --bg: #F5F7FA;
    --bg-card: #FFFFFF;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-border: rgba(76, 175, 80, 0.15);
    --text-main: #2D3436;
    --text-dim: #636E72;
    --danger: #E74C3C;
    --accent: #00B894;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #E8F5E9;
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

header {
    padding: 50px 24px 30px;
    text-align: center;
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 50%, #81C784 100%);
    border-radius: 0 0 30px 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-bottom: 20px;
}

h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1B5E20;
}

.subtitle {
    font-size: 15px;
    color: #2E7D32;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 400;
}

section {
    padding: 32px 24px;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
}

.section-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.glass-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.08);
    border: 1px solid var(--surface-border);
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.profile-tag {
    font-size: 13px;
    color: var(--text-dim);
}

.image-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.image-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrap:hover img {
    transform: scale(1.03);
}

.video-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.profit-grid {
    display: grid;
    gap: 12px;
}

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--surface-border);
}

.ticker {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
}

.percent {
    color: var(--accent);
    font-weight: 700;
    font-family: monospace;
    font-size: 16px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--surface-border);
}

.step-num {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.floating-nav {
    position: sticky;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 100;
    padding: 0 20px;
}

.faq-box {
    border-bottom: 1px solid var(--surface-border);
    padding: 16px 0;
}

.faq-q {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    color: var(--text-main);
}

.faq-a {
    font-size: 14px;
    color: var(--text-dim);
}

footer {
    padding: 40px 24px;
    background: #C8E6C9;
    text-align: center;
    border-top: 1px solid var(--surface-border);
}

.footer-text {
    font-size: 12px;
    color: #388E3C;
    line-height: 1.8;
}

.warning-strip {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 18px;
    margin-top: 14px;
}

.disclaimer-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.disclaimer-text {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.7;
}

.schedule-item {
    padding: 16px;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    gap: 16px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    color: var(--primary);
    font-weight: 700;
    min-width: 45px;
}

.schedule-desc {
    font-size: 14px;
    color: var(--text-main);
}

@media (max-width: 480px) {
    .app-container {
        border-radius: 0;
    }
}
