 
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #050817;
            color: #f2f5ff;
            font-family: Arial, "Noto Sans KR", sans-serif;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            width: 900px;
            height: 500px;
            top: 5%;
            left: 50%;
            transform: translateX(-50%);
            background: radial-gradient(
                ellipse,
                rgba(65, 160, 255, 0.28) 0%,
                rgba(35, 110, 220, 0.12) 35%,
                rgba(0, 0, 0, 0) 70%
            );
            filter: blur(25px);
            pointer-events: none;
            z-index: -1;
        }

        header {
            width: 100%;
            padding: 28px 7%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
        }

        .logo {
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 3px;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #aeb7ce;
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s;
        }

        nav a:hover {
            color: white;
        }

        .page {
            width: min(1100px, 86%);
            margin: 0 auto;
            padding: 150px 0 100px;
        }

      .back {
    display: inline-block;
    color: #b9c9e8;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 55px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    transition: 0.3s;
}

.back:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    border-color: rgba(100,170,255,0.35);
}

        .page-label {
            font-size: 11px;
            letter-spacing: 5px;
            color: #8490aa;
            margin-bottom: 18px;
        }

        .page-title {
            font-size: clamp(42px, 7vw, 72px);
            font-weight: 300;
            letter-spacing: 7px;
            margin: 0;
        }

        .page-description {
            margin-top: 25px;
            color: #8994ad;
            font-size: 14px;
            line-height: 1.9;
            max-width: 650px;
        }

        .line {
            width: 100%;
            height: 1px;
            background: rgba(255,255,255,0.08);
            margin: 70px 0;
        }

        .category-label {
            text-align: center;
            font-size: 11px;
            letter-spacing: 5px;
            color: #8490aa;
            margin-bottom: 15px;
        }

        .category-title {
            text-align: center;
            font-size: 30px;
            font-weight: 300;
            margin: 0 0 45px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card {
            min-height: 220px;
            padding: 35px;
            border-radius: 20px;
            background: rgba(20, 29, 55, 0.65);
            border: 1px solid rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: 0.35s;
        }
        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(100,170,255,0.35);
            box-shadow: 0 15px 50px rgba(20,100,255,0.12);
        }

        .card-number {
            font-size: 11px;
            color: #71809f;
            letter-spacing: 2px;
        }

        .card h3 {
            font-size: 22px;
            font-weight: 400;
            margin: 20px 0 10px;
        }

        .card p {
            color: #8c97ad;
            font-size: 13px;
            line-height: 1.8;
            margin: 0;
        }

        .card-link {
            margin-top: 25px;
            color: #b9c9e8;
            font-size: 11px;
            letter-spacing: 1px;
        }

        footer {
            text-align: center;
            padding: 80px 20px;
            color: #59637a;
            font-size: 10px;
            letter-spacing: 2px;
        }

        @media (max-width: 700px) {

            header {
                padding: 22px 6%;
            }

            nav {
                display: none;
            }

            .page {
                width: 88%;
                padding-top: 130px;
            }

            .page-title {
                letter-spacing: 4px;
            }

            .cards {
                grid-template-columns: 1fr;
            }
        }
    .archive-final {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
}

    .archive-final {
        width: 100%;
    }

.content-section {
    margin-top: 55px;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 18px;
    letter-spacing: 1px;
}

.content-section p {
    color: #9aa5bc;
    font-size: 14px;
    line-height: 2;
    margin: 0 0 25px;
    max-width: 750px;
}

.section-number {
    font-size: 10px;
    letter-spacing: 3px;
    color: #60708f;
    margin-bottom: 12px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 0 18px;
}

.content-section p {
    color: #9aa5bc;
    font-size: 16px;
    line-height: 2;
    margin: 0;
    max-width: 900px;
}

.content-section strong {
    color: #c4d9ff;
    font-weight: 600;
}

.content-section p {
    margin: 0 0 20px 0;
}	

/* RANKER PROFILE */

.ranker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ranker-card {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(20, 29, 55, 0.65);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: inherit;
    transition: 0.35s;
}

.ranker-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100,170,255,0.35);
    box-shadow: 0 15px 50px rgba(20,100,255,0.12);
}

.ranker-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.ranker-info {
    padding: 20px;
}

.ranker-rank {
    font-size: 10px;
    color: #71809f;
    letter-spacing: 2px;
}

.ranker-info h3 {
    font-size: 19px;
    font-weight: 400;
    margin: 10px 0 6px;
}

.ranker-info p {
    color: #8c97ad;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 700px) {
    .ranker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ranker-info {
        padding: 15px;
    }

    .ranker-info h3 {
        font-size: 16px;
    }
}

.info-link {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 24px;
    color: #b9c9e8;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    transition: 0.3s;
}

.info-link:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    border-color: rgba(100,170,255,0.35);
}

.back-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}