@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.moving-border-bw {
    position: relative;
    --tw-bg-opacity: 1;
    --cc-border-radius: 0;
    border-radius: calc(var(--cc-border-radius) + 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.moving-border-bw::before,
.moving-border-bw::after {
    content: "";
    position: absolute;
    inset: -0.2rem;
    z-index: -1;
    background: linear-gradient(var(--angle), #FFFFFF, #FFFFFF, #FFFFFF);
    animation: rotate_border 5s linear infinite;
    border-radius: 1%;
}

.moving-border-bw::after {
    filter: blur(10px);
}

.moving-border-1 {
    position: relative;
    --tw-bg-opacity: 1;
    --cc-border-radius: 0;
    background-color: oklch(var(--black-300)/var(--tw-bg-opacity));
    border-radius: calc(var(--cc-border-radius) + 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.moving-border-1::before,
.moving-border-1::after {
    content: "";
    position: absolute;
    inset: -0.2rem;
    z-index: -1;
    background: linear-gradient(var(--angle), white, #fc5391, #ff2976);
    animation: rotate_border 5s linear infinite;
    border-radius: 1%;
}

.moving-border-1::after {
    filter: blur(10px);
}



.moving-border-10 {
    position: relative;
    --tw-bg-opacity: 1;
    --cc-border-radius: 0;
    background-color: oklch(var(--black-300)/var(--tw-bg-opacity));
    border-radius: calc(var(--cc-border-radius) + 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.moving-border-10::before,
.moving-border-10::after {
    content: "";
    position: absolute;
    inset: -0.2rem;
    z-index: -1;
    background: linear-gradient(var(--angle), white, #51bbf9, #29b2ff);
    animation: rotate_border 5s linear infinite;
    border-radius: 1%;
}

.moving-border-10::after {
    filter: blur(10px);
}



.moving-border-20 {
    position: relative;
    --tw-bg-opacity: 1;
    --cc-border-radius: 0;
    background-color: oklch(var(--black-300)/var(--tw-bg-opacity));
    border-radius: calc(var(--cc-border-radius) + 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.moving-border-20::before,
.moving-border-20::after {
    content: "";
    position: absolute;
    inset: -0.2rem;
    z-index: -1;
    background: linear-gradient(var(--angle), white, #f9a353, #ff9029);
    animation: rotate_border 5s linear infinite;
    border-radius: 1%;
}

.moving-border-20::after {
    filter: blur(10px);
}


@keyframes rotate_border {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}


#globeContainer {
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 100%;
}

#cc-loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.image-bg-blur-1,
.image-bg-blur-2 {
    position: fixed;
    overflow: hidden;
    top: -1%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.image-bg-blur-1 picture img {
    opacity: .12;
    width: 900px;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: blur(10px);
}

.image-bg-blur-2 picture img {
    height: auto;
    object-fit: cover;
    right: 0;
    opacity: .5;
    top: -2px;
    position: absolute;
    left: auto;
    filter: blur(10px);
}

.throughline {
    text-decoration: line-through;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

.custom-image-section {
    cursor: pointer;
}

.chartdiv {
    width: 100vw;
    /* Adjust as necessary */
    height: 100vh;
    /* Adjust as necessary */
    max-width: 100%;
}

.chartdiv-md {
    width: auto;
    /* Adjust as necessary */
    height: 150px;
    /* Adjust as necessary */
}

.chartdiv-lg {
    width: auto;
    /* Adjust as necessary */
    height: 200px;
    /* Adjust as necessary */
}

.chartdiv-xlg {
    width: auto;
    /* Adjust as necessary */
    height: 80vh;
    /* Adjust as necessary */
}

.chartdiv-full {
    width: auto;
    /* Adjust as necessary */
    height: 100vh;
    /* Adjust as necessary */
}

[data-toggle-view]:not(.block) {
    display: none;
}

.editor_toolbar {
    background: #f3f3f3;
    border: 1px solid #ccc;
}

.editor_toolbar .ql-formats {
    margin-right: 15px;
}

.editor_toolbar button {
    background: none;
    border: none;
    cursor: pointer;
}

.editor_toolbar button.ql-active,
.editor_toolbar button:hover {
    background-color: #eaeaea;
}

.ql-editor {
    color: white;
    /* Set text color to white */
}

.editor {
    height: 300px;
    /* Adjust the height as needed */
}

.d3_link {
    stroke: #ddd;
    stroke-width: 3;
}

.d3_node {
    stroke: #ddd;
    stroke-width: 1.5px;
    text-shadow: -1px -1px 0 var(--cc-primary-400), 1px -1px 0 var(--cc-primary-400), -1px 1px 0 var(--cc-primary-400), 1px 1px 0 var(--cc-primary-400);
}


.d3_icon {
    width: 40px;
    height: 40px;
    position: absolute;
}

.d3_label {
    text-anchor: middle;
    font-size: 16px;
    dy: 3em;
}

.zoom {
    pointer-events: all;
}

#tooltip,
.tooltip {
    cursor: pointer;
    position: absolute;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white background */
    border: 1px solid #ccc;
    /* Soft gray border */
    padding: 8px 12px;
    /* Comfortable padding */
    border-radius: 6px;
    /* Smooth, rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Gentle shadow for depth */
    font-family: 'Inconsolata';
    font-style: normal;
    font-size: 14px;
    /* Readable font size */
    color: black;
    /* Dark text for readability */
    pointer-events: none;
    /* Tooltip shouldn't interfere with other interactions */
    z-index: 9999;
    /* High z-index to ensure it's on top */
    transition: opacity 0.2s ease-in-out, top 0.1s, left 0.1s;
    word-wrap: break-word;
}


.sandboxed_window {
    display: none;
    background-color: var(--cc-primary-200);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--cc-primary-200);
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.screen {
    width: 70vw;
    height: 80vh;
    background-color: var(--cc-black-400);
    font-size: 24px;
    border-radius: 0rem 0rem 0.5rem 0.5rem;
}

.screen_bar {
    width: 70vw;
    border-radius: 0.3rem 0.3rem 0rem 0rem;
}

#backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: none;
}

.pennant {
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.modal-body {
    color: white;
}

.modal-content {
    background-color: transparent;
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid white;
}

.modal-header {
    background: linear-gradient(45deg, rgba(0, 71, 255, 0.5), rgba(255, 0, 0, 0.5));
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-close {
    filter: invert(1);
    cursor: pointer;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, rgba(0, 71, 255, 0.45) 0%, rgba(255, 0, 0, 0.20) 100%);
    position: relative;
    margin-left: 1rem;
    margin-top: 1rem;
    width: 80%;
    max-width: 400px;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}


@font-face {
    font-family: 'Mjolnir';
    src: url('/assets/fonts/Mjolnir/Mjolnir.ttf') format('truetype');
}

@font-face {
    font-family: 'im-fell-english-sc';
    src: url('/assets/fonts/im-fell-english-sc/IMFeENsc28P.ttf') format('truetype');
}

.viking-li {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.viking-li>* {
    position: relative;
    z-index: 1;
}


.season-title,
.season-label {
    font-family: 'Mjolnir', serif;
    color: white;
}

.season-mission-brief,
.season-mission-title {
    font-family: 'im-fell-english-sc', serif;
}

.season-title,
.season-mission-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1.7rem;
    font-weight: bolder;
    color: white;
}

.season-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.season-mission-brief {
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    font-weight: bold;
}

.mission-text-base {
    font-family: 'im-fell-english-sc', serif !important;
    font-size: 1rem;
    line-height: 1.5rem;
}

.mission-form-additional * {
    font-family: 'im-fell-english-sc', serif !important;
}


.mission-text-xs {
    font-family: 'im-fell-english-sc', serif !important;
    font-size: 0.75rem;
    line-height: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 2px rgba(0, 0, 0, 0.9),
        1px -1px 2px rgba(0, 0, 0, 0.9), -1px 1px 2px rgba(0, 0, 0, 0.9),
        0px 0px 5px rgba(0, 0, 0, 0.6);
}

.mission-text-sm {
    font-family: 'im-fell-english-sc', serif !important;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 2px rgba(0, 0, 0, 0.9),
        1px -1px 2px rgba(0, 0, 0, 0.9), -1px 1px 2px rgba(0, 0, 0, 0.9),
        0px 0px 5px rgba(0, 0, 0, 0.6);
}

.mission-input {
    font-family: 'Inconsolata', serif !important;
    width: 90%;
    backdrop-filter: blur(5px);
    background: transparent;
    font-weight: 300;
    outline-style: solid;
    outline-width: 0;
    border-color: #faf0e6;
    border-style: solid;
    border-width: 1px;
    color: #faf0e6;
    border-radius: .375rem;
    letter-spacing: .025em;
    padding: .52rem .55rem;
}

.mission-input:focus {
    outline-width: 0;
    border-color: #faf0e6;
    border-width: 1px;
}

.mission-input:disabled {
    cursor: not-allowed;
    background-color: transparent;
    border-width: 1;
}

.mission-input:focus:hover {
    --tw-scale-x: 100.4%;
    --tw-scale-y: 100.4%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.mission-input::-moz-placeholder,
.mission-textarea::-moz-placeholder {
    color: #faf0e6;
    opacity: 1
}

.mission-input::placeholder,
.mission-textarea::placeholder {
    color: #faf0e6;
    opacity: 1
}

.season-main-card,
.season-mission-card {
    position: relative;
    background: linear-gradient(45deg, #390061, #AF0B27);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    border-radius: 1.25rem;
    z-index: 1;
}

.season-mission-card {
    padding: 0.3rem 0.5rem 0rem 0.5rem;
}

.season-banner {
    position: relative;
    mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-composite: destination-in;
    transition: 0.3s ease;
}

.season-countdown-card {
    backdrop-filter: blur(10px);
    opacity: 0.8;
    background: linear-gradient(45deg, #390061, #AF0B27);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    border-radius: 1.25rem;
}

.season-rank-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 60px 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.season-rank-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 10px;
    width: 100%;
    background: #333;
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 1;
}

.season-rank-progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 10px;
    background: linear-gradient(to right, #cd7f32, #B9F2FF);
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.5s ease-in-out, background 0.5s ease-in-out;
}

.season-rank {
    position: absolute;
    z-index: 3;
    text-align: center;
    transition: transform 0.3s ease;
}

.season-rank img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s;
    scale: 1.3;
}

.season-rank span {
    display: block;
    font-size: 1rem;
    font-weight: bold;
}

.season-rank.current img {
    animation: glow 1.5s infinite alternate, season-bounce 1s ease-in-out;
    transform: scale(1.1);
}

.season-rank:hover img {
    transform: scale(1.2);
}

/* Specific glow for each season-rank */
.season-rank.Bronze.current img {
    animation: glow-bronze 1.5s infinite alternate;
}

.season-rank.Silver.current img {
    animation: glow-silver 1.5s infinite alternate;
}

.season-rank.Gold.current img {
    animation: glow-gold 1.5s infinite alternate;
}

.season-rank.Platinum.current img {
    animation: glow-platinum 1.5s infinite alternate;
}

.season-rank.Diamond.current img {
    animation: glow-diamond 1.5s infinite alternate;
}


.season-rank-color-Bronze {
    color: #cd7f32;
}

.season-rank-color-Silver {
    color: #c0c0c0;
}

.season-rank-color-Gold {
    color: #faf0e6;
}

.season-rank-color-Platinum {
    color: #E5E4E2;
}

.season-rank-color-Diamond {
    color: #B9F2FF;
}

@keyframes glow-bronze {
    from {
        filter: drop-shadow(0 0 5px #cd7f32);
    }

    to {
        filter: drop-shadow(0 0 15px #cd7f32);
    }
}

@keyframes glow-silver {
    from {
        filter: drop-shadow(0 0 5px #c0c0c0);
    }

    to {
        filter: drop-shadow(0 0 15px #c0c0c0);
    }
}

@keyframes glow-gold {
    from {
        filter: drop-shadow(0 0 5px #faf0e6);
    }

    to {
        filter: drop-shadow(0 0 15px #faf0e6);
    }
}

@keyframes glow-platinum {
    from {
        filter: drop-shadow(0 0 5px #E5E4E2);
    }

    to {
        filter: drop-shadow(0 0 15px #E5E4E2);
    }
}

@keyframes glow-diamond {
    from {
        filter: drop-shadow(0 0 5px #B9F2FF);
    }

    to {
        filter: drop-shadow(0 0 15px #B9F2FF);
    }
}

@keyframes season-bounce {

    0%,
    100% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.2);
    }
}


.season-sm-card {
    position: relative;
    background: linear-gradient(45deg, #390061, #AF0B27);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    border-radius: 1.25rem;
    z-index: 1;
    width: fit-content;
}

.season-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 9999;

}

.season-popup {
    position: relative;
    background: url('/assets/images/arena_mission_bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    width: 90vw;
    height: 90vh;
    border-radius: 30px;
    /*border: 1px solid #AF0B27;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);*/
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

@keyframes zoomInPopup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.season-overlay.active {
    animation: zoomInPopup 0.3s ease forwards;
    visibility: visible;
}

.season-popup-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 1.5rem;
    width: 7rem;
}

.season-popup-close-btn ui-icon {
    cursor: pointer;
    border: 1px solid #AF0B27;
    border-radius: 99999px;
}

.season-popup-close-btn ui-icon:hover {
    transform: scale(1.1);
}

.season-mission-card-brief,
.season-mission-details,
.season_mission_questions {
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    padding: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.season-mission-card-brief {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.season-mission-card-brief {
    border-radius: 16px 16px 0px 16px !important;
    flex-direction: row !important;
    backdrop-filter: blur(10px);
    background: url('/assets/images/black-felt.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    /*
    backdrop-filter: blur(10px);
    background: url('/assets/images/black-felt.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    */
}

.season-mission-details,
.season_mission_questions {
    margin-top: 1rem !important;
    background: url('/assets/images/arena_mission_details.jpg') no-repeat center center;
    background-size: cover;
    background-position: inherit;
    align-items: center !important;
    justify-content: center !important;
}

.season-mission-card-brief {
    width: 100%;
    /*border: 1px solid #6b2f39;*/
}

.season-mission-details,
.season_mission_questions {
    gap: .25rem;
}

.season-mission-q-a {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 16px 0 0 16px;
    padding: 0.5rem;
    background: url('/assets/images/black-felt.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px);
    transition: filter 0.2s ease-in-out;
    overflow-y: auto;
    max-height: 40vh;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.season-mission-card-brief:hover,
.mission_questions_div:hover {
    border-color: #faf0e6;
    cursor: pointer;
}

.season_mission_questions {
    justify-content: flex-start !important;
    width: 25vw;
    height: fit-content;
    margin-top: 0rem !important;
}

.mission-label-color {
    color: #faf0e6;
}

.mission-q-a-button_primary {
    cursor: pointer !important;
    padding: 0.6rem 1.2rem !important;
    color: #faf0e6 !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, #5f0f2d 0%, #12102a 100%) !important;
    border: 2px solid #2e103c !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    text-shadow: 1px 1px 2px #000 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.mission-q-a-button_primary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6) !important;
}

.mission-q-a-button_primary:disabled {
    cursor: pointer !important;
    padding: 0.6rem 1.2rem !important;
    color: #faf0e6 !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, #2d2a32 0%, #000 100%) !important;
    border: 2px dashed #2e103c !important;
    font-weight: normal !important;
    letter-spacing: 0.8px !important;
    text-shadow: 1px 1px 1px #000 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4) !important;
    font-style: italic !important;
    opacity: 0.5;
}

.mission-q-a-button_secondary {
    cursor: pointer !important;
    padding: 0.6rem 1.2rem !important;
    color: #faf0e6 !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, #2d2a32 0%, #2e103c 100%) !important;
    border: 2px dashed #2e103c !important;
    font-weight: normal !important;
    letter-spacing: 0.8px !important;
    text-shadow: 1px 1px 1px #000 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4) !important;
    font-style: italic !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.mission-q-a-button_secondary:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5) !important;
}

.mission-q-a-button_secondary-disabled {
    cursor: pointer !important;
    padding: 0.6rem 1.2rem !important;
    color: #faf0e6 !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, #2d2a32 0%, #000 100%) !important;
    border: 2px dashed #2e103c !important;
    font-weight: normal !important;
    letter-spacing: 0.8px !important;
    text-shadow: 1px 1px 1px #000 !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4) !important;
    font-style: italic !important;
    opacity: 0.5;
}

.mission_banner {
    aspect-ratio: 1 / 1;
    width: 22vh;
    object-fit: cover;
    border-radius: 4px;
}

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.blurred-effect {
    filter: blur(1px);
    transition: filter 0.2s ease;
}

.mission_q_btn {
    cursor: pointer !important;
    padding: 0.2rem !important;
    color: #faf0e6 !important;
    border-radius: 9999px !important;
    background: linear-gradient(90deg, #5f0f2d 0%, #12102a 100%) !important;
    border: 2px solid #2e103c !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    text-shadow: 1px 1px 2px #000 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.mission_q_btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6) !important;
}

.mission_q_btn_chosed {
    background: linear-gradient(90deg, #2e103c 0%, #faf0e6 100%) !important;
    color: #2d1b00 !important;
    border-color: #faf0e6 !important;
    box-shadow: 0 0 10px 2px #2e103c !important;
}

.map-container {
    position: relative;
    justify-items: center;
    width: 80vw;
    height: 90vh;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-composite: destination-in;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/arena_missions_bg.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    /*filter: blur(3px);*/
    z-index: -1;
}


.quest-tooltip {
    position: absolute;
    display: none;
    color: #faf0e6;
    border: 1px solid #faf0e6;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1000;
    font-size: 14px;
    overflow: hidden;
    background: transparent;
    position: absolute;
}

.quest-tooltip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/black-felt.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    z-index: -1;
    border-radius: 8px;
}

.quest-tooltip .tooltip-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: bold;
}

.terminal {
    bottom: 20px;
    left: 15%;
    padding: 10px;
    width: 540px;
    height: 150px;
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #70278e transparent;
    font-family: 'Inconsolata';
    font-style: normal;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.terminal-title {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 10px;
}

.terminal-line {
    margin: 2px 0;
    line-height: 1.2;
    white-space: pre-wrap;
    animation: map-fadeIn 0.3s;
}

@keyframes map-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.map-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: #390061;
    animation: cursorblink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes cursorblink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.mission-details-type-preview {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    opacity: 0.6;
}

.mission-question-label {
    display: flex;
    flex-direction: row;
    text-align: left;
    font-family: 'im-fell-english-sc', serif !important;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.flip-container,
.favorite-badge {
    border-radius: 50%;
}

.favorite-badge {
    margin: 0;
    box-shadow: 0;
}

.flip-container {
    perspective: 1000;
}

.flip-container,
.favorite-front,
.favorite-back {
    width: 156px;
    height: 156px;
}

.flip-container.flip .favorite-flipper {
    transform: rotateY(180deg);
}

.favorite-flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.favorite-front,
.favorite-back {
    cursor: pointer;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: 0.5px 0.5px 20px 0px #390061,
        -0.5px -0.5px 20px 0px #390061;
}

.favorite-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.favorite-back {
    transform: rotateY(180deg);
    background: none;
}

.favorite-back .favorite-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 30px 10px;
    border-radius: 50%;
    overflow: hidden;
}

.favorite-back .favorite-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    opacity: 0.8;
    z-index: 0;
}

.favorite-back .favorite-content h4,
.favorite-back .favorite-content p {
    position: relative;
    z-index: 1;
    color: white;
    font-style: bold;
    text-shadow: 0 1px 3px black;
    /* Purple glow */
}

.favorite-back .favorite-content h4 {
    margin: 10px 0;
}

.favorite-back .favorite-content p {
    font-size: 12px;
    margin: 0 auto;
    max-width: 80%;
}

.glow-box {
    background-color: oklch(35.24% 0.185 281.25 /.4);
    border: 1px solid transparent;
    box-shadow: 0 0 15px 5px oklch(35.24% 0.185 281.25 /.4);
    color: #faf0e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px 2px oklch(35.24% 0.185 281.25 /.4);
    }

    50% {
        box-shadow: 0 0 20px 10px oklch(35.24% 0.185 281.25 /.4);
    }

    100% {
        box-shadow: 0 0 10px 2px oklch(35.24% 0.185 281.25 /.4);
    }
}

.glow-box {
    animation: pulse 2s infinite;
}

.custom_wzc_btn {
    background-color: #1a0033;
    color: #f0f0ff;
    padding: 12px;
    border: 2px solid #9900ff;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(153, 0, 255, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}

.custom_wzc_btn:hover {
    background-color: #2b0057;
    box-shadow: 0 0 20px rgba(153, 0, 255, 0.7),
        0 0 40px rgba(153, 0, 255, 0.4);
    text-shadow: 0 0 5px #f0f0ff, 0 0 10px #bf00ff;
    transform: translateY(-2px);
}

.custom_wzc_btn:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 0, 255, 0.4), transparent);
    animation: glitch-sweep 1.5s infinite;
}

.custom_wzc_btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 25px rgba(153, 0, 255, 0.9),
        inset 0 0 15px rgba(153, 0, 255, 0.5);
    text-shadow: 0 0 15px #f0f0ff;
    background-color: #3c0078;
}

@keyframes glitch-sweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    width: 25vw;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    background-color: black;
}

#daily_bonus {
    background: linear-gradient(to right, #43a047, #2e7d32);
    color: white;
    padding: 0.5rem;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.streak-title {
    color: #fff;
    margin-top: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

.streak-info {
    display: flex;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 8px;
}

.progress-container {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #390061, #AF0B27);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.day-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    margin-bottom: 20px;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.day-number {
    font-size: 11px;
    color: #bbb;
    margin-top: 4px;
}

.day-star {
    font-size: 20px;
    color: #ffd700;
}

.empty-star {
    color: #555;
}

.map-container {
    width: 90%;
    height: 80vh;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: -1rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
    background: rgba(250, 250, 250, 0.95);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--border-color, transparent);
    animation: rotate-border 15s linear infinite;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.map-node:hover {
    transform: scale(1.1);
}

#snake-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.map-node-label {
    color: #fff;
    white-space: nowrap;
    margin-left: -1rem;
}

.map-node-title {
    color: #fff;
    white-space: nowrap;
    margin-left: -1rem;
    margin-top: 3.1rem;
    position: absolute;
    font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.9), -2px -2px 3px rgba(0, 0, 0, 0.9),
        2px -2px 3px rgba(0, 0, 0, 0.9), -2px 2px 3px rgba(0, 0, 0, 0.9),
        0px 0px 8px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.map-node span {
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
}

@keyframes map-flow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -30;
    }
}

.map-path-flow {
    animation: map-flow 2s linear infinite;
}

.mission_author {
    text-transform: uppercase;
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
    font-weight: bold;
}


.arena_guide_container {
    position: relative;
}

.arena_guide_carousel {
    height: 85vh;
    width: 75vw;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.arena_guide_slides {
    display: flex;
    height: 100%;
    width: 400%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.arena_guide_slide {
    width: 25%;
    height: 100%;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(45deg, #2e1a2e, #3b223b);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

.arena_guide_slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.arena_guide_slide::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.arena_guide_slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.arena_guide_slide-content>p {
    margin-bottom: 1.5rem;
}

.arena_guide_controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.arena_guide_dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.arena_guide_dot.active {
    background: #AF0B27;
    transform: scale(1.2);
}

.arena_guide_nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(58, 63, 68, 0.7);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

.arena_guide_nav-btn:hover {
    background: #AF0B27;
}

.arena_guide_prev {
    left: 1rem;
}

.arena_guide_next {
    right: 1rem;
}

/* Slide 1 - Seasons */
.arena_guide_seasons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1rem;
}

.arena_guide_season {
    background: rgba(20, 20, 25, 0.8);
    padding: 0.8rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    flex: 1;
}

.arena_guide_season:hover {
    transform: translateY(-10px);
    box-shadow: 0 1px 10px beige;
}

.arena_guide_season-emoji {
    font-size: 2rem;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.arena_guide_season h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #AF0B27;
    vertical-align: middle;
    text-transform: uppercase;
}

.arena_guide_season p {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Slide 2 - Missions */
.arena_guide_mission-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #AF0B27;
}

.arena_guide_mission-steps {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}


.arena_guide_mission-step {
    background: rgba(58, 63, 68, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #AF0B27;
}

.arena_guide_mission-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #AF0B27;
}

.arena_guide_mission-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Slide 3 - Ranks */
.arena_guide_ranks-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1rem;
}

.arena_guide_rank {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    flex: 1;
    min-width: 100px;
    max-width: 150px;
}

.arena_guide_rank:hover {
    transform: scale(1.05);
}

.arena_guide_rank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    position: relative;
}

.arena_guide_rank-icon img {
    width: 10vw;
}

.arena_guide_rank h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

/* Slide 4 - Rewards */
.arena_guide_rewards-container {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.arena_guide_reward-item {
    background: rgba(58, 63, 68, 0.3);
    padding: 1.2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.arena_guide_reward-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    color: #ffd700;
}

.arena_guide_reward-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #AF0B27;
}

.arena_guide_reward-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes arena_guide_fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.arena_guide_slide-content * {
    animation: arena_guide_fadeIn 0.8s forwards;
    opacity: 0;
}

.arena_guide_slide-content h1 {
    animation-delay: 0.2s;
}

.arena_guide_slide-content p {
    animation-delay: 0.4s;
}

.arena_guide_seasons-container,
.arena_guide_mission-steps,
.arena_guide_ranks-container,
.arena_guide_rewards-container {
    animation-delay: 0.6s;
}

.arena_guide_h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #AF0B27;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.arena_guide_h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #390061 0.01%, #AF0B27 100.01%);
}

.season-anim {
    position: relative;
    overflow: hidden;
}

.season-anim>* {
    position: relative;
    z-index: 1;
}

.summer-anim::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/assets/images/arena/fire.gif') no-repeat center bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.spring-anim::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/assets/images/arena/spring.gif') no-repeat center bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.autumn-anim::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/assets/images/arena/autumn.gif') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.winter-anim::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/assets/images/arena/snow.gif') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.gold_position {
    box-shadow: inset 0 0 25px rgba(255, 215, 0, 0.5);
    border-radius: 0rem 0rem 0.625rem 0.625rem;
}

.silver_position {
    box-shadow: inset 0 0 25px rgba(192, 192, 192, 0.5);
    border-radius: 0rem 0rem 0.625rem 0.625rem;
}

.bronze_position {
    box-shadow: inset 0 0 25px rgba(205, 127, 50, 0.5);
    border-radius: 0rem 0rem 0.625rem 0.625rem;
}

.custom-btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #AF0B27, #390061);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.custom-confirm {
    background: linear-gradient(45deg, #AF0B27, #390061);
    color: white;
}

.custom-cancel {
    background-color: #686969;
    color: white;
}


.card-container {
    width: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-color: rgba(7, 7, 17, 0.95);
}

.card-content {
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 25, 0.95) 100%);
    border-radius: 12px;
    z-index: 1;
    overflow: hidden;
}

.content-area {
    position: relative;
    padding: 1rem;
    z-index: 2;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.shield-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' fill='none'%3E%3Cpath d='M400 50 L700 200 L700 400 C700 500 400 550 400 550 C400 550 100 500 100 400 L100 200 Z' stroke='rgba(255,255,255,0.03)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.left-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(175, 11, 39, 0.08) 0%, transparent 100%);
    z-index: 1;
}

.right-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 50, 200, 0.08) 0%, transparent 100%);
    z-index: 1;
}

.diagonal-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.left-split {
    position: absolute;
    top: 0;
    left: -5%;
    width: 10%;
    height: 100%;
    background-color: rgba(175, 11, 39, 0.12);
    transform: skewX(-15deg);
}

.right-split {
    position: absolute;
    top: 0;
    right: -5%;
    width: 10%;
    height: 100%;
    background-color: rgba(0, 50, 200, 0.12);
    transform: skewX(-15deg);
}

.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(175, 11, 39, 0.4);
    border-left: 2px solid rgba(175, 11, 39, 0.4);
    border-top-left-radius: 10px;
}

.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid rgba(0, 50, 200, 0.4);
    border-right: 2px solid rgba(0, 50, 200, 0.4);
    border-top-right-radius: 10px;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid rgba(175, 11, 39, 0.4);
    border-left: 2px solid rgba(175, 11, 39, 0.4);
    border-bottom-left-radius: 10px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(0, 50, 200, 0.4);
    border-right: 2px solid rgba(0, 50, 200, 0.4);
    border-bottom-right-radius: 10px;
}


.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, rgba(20, 20, 30, 0.3), rgba(20, 20, 30, 0.3) 10px, rgba(15, 15, 25, 0.3) 10px, rgba(15, 15, 25, 0.3) 20px);
    opacity: 0.4;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    width: 120%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(30, 30, 50, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.subtle-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.progress-step.completed {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
}

.progress-step.pending {
    background: #2d2d42;
}

.quick-access-card {
    transition: all 0.3s ease;
    border-radius: 20px 5px 20px 5px;
    color: beige;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
}


.q-a-c-challenges {
    position: relative;
    border: 1px solid oklch(100% 0.265 301.924);
    overflow: hidden;
}

.q-a-c-challenges::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/custom_req.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.q-a-c-challenges::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.q-a-c-arena {
    position: relative;
    border: 1px solid oklch(100% 0.243 264.376);
    overflow: hidden;
}

.q-a-c-arena::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/arena_lookup.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.q-a-c-arena::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.q-a-c-events {
    position: relative;
    border: 1px solid oklch(100% 0.213 27.518);
    overflow: hidden;
}

.q-a-c-events::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/regional_events.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.q-a-c-events::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.q-a-c-career_dev {
    position: relative;
    border: 1px solid oklch(100% 0.243 264.376);
    overflow: hidden;
}

.q-a-c-career_dev::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/images/industries/pro_services.png) no-repeat center center;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.q-a-c-career_dev::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.q-a-c-challenges:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 10px oklch(100% 0.265 301.924);
}

.q-a-c-arena:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 10px oklch(100% 0.243 264.376);
}

.q-a-c-events:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 10px oklch(100% 0.213 27.518);
}

.q-a-c-career_dev:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0 10px oklch(100% 0.265 301.924);
}

.stat-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #16213e 100%);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #390061 0%, #AF0B27 100%);
}


.step-container {
    position: relative;
    z-index: 50;
}

.step-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #390061;
    background-color: #0a0a0a;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.step-link:hover {
    background: linear-gradient(45deg, #390061, #AF0B27);
    backdrop-filter: blur(10px);
}

.icon-container {
    margin-right: 12px;
}

.step-content-wrapper {
    flex-grow: 1;
}

.arrow-icon {
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
}

.expanded .arrow-icon {
    transform: rotate(180deg);
}

.step-dropdown-content {
    font-size: 0.75rem;
    background-color: #0a0a0a;
    border-radius: 0 0 8px 8px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: -4px;
}


.expanded .step-dropdown-content {
    padding: 0.8rem;
    max-height: 500px;
    border-top: 1px solid #390061;
}

.expanded .step-link {
    border-radius: 8px 8px 0 0;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0.2rem;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.09s;
    font-weight: bold;
    cursor: pointer;
    z-index: 0;
    gap: 0.2rem;
    box-shadow: 0 0px 7px -5px rgba(0, 0, 0, 0.5);
}

.header-button:hover {
    background: rgb(193, 228, 248);
    color: rgb(33, 0, 85);
}

.header-button:active {
    transform: scale(0.97);
}

.header-hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.header-hoverEffect div {
    background: linear-gradient(90deg,
            rgba(222, 0, 75, 1) 0%,
            rgba(191, 70, 255, 1) 49%,
            rgba(0, 212, 255, 1) 100%);
    border-radius: 40rem;
    width: 10rem;
    height: 10rem;
    transition: 0.9s;
    filter: blur(30px);
    animation: headereffect infinite 3s linear;
    opacity: 0.4;
}

@keyframes headereffect {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.badge-img {
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 99999px;
}

.badge-main-layer {
    display: inline-block;
    position: relative;
    border-radius: 99999px;
    padding: 0;
}

.badge-sub-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    opacity: 0.3;
    filter: blur(20px);
    border-radius: 99999px;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.participant_card {
    width: 230px;
    border-radius: 20px;
    background: rgb(10, 10, 10);
    padding: 5px;
    overflow: hidden;
    box-shadow:
        0 10px 15px rgba(0, 0, 0, 0.1),
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 -2px 4px rgba(255, 248, 240, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.participant_card:hover {
    transform: scale(1.05);
}

.participant_card .participant_top-section {
    height: 23vh;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    background: linear-gradient(45deg, rgb(57, 0, 97), rgb(175, 11, 39));
    position: relative;
}

.participant_card .participant_top-section .participant_border {
    border-bottom-right-radius: 10px;
    height: 30px;
    width: 130px;
    background: white;
    background: rgb(10, 10, 10);
    position: relative;
    transform: skew(-40deg);
    box-shadow: -10px -10px 0 0 rgb(10, 10, 10);
}

.participant_card .participant_top-section .participant_border::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    right: -15px;
    background: rgba(255, 255, 255, 0);
    border-top-left-radius: 10px;
    box-shadow: -5px -5px 0 2px rgb(10, 10, 10);
}

.participant_card .participant_top-section::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0);
    height: 15px;
    width: 15px;
    border-top-left-radius: 15px;
    box-shadow: -5px -5px 0 2px rgb(10, 10, 10);
}

.participant_card .participant_top-section .participant_icons {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.participant_card .participant_top-section .participant_icons .participant_logo {
    height: 100%;
    aspect-ratio: 1;
    padding: 7px 0 7px 15px;
    display: flex;
    flex-direction: row;
    gap: .25rem;
}

.participant_card .participant_top-section .participant_icons .participant_logo .participant_top-section {
    height: 100%;
}

.participant_card .participant_top-section .participant_banner {
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    position: absolute;
    bottom: 0;
    top: 18%;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    object-fit: cover;
    height: 85%;
    width: 100%;
}

.participant_card .participant_top-section .participant_icons .participant_social-media {
    height: 100%;
    padding: 8px 15px;
    display: flex;
    gap: 7px;
}

.participant_card .participant_top-section .participant_icons .participant_social-media .participant_svg {
    height: 100%;
    fill: rgb(10, 10, 10);
}

.participant_card .participant_top-section .participant_icons .participant_social-media .participant_svg:hover {
    fill: white;
}

.participant_card .participant_bottom-section {
    margin-top: 0.2rem;
}

.participant_card .participant_bottom-section .participant_title {
    display: block;
    color: white;
    text-align: center;
    margin-bottom: 0.1rem;
}

.participant_card .participant_bottom-section .participant_row {
    display: flex;
    justify-content: space-between;
}

.participant_card .participant_bottom-section .participant_row .participant_item {
    flex: 30%;
    text-align: center;
    justify-items: center;
    padding: 0.2rem;
    color: beige;
}

.participant_card .participant_bottom-section .participant_row .participant_item .participant_big-text {
    font-size: 12px;
    display: block;
}

.participant_card .participant_bottom-section .participant_row .participant_item .participant_regular-text {
    font-size: 0.55rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
}

.participant_card .participant_bottom-section .participant_row .participant_item:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.126);
    border-right: 1px solid rgba(255, 255, 255, 0.126);
}


.sectionindex {
    background-color: rgb(10, 10, 10);
    color: white;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sectionindex h3 {
    color: beige;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid beige;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.sectionindex ul {
    list-style-type: none;
}

.sectionindex li label {
    gap: 0.2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px 0px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sectionindex li label:hover {
    background-color: #6722BD;
}

.sectionindex li input[type="checkbox"] {
    margin-left: 0.2rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #333;
    background-color: #1a1a1a;
    position: relative;
    vertical-align: middle;
    box-sizing: border-box;
    display: inline-block;
    flex-shrink: 0;
}

.sectionindex li input[type="checkbox"]:checked {
    background-color: #333;
    border-color: #444;
}

.sectionindex li input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 3px;
    height: 7px;
    border: solid #c0c0c0;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sectionindex li input[type="checkbox"]:hover {
    border-color: #555;
}

.sectionindex li input[type="checkbox"]:focus {
    outline: none;
    border-color: #666;
}

.section-container {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sectionsection {
    display: none;
    padding: 15px;
    border-radius: 8px;
}

.sectionsection.active {
    display: block;
    animation: sectionfadeIn 0.5s;
}

.sectionsection h2 {
    color: white;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid beige;
}

@keyframes sectionfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.toggle-container {
    position: relative;
    width: 200px;
}

.toggle-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: beige;
    text-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
}

.cyber-select {
    width: 100%;
    padding: 10px 15px;
    background-color: #120b20;
    border: 2px solid #8a2be2;
    border-radius: 5px;
    color: beige;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.cyber-select:hover {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.cyber-select:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 38px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #8a2be2;
    pointer-events: none;
}

.premium-profile {
    position: absolute;
    top: 8vh;
    right: 1vw;
    height: fit-content;
    width: 37vw;
}

.premium_profile_rank {
    font-size: 2.5rem;
    font-weight: bolder;
    line-height: 2.2rem;
}

.ol-custom {
    list-style: auto !important;
    margin: auto !important;
    padding: revert !important;
}

.cropperModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.cropperpopup {
    position: relative;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    font-weight: 500;
}

.closecropperpopup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    color: black;
}

.reward-grid {
    display: grid;
    grid-template-columns: 100px repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}


.tickets_div{
    height: 80vh;
    overflow-y: auto;
}