.item-rare {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
}

.item-legendary {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
    border: 1px solid #0d6efd;
}

.item-mythical { 
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
}

.item-foretold {
    color: #6f42c1;
    background-color: rgba(111, 66, 193, 0.1);
    border: 1px solid #6f42c1;
}

.item-ancient {
    color: #fd7e14;
    background-color: rgba(253, 126, 20, 0.1);
    border: 1px solid #fd7e14;
}

.item-eternal {
    color: #17a2b8;
    background-color: rgba(23, 162, 184, 0.1);
    border: 1px solid #17a2b8;
}

.item-omniscient {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
}

.item-transcendent {
    color: #6610f2;
    background-color: rgba(102, 16, 242, 0.1);
    border: 1px solid #6610f2;
}

.item-exalted {
    color: #f9d527;
    background-color: rgba(249, 213, 39, 0.1);
    border: 1px solid #f9d527;
}

.item-primordial {
    color: #e83e8c;
    background-color: rgba(232, 62, 140, 0.1);
    border: 1px solid #e83e8c;
}

.item-timeless {
    color: #20c997;
    background-color: rgba(32, 201, 151, 0.1);
    border: 1px solid #20c997;
}

.item-prophetic {
    color: #fd7e14;
    background-color: rgba(253, 126, 20, 0.1);
    border: 1px solid #fd7e14;
}

.item-runic {
    color: #6f42c1;
    background-color: rgba(111, 66, 193, 0.1);
    border: 1px solid #6f42c1;
}

.header-link {
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
}

.landing-header {
    color: inherit;
    text-decoration: none;
    animation: fadeInDown 2s;
}

.header-link:hover {
    text-decoration: underline;
}

.footer-link {
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
}

.form-control {
    background-color: #2C2C2C;
    color: #fffff0;
    border: 1px solid #3A3A3A;
    border-radius: 0.5rem;
    font-size: 1.1rem;
}

