body {
    margin: 0;
    background: #090b10;
    color: #f2f2f2;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

.m03-main {
    width: min(100%, 1400px);
    min-height: calc(100vh - 170px);
    margin: 0 auto;
    padding: 142px 80px 120px;
    box-sizing: border-box;
}

.magazine-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1), transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.magazine-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.magazine-heading {
    text-align: center;
}

.magazine-shape {
    display: block;
    height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 20px;
}

.m03-main h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.magazine-title-text {
    display: inline-block;
    background: linear-gradient(90deg, #3d4148 0%, #62666e 8%, #8a8d94 18%, #ffffff 34%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.m03-lead {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(15px, 1.25vw, 18px);
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.78;
}

.m03-main h2 {
    margin: 0;
    font-size: clamp(21px, 2.2vw, 32px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
}

.m03-symbol-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.m03-symbol-tabs button {
    min-width: 82px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.68);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.m03-symbol-tabs button:hover,
.m03-symbol-tabs button.active {
    border-color: rgba(234, 76, 56, 0.85);
    background: #ea4c38;
    color: #fff;
}

.m03-chart-section,
.m03-price-section,
.m03-market-section,
.m03-analysis-section {
    margin-top: 24px;
    box-sizing: border-box;
}

.m03-chart-section {
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
    border-radius: 8px;
    overflow: hidden;
}

#lcTradingChart {
    display: block;
    width: 100%;
    height: 560px;
    min-height: 560px;
}

.m03-price-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.m03-price-section h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.m03-price-section > div {
    min-height: 138px;
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 8px;
    box-sizing: border-box;
}

.m03-price-section h3 {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.48);
    letter-spacing: 0.14em;
}

.m03-price-section > div p:first-of-type {
    margin: 0 0 8px;
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.m03-price-section > div p:last-of-type {
    margin: 0;
    font-size: 14px;
    color: #ea4c38;
}

.m03-market-section,
.m03-analysis-section {
    padding: 38px 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.032);
    border-radius: 8px;
}

.m03-market-section ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.m03-market-section li {
    min-height: 96px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    line-height: 1.55;
    box-sizing: border-box;
}

.m03-market-section strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(18px, 1.7vw, 25px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.m03-analysis-section {
    max-width: none;
}

.m03-analysis-section p {
    max-width: 1060px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.9;
}

.m03-analysis-section p + p {
    margin-top: 12px;
}

@keyframes m03FadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .m03-price-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .m03-market-section ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .m03-main {
        padding: 112px 20px 80px;
    }

    .m03-symbol-tabs {
        gap: 8px;
        margin-top: 30px;
    }

    .magazine-shape {
        height: 46px;
        margin-bottom: 14px;
    }

    .m03-main h1 {
        font-size: clamp(32px, 10vw, 46px);
    }

    .m03-symbol-tabs button {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 0;
        height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .m03-chart-section {
        margin-top: 18px;
    }

    #lcTradingChart {
        height: 420px;
        min-height: 420px;
    }

    .m03-price-section,
    .m03-market-section ul {
        grid-template-columns: 1fr;
    }

    .m03-market-section,
    .m03-analysis-section {
        padding: 28px 22px;
    }
}
