@charset "utf-8";
@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Suit';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

html {
    overscroll-behavior: none;
}
body {
    font-family: 'Suit', sans-serif !important;
    overscroll-behavior: none;
}


.material-icons,
.material-icons-round,
.material-symbols-outlined {
    font-family: 'Material Icons' !important;
}

.transition-theme {
    transition: all 0.3s ease-in-out !important;
}

/*━━━━━━━━━ 로딩 오버레이 스타일 (S) ━━━━━━━━━*/
#main-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
#main-loading-spinner {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #0077FE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-bg-overlay {
    background:
        /* 좌상단 블루 포인트 */
            radial-gradient(
                    800px 400px at 20% 20%,
                    rgba(60, 120, 255, 0.4),
                    transparent 70%
            ),

                /* 우하단 블루 포인트 */
            radial-gradient(
                    700px 500px at 80% 80%,
                    rgba(8, 60, 176, 0.6),
                    transparent 75%
            ),

                /* 중앙 은은한 밝기 */
            radial-gradient(
                    ellipse at center,
                    rgba(20, 60, 140, 0.35),
                    rgba(10, 30, 80, 0.6) 40%,
                    rgba(5, 15, 40, 0.9) 70%,
                    rgba(0, 0, 0, 1) 100%
            ),

                /* 전체 톤 보정 */
            linear-gradient(
                    180deg,
                    rgba(0, 39, 157, 0.64) 0%,
                    #022dbb 100%
            );
}

.vision-card-shadow {
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 12px 45px rgba(255, 255, 255, 0.18),
            0 0 120px rgba(255, 255, 255, 0.10);
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    overscroll-behavior: contain;
    overflow-y: scroll;
}

.scroll-container::-webkit-scrollbar-button {
    display:none;
}

.scroll-container::-webkit-scrollbar{
    width: 7px;
}
.scroll-container::-webkit-scrollbar-thumb {
    background-color: #0077FE;
    border-radius: 5px;
}

.card-bg-overlay {
    position: relative;
    border-radius: 16px;
    background:
        /* 좌상단 푸른 포인트 */
            radial-gradient(
                    500px 160px at 10% 30%,
                    rgba(173, 173, 173, 0.55),
                    rgba(40, 90, 255, 0.25) 35%,
                    transparent 50%
            ),

                /* 우하단 딥 블루 포인트 */
            radial-gradient(
                    600px 420px at 90% 90%,
                    rgba(22, 36, 79, 0.64),
                    rgba(20, 110, 255, 0.18) 45%,
                    transparent 75%
            ),

                /* 전체 톤 베이스 */
            linear-gradient(
                    180deg,
                    #030e2d 0%,
                    #020610 100%
            );

    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.important-card-bg-overlay {
    position: relative;
    border-radius: 16px;
    background:
        /* 좌상단 푸른 포인트 */
            radial-gradient(
                    500px 160px at 10% 30%,
                    rgba(173, 173, 173, 0.55),
                    rgba(255, 40, 40, 0.25) 35%,
                    transparent 50%
            ),

                /* 우하단 딥 블루 포인트 */
            radial-gradient(
                    600px 420px at 90% 90%,
                    rgba(79, 8, 27, 0.64),
                    rgba(20, 110, 255, 0.18) 45%,
                    transparent 75%
            ),

                /* 전체 톤 베이스 */
            linear-gradient(
                    180deg,
                    #700505 0%,
                    #020610 100%
            );

    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.aspect-video iframe {
    width: 100% !important;
    height: 100% !important;
}

pre {
    font-weight: lighter;

    img {
        margin: 10px 0 10px 0;
        border-radius: 10px;
    }
}

/*━━━━━━━━━ 팀 현황 text (S) ━━━━━━━━━*/
:root {
    --gold: #ffb338;
    --blue-style : #38cdff;
    --light-shadow: #77571d;
    --dark-shadow: #3e2904;
}

/*━━━━━━━━━ Random Text (E) ━━━━━━━━━*/
.neon_effect p {
    margin-top : 15px;
    margin-bottom : 15px;

    color: #fff;

    text-align: center;

    transition: all 0.4s;
    animation: neon2 1.5s ease-in-out infinite alternate;

}

@keyframes neon2 {
    from {
        text-shadow: 0 0 10px #5d5c5c, 0 0 20px #5d5c5c, 0 0 30px #5d5c5c, 0 0 40px var(--blue-style), 0 0 70px var(--blue-style), 0 0 80px var(--blue-style), 0 0 100px var(--blue-style), 0 0 150px var(--blue-style);
    }
    to {
        text-shadow: 0 0 5px #5d5c5c, 0 0 10px #5d5c5c, 0 0 15px #5d5c5c, 0 0 20px var(--blue-style), 0 0 35px var(--blue-style), 0 0 40px var(--blue-style), 0 0 50px var(--blue-style), 0 0 75px var(--blue-style);
    }
}
/*━━━━━━━━━ Random Text (E) ━━━━━━━━━*/

/*━━━━━━━━━ 라디오 버튼 (S) ━━━━━━━━━*/
.rad-label {
    display: flex;
    align-items: center;

    border-radius: 100px;
    padding: 14px 16px;
    margin: 10px 0;

    cursor: pointer;
    transition: .3s;
}

.rad-label:hover,
.rad-label:focus-within {
    background: hsla(0, 0%, 80%, .14);
}

.rad-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}

.rad-design {
    width: 15px;
    height: 15px;
    border-radius: 100px;

    background: linear-gradient(to right bottom, hsl(154, 97%, 62%), hsl(225, 97%, 62%));
    position: relative;
}

.rad-design::before {
    content: '';

    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;

    background: hsl(0, 0%, 90%);
    transform: scale(1.1);
    transition: .3s;
}

.rad-input:checked+.rad-design::before {
    transform: scale(0);
}

.rad-input:checked~.rad-text {
    color: hsl(0, 0%, 40%);
}
/*━━━━━━━━━ 라디오 버튼 (E) ━━━━━━━━━*/

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}