h1, h2 {
    color: #47eed4;
    font-family: "Open Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

h3, h4 {
    color: #47eed4;
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

h5, h6 {
    color: #47eed4;
    font-family: "Open Sans", sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

html {
    background-color: transparent;
    color: #fffff0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.65;
    font-size: 1.05rem;
}

body {
    background-color: #1A1D20;
    margin: 5px;
    padding-top: 65px;
    font-size: 1.05rem;
}

.no-top-padding {
    padding-top: 0;
}

.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}

.form-container h1 {
    text-align: center;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.inventory-item {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.celebration {
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.celebration h1 {
    font-size: 3em;
}

.celebration p {
    font-size: 1.5em;
}

.response-code {
    font-family: monospace;
    color: #47eed4;
    padding: 10px;
    border-radius: 5px;
}

.equipped-item {
    border: 1px solid yellow;
}

.inventory-item:hover {
    border: 1px solid blue;
    cursor: pointer;
}

.inventory-item.no-equip:hover {
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.5);
}

footer {
    color: #fffff0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

.table td {
    padding: 10px;
    text-align: left;
    color: #fffff0;
    font-size: 0.975rem;
}

.table th {
    color: #47eed4;
    font-weight: bold;
    font-size: 1.2rem;
}

.table th:first-child {
    border-top-left-radius: 10px;
}

.table th:last-child {
    border-top-right-radius: 10px;
}

.table td:first-child:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table a {
    color: inherit;
    text-decoration: none;
}

.table a:hover {
    text-decoration: underline;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-controls {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    align-items: center;
}

.pagination-controls button {
    margin: 0 5px;
}

.countdown {
    font-size: 5em;
    text-align: center;
    margin-top: 20vh;
    margin-bottom: 20vh;
}

.nav-pills .nav-link {
    color: #fff;
    background-color: #343a40;
    border: 1px solid #495057;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-size: 1.1rem;
}

.nav-pills .nav-link:hover {
    background-color: #495057;
    color: #f8f9fa;
}

.nav-pills .nav-link.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.nav-pills .nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #333;
}

.notfound-container {
    text-align: center;
    margin-top: 20%;
    margin-bottom: 20%;
}
.notfound-container img {
    display: block;
    margin: 0 auto;
}
.notfound-container h1 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 3rem;
}
.notfound-container h2, .notfound-container span {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    display: block;
    margin-top: 20px;
}

.custom-jumbotron {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 0.8rem;
    border-radius: 0.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.custom-jumbotron alerts-container {
    font-size: 1.5rem;
    font-weight: 300;
}

.custom-jumbotron p {
    font-size: 1.25rem;
}

.btn {
    font-size: 1.1rem;
}

.btn:hover {
    transform: scale(1.01);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-border {
    position: relative;
    padding: 15px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #2C2C2C;
    margin: 2.5rem 0;
}

.theme-border::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid #47eed4;
    border-radius: 20px;
    pointer-events: none;
    box-sizing: border-box;
    transition: border-color 4s ease;
}

.theme-border.fade-gold::after {
    border-color: gold;
}

.landing-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.landing-page h1 {
    font-size: 5em;
    margin: 0;
}

.scroll-down {
    position: absolute;
    bottom: 1.75rem;
    font-size: 1.25em;
    cursor: pointer;
    animation: bounce 2s infinite;
    opacity: 0.4;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.landing-page {
    position: relative;
    overflow: hidden;
}

.typing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    white-space: pre;
    font-size: 1.25em;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 30s steps(90, end) infinite;
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.login-form {
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
}

.login-form label {
    color: #47eed4;
}

.stats-container {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #222;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border-radius: 0.5rem;
}

.stats-container .time-remaining {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.75em;
}

.dollar {
    position: absolute;
    font-size: 1em;
    color: rgba(255, 215, 0, 0.5);
    transform: translate(-50%, -50%);
}

.size-capped {
    max-height: 1000px;
    max-width: 1000px;
    width: auto;
    height: auto;
}

.size-min {
    min-height: 200px;
    min-width: 200px;
}

.size-max {
    max-height: 2000px;
    max-width: 2000px;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.975em;
}

.typing-background-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.table-responsive {
    overflow-x: auto;
}

.table-responsive table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.yellow-text {
    color: #fbf039;
}

.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #2C2C2C;
    color: #fff;
    margin-bottom: 1.0rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #47eed4;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
}

.terminal-box p {
    margin-bottom: 15px;
}

.terminal-box h4, .terminal-box h5 {
    margin-bottom: 10px;
}

.social-media-bar {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    opacity: 0.5;
    font-size: 0.9rem;
}

.social-media-bar a {
    margin: 0 15px;
    color: inherit;
    text-decoration: none;
}

.social-media-bar a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    html {
        font-size: 95%;
    }

    img {
        max-width: 95%;
        height: auto;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 90%;
    }

    img {
        max-width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 85%;
    }

    img {
        max-width: 85%;
        height: auto;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 80%;
    }

    img {
        max-width: 80%;
        height: auto;
    }
    
    #timeSliderContainer {
        padding: 8px;
    }
    #timeRangeSlider {
        width: 100%;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 75%;
    }

    img {
        max-width: 75%;
        height: auto;
    }

    #timeSliderContainer {
        padding: 4px;
    }
    #timeRangeSlider {
        width: 100%;
    }
}

.img-thumbnail {
    border: none;
    border-radius: 0.5rem;
    background-color: transparent;
    max-width: 200px;
    max-height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    border-radius: 0.5rem;
}

.no-items-message {
    color: gray;
    font-size: 1.2rem;
    opacity: 0.4;
    display: block;
    width: 100%;
    max-width: none;
    white-space: nowrap;
    overflow: visible;
}

.faded-filler {
    opacity: 0.1;
    display: block;
    background-color: transparent;
    border: none;
}

a {
    color: #47eed4;
    text-decoration: none;
}

p a {
    color: #47eed4;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

div .card-body li a {
    color: #47eed4;
    text-decoration: none;
}

div .card-body li a:hover {
    text-decoration: underline;
}

.hashlist {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hashlist:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.selected-item {
    border: 1px solid red;
}

.hidden {
    display: none;
}

.sell-mode {
    background-color: #3B0713;
    transition: background-color 1.6s ease;
}

.sell-mode .selected-item {
    border: 2px solid gold;
}

input[type="range"].form-range {
    -webkit-appearance: none;
    width: 100%;
    height: 16px;
    border-radius: 8px;
    background: linear-gradient(to right, #28a745 0%, #28a745 2%, #343a40 2%, #343a40 100%);
    outline: none;
    transition: background 0.15s;
}

input[type="range"].form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 16px;
    cursor: pointer;
    background: transparent;
}

input[type="range"].form-range::-webkit-slider-thumb {
    border: 1px solid #000;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
}

input[type="range"].form-range::-moz-range-track {
    width: 100%;
    height: 16px;
    cursor: pointer;
    background: transparent;
}

input[type="range"].form-range::-moz-range-thumb {
    border: 1px solid #000;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.slider-value {
    font-size: 16px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.resources-links {
    list-style-type: disc;
    padding-left: 20px;
}

.resources-links li {
    margin-bottom: 10px;
}

.resources-links a {
    color: #47eed4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.resources-links a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.list-group-item {
    background-color: #2C2C2C;
    border-radius: 8px;
    margin-bottom: 10px;
}

.grid-item {
    background-color: #2C2C2C;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h1 {
    font-size: 2rem;
    color: #47eed4;
}

.section-title p {
    font-size: 1rem;
    color: #fffff0;
}

.text-center {
    text-align: center;
}

.enhanced-list-group .list-group-item {
    background-color: #2C2C2C;
    border: 1.15px solid #3A3A3A;
    border-radius: 0.5rem;
    margin-bottom: 10px;
    padding: 15px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.enhanced-list-group .list-group-item:hover {
    background-color: #3A3A3A;
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #47eed4;
}

.custom-jumbotron .status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.custom-jumbotron .game-status,
.custom-jumbotron .time-remaining {
    font-size: 1.25rem;
    color: #47eed4;
    background-color: #2C2C2C;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

#user-inventory .game-status {
    font-size: 1.25rem;
    color: #F9D527;
    background-color: #2C2C2C;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.hash-item {
    color: #47eed4;
    font-weight: bold;
}

.winner-item {
    color: #F7B210;
    font-weight: bold;
}

.winner-username {
    color: #47eed4;
    font-weight: bold;
}

.level-number {
    font-size: 6em;
}

#progressContainer .card {
    border: 2px solid #3A3A3A;
    border-radius: 0.5rem;
    margin-bottom: 10px;
    padding: 15px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#progressContainer .card:hover {
    background-color: #3A3A3A;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-menu.show li {
    padding: 10px;
}

#progressContainer .card-body h5 {
    font-size: 0.875rem;
}

.analysis-section {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #22262a;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.analysis-section h3 {
    color: #47eed4;
    margin-bottom: 10px;
}

.analysis-section ul {
    list-style-type: none;
    padding-left: 0;
}

.analysis-section ul li {
    padding: 5px 0;
    border-bottom: 1px solid #3A3A3A;
}

.analysis-section ul li:last-child {
    border-bottom: none;
}

.length-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.length-bar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    border: 1px solid #47eed4;
    border-radius: 5px;
    margin-right: 10px;
    resize: none;
    overflow: auto;
}

.length-bar .label {
    font-weight: bold;
    color: #47eed4;
    margin-right: 10px;
}

.length-bar .value {
    color: #fffff0;
}

@keyframes fadeOutline {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 0, 0.8), 0 0 15px rgba(255, 255, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.6), 0 0 25px rgba(255, 255, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 0, 0.8), 0 0 15px rgba(255, 255, 0, 0.6);
    }
}

.logo-glow {
    box-shadow: 0 0 2px rgba(255, 255, 0, 0.8), 0 0 6px rgba(255, 255, 0, 0.6);
    animation: fadeOutline 5s infinite;
    border-radius: 50%;
    padding: 2px;
}

.calendar-table td {
    width: 100px;
    height: 100px;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.calendar-icon {
    width: 45px;
    height: 45px;
    display: block;
    margin: 0 auto;
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip .tooltip-arrow {
    display: none;
}

.tooltip .tooltip-inner {
    background-color: #2C2C2C;
    color: #47eed4;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #47eed4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tooltip.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.custom-accordion .accordion-item {
    background-color: #2C2C2C;
    border: 1px solid #3A3A3A;
    border-radius: 0.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.custom-accordion .accordion-button {
    background-color: #22262a;
    color: #47eed4;
    font-weight: bold;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: background 0.3s, color 0.3s;
    outline: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background-color: #161b22;
    color: #fffff0;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 1rem;
    padding: 1.5rem;
}

.custom-accordion .resources-links a {
    color: #47eed4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, text-decoration 0.3s;
}
.custom-accordion .resources-links a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.custom-accordion .accordion-item + .accordion-item {
    margin-top: 10px;
}

#leaderboardLogGraph {
    box-shadow: 0 4px 16px rgba(71, 238, 212, 0.08);
    border-radius: 0.5rem;
    background-color: #22262a;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#timeSliderContainer {
    background-color: #22262a;
    border-radius: 0.5rem;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(71, 238, 212, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#timeSliderContainer label {
    color: #47eed4;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

#timeRangeSlider {
    -webkit-appearance: none;
    width: 80%;
    height: 16px;
    border-radius: 8px;
    outline: none;
    transition: background 0.15s;
    margin-bottom: 10px;
}

#timeRangeSlider,
input[type="range"].form-range {
    margin-top: 24px;
    margin-bottom: 24px;
    border: 1px solid #3A3A3A;
    width: 100%;
}

#timeRangeSlider::-webkit-slider-thumb {
    border: 1px solid #000;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #47eed4;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
}
#timeRangeSlider::-moz-range-thumb {
    border: 1px solid #000;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #47eed4;
    cursor: pointer;
}

#timeRangeDisplay {
    color: #fffff0;
    font-size: 1.05rem;
    margin-top: 6px;
    font-family: monospace;
    letter-spacing: 1px;
    background: rgba(71, 238, 212, 0.07);
    border-radius: 0.3rem;
    padding: 2px 10px;
    margin-bottom: 20px;
}

#leaderboardType {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.terminal-box {
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 70%, #091a09 100%);
    color: #76ff87;
    font-family: 'JetBrains Mono', 'Fira Mono', monospace;
    font-size: 1.12rem;
    padding: 28px 24px;
    border-radius: 1.3rem;
    margin-bottom: 28px;
    box-shadow: 0 8px 28px 0 rgba(60,255,120,0.06), 0 2px 12px rgba(0,0,0,0.24);
    border: 2px solid #19ff55;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: box-shadow 0.3s, border-color 0.3s;
    animation: terminalFadeIn 0.6s;
}

@keyframes terminalFadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to   { opacity: 1; transform: translateY(0);}
}

input[type="range"].form-range {
    width: 100%;
    height: 1.5em;
    background: #444;
    border-radius: 0.5em;
    outline: none;
    transition: background 0.3s;
}
input[type="range"].form-range::-webkit-slider-thumb {
    background: #ffc107;
    border: 2px solid #222;
}
input[type="range"].form-range::-moz-range-thumb {
    background: #ffc107;
    border: 2px solid #222;
}
input[type="range"].form-range::-ms-thumb {
    background: #ffc107;
    border: 2px solid #222;
}
