@import url('https://cdn-uicons.flaticon.com/2.4.2/uicons-brands/css/uicons-brands.css');
@import url('https://cdn-uicons.flaticon.com/2.4.2/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.4.2/uicons-bold-rounded/css/uicons-bold-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-brands/css/uicons-brands.css');

/* @media (max-width: 920px) {
    .burger-menu  {
        display: flex !important;
    }

    .nav-buttons {
        display: none !important;
    }
}

@media (min-width: 921px) {
    .burger-menu-screen {
        scale: 1.1 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
} */

::-webkit-scrollbar {
    width: 5px;
}
   
::-webkit-scrollbar-track {
    background-color: #111111;
}
   
::-webkit-scrollbar-thumb {
    background-color: #20276c;
    border-radius: 10px;
}

#preloader {
    height: 100svh;
    width: 100svw;
    position: fixed;
    top: 0%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #384CFF;
    z-index: 99999999999999999;
    transition: 0.5s;
}

#burgerMenu {
    height: 100svh;
    width: 100svw;
    position: fixed;
    top: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #384cff62;
    backdrop-filter: blur(30px);
    z-index: 99999998;
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
    gap: 20px;
    scale: 1.1;
}

.burger-nav-option {
    padding: 20px 10px;
    background-color: #ffffff11;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #ffffff00;
    user-select: none;
    text-decoration: none !important;
}

.burger-nav-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.burger-nav-option:hover {
    scale: 1.05;
    border: 1px solid #ffffff55;
    transition: 0.2s;
    width: 55%;
}

.burger-nav-option:active {
    transition: 0s;
    scale: 1;
    opacity: 0.9;
}

.buy-conf {
    height: 100svh;
    width: 100svw;
    position: fixed;
    top: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #000000a6;
    backdrop-filter: blur(25px);
    z-index: 9999999;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    gap: 20px;
    scale: 1.1;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.buy-conf.active {
    opacity: 1; /* Full opacity */
    pointer-events: auto; /* Enable pointer events */
    scale: 1;
}

.buy-conf-dialogue {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ffffff55;
    background-color: #0000004b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
}

.buy-conf-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.buy-conf-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.buy-conf-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.buy-conf-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 50px;
    background-color: #fff;
    color: #000;
    border-radius: 15px;
    outline: none;
    border: 5px solid #fff;
    cursor: pointer;
    transition: 0.2s;
}

.buy-conf-button:not(.buy-conf-button-disabled):hover {
    scale: 1.05;
    transition: 0.2s;
}

.buy-conf-button:not(.buy-conf-button-disabled):active {
    scale: 1.025;
    opacity: 0.9;
    transition: 0s;
}
.item-currency-buy-conf {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -5px;
}

.preloader-icon {
    animation: preloader 3s ease-in-out infinite;
    position: absolute;
}

.tutorial-link {
    color: #ffd341;
    margin-top: 20px;
    background-color: #ffd34117;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
    border: 1px solid #ffd34100;
}

.tutorial-link:hover {
    scale: 1.05;
    transition: 0.2s;
    border: 1px solid #ffd34155;
}

.tutorial-link:active {
    scale: 1;
    transition: 0s;
    opacity: 0.7;
}

.warning-desc {
    background-color: #ffd34117;
    border: 1px solid #ffd34155;
    border-radius: 15px;
    width: 50%;
    padding: 20px;
    color: #ffd341 !important;
    margin-top: 50px;
    box-shadow: 0px 0px 70px 1px #ffd34122;
}

.warning-text {
    color: #ffd341 !important;
    display: flex;
    align-items: center;
    gap: 20px;
    /* font-weight: bold; */
}

.warning-icon {
    font-size: 20px;
}

.section-desc-warning {
    padding: 0px !important;
}

#preloader span {
    color: #fff;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    transform: translateY(70px);
}

@keyframes preloader {
    0% {scale: 1;}
    50% {scale: 1.1;}
    100% {scale: 1}
}

body {
    background-color: #111111;
    margin: 0px;
    overflow-x: hidden; /* This hides any horizontal overflow */
}

nav {
    width: 100svw;
    height: 5rem;
    background-color: #384cff62;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", sans-serif;
    border-bottom: 1px solid #384CFF;
    position: fixed;
    top: 0%;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    z-index: 99999999;
}

.nav-inner {
    max-width: 90svw;
    min-width: 70svw;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #fff;
    text-transform: capitalize;
    cursor: pointer;
    user-select: none;
}

.burger-menu {
    display: flex;
    color: #fff;
    height: 40px;
    width: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.2s;
    cursor: pointer;
    position: relative;
}

.burger-menu i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.burger-icon {
    opacity: 1;
    scale: 1;
    transition: 0.2s;
}

.cross-icon {
    opacity: 0;
    scale: 0;
    transition: 0.2s;
}

.burger-menu-icons {
    transition: 0.2s;
}

.burger-menu:hover {
    background-color: #ffffff22;
    scale: 1.1;
    transition: 0.2s;
}

.burger-menu:active {
    transition: 0s;
    scale: 1;
    opacity: 0.7;
}

.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: 0deg;
    transition: 0.2s;
}

.nav-logo:hover {
    scale: 1.1;
    transition: 0.2s;
}

.button {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}

.button:hover {
    text-decoration: underline;
}

.button:active {
    transition: 0s;
    opacity: 0.9;
}

.discord-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-secondary {
    padding: 5px 10px;
    background-color: #fff;
    color: #20276c;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border: 1px solid #fff;
    transition: 0.2s;
    font-weight: 500;
    text-decoration: none !important;
}

.button-secondary:hover {
    background-color: #ffffff00;
    color: #fff;
    transition: 0.2s;
    rotate: 5deg;
}

.button-secondary:active {
    transition: 0s;
    scale: 0.95;
}

.notification-container {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
    flex-direction: column;
}

.notification {
    background-color: #ffffff11;
    border: 0px solid #ffffff55;
    backdrop-filter: blur(20px);
    color: #fff;
    margin-top: 10px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
    font-family: "Space Grotesk", sans-serif;
    font-weight: bold;
    gap: 10px;
    filter: blur(20px);
    pointer-events: none;
    transform: translateX(400px);
    height: 0px;
    padding: 0px;
}

.notification-fadein {
    filter: blur(0px);
    transition: 0.5s;
    opacity: 1;
    transform: translateX(0px);
    border: 1px solid #ffffff55 !important;
    height: 40px !important;
    padding: 15px !important;
}

.notification-fadeout {
    filter: blur(20px);
    transition: 0.5s cubic-bezier(.7,-0.63,.24,.99);
    opacity: 0;
    transform: translateX(400px);
    height: 0px;
}

.notification img {
    width: 50px !important;
    height: 50px !important;
    padding: 0px;
}

.notification .message {
    flex-grow: 1;
    margin-right: 10px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar-inner {
    height: 100%;
    background-color: #4caf50;
    width: 100%;
    transition: width linear;
}


.nav-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-weight: 500;
    color: #fff;
    user-select: none;
}

.nav-title-text-main {
    font-weight: bold;
}

.nav-title-text {
    color: #fff;
    text-decoration: none !important;
}

.nav-title-text:hover {
    text-decoration: underline !important;
}

.nav-title-dir {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
}

.sub-dir {
    opacity: 0.5;
    font-weight: 400;
}

.sub-dir:before {
    content: '/';
}

section {
    margin-top: 5rem;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.section-main {
    max-width: 90svw;
    min-width: 70svw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

#loginWarning {
    height: calc(100svh - 81px - 69px);
}

.section-title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 70px;
}

.section-title-wrapper-faq {
    display: flex
;
    justify-content: flex-start;
    /* align-items: center; */
    /* flex-direction: column; */
    gap: 10px;
    margin-top: 70px;
}

.section-title {
    font-weight: bold;
    font-size: 36px;
}

.section-desc {
    color: #ffffff55;
    padding: 0px 40px;
}

.desc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#countdown {
    color: #ffffff55;
    font-weight: bold;
}

canvas {
    display: block;
}

.shop-items-wrapper {
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.particles-js-canvas-el {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.item-wrapper {
    padding: 15px;
    z-index: 99;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    transition: 0.2s;
    cursor: pointer;
    user-select: none;
    background-color: #1f1f1f;
    width: 300px;
}

.shop-item-disabled {
    opacity: 0.5;
    background-color: #ff38387a !important;
    cursor: not-allowed !important;
}

.item-wrapper-border:not(.shop-item-wrapper-border-disabled):hover {
    scale: 1.05;
    rotate: 2deg;
    transition: 0.2s;
    border: #fff solid 2px;
}

.item-wrapper-border:not(.shop-item-wrapper-border-disabled):hover .shop-item-img {
    rotate: -5deg;
    transition: 0.2s;
}

.item-wrapper-border:not(.shop-item-wrapper-border-disabled):active {
    scale: 1;
    transition: 0s;
    background-color: #fff;
}

.item-wrapper-border {
    z-index: 999;
    padding: 3px;
    border: #ffffff00 solid 2px;
    border-radius: 20px;
    margin: 20px;
    transition: 0.2s;
}

.shop-item-img {
    height: 80px;
    width: 80px;
    transition: 0.2s;
    object-fit: contain;
}

.item-price-wrapper {
    transition: 0.2s;
    position: absolute;
    transform: translateY(55px);
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    color: #000;
    font-weight: bold;
    border: 3px solid #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.legendary {
    position: absolute;
    padding: 5px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border: 3px solid #111111;
    background-color: #fffb00;
    transform: translateY(-55px) translateX(93.85px);
    font-weight: bold;
    gap: 3px;
}

.legendary-alt {
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background-color: #fffb00;
    font-weight: bold;
    gap: 3px;
    padding: 5px;
}

.item-legendary {
    display: flex;
    justify-content: center;
    align-items: center;
}

.legendary-guide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item-info {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
}

.item-name {
    font-weight: bold;
}

.item-usage {
    opacity: 0.5;
    font-size: 15px;
}

.item-currency {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medkit-item {
    background-color: #ff3938;
}

.candy-item {
    background-color: #53208d;
}

.jailbird-item {
    background-color: #1f3980;
}

.log-in-out-button {
    text-decoration: none;
    font-weight: bold;
    color: #fff !important;
}

.log-in-out-button:hover {
    opacity: 0.5;
    text-decoration: underline;
}

.log-in-out-button:active {
    opacity: 0.25;
}

footer {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    background-color: #384CFF !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.site-by {
    position: absolute;
    bottom: 10px;
    opacity: 0.5;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    font-family: "Inter", sans-serif;
}

.site-by a {
    text-decoration: none;
    color: #fff;
}

.balance-wrapper {
    bottom: 0;
    left: 0;
    margin: 15px;
    padding: 10px;
    border-radius: 15px;
    position: fixed;
    background-color: #00000011;
    border: 1px solid #ffffff55;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    gap: 5px;
    z-index: 99999999;
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 10px 1px #00000055;
}

.balance-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}

.logout-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#logoutProfilePicture {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #121212; /* Dark background */
    margin: 0;
    padding: 0;
    color: #e0e0e0; /* Light gray text */
    overflow-x: hidden; /* This hides any horizontal overflow */
}

header {
    background-color: #1a1a1a; /* Slightly lighter dark background */
    color: #fff;
    margin-top: auto;
    padding: 100px;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Add shadow for depth */
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

#faq-boxes {
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}

.welcome-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #1f1f1f; 
    border-radius: 10px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.welcome-section h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 18px;
    color: #cccccc; 
}

#server-stats {
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 15px;
    width: 100%;
    display: flex; 
    flex-wrap: wrap; 
    box-sizing: border-box;
}


.stat-item {
    background-color: #242424; 
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    display: flex;
    flex-direction: row;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding-right: 20px;
    box-sizing: border-box;
    gap: 20px;
    flex: 1 1 calc(50% - 20px);
    overflow: hidden;
}

/* .stat-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
} */

.stat-item strong {
    color: #ffffff;
    font-weight: 600;
}

.stat-item p {
    margin: 10px 0;
    font-size: 14px;
    color: #cccccc;
}

/* Status Indicators */
.status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.status-online {
    background-color: #28a745; /* Green for online */
}

.status-offline {
    background-color: #dc3545; /* Red for offline */
}

.status-full {
    background-color: #ffcc00; /* Yellow for full */
}

.status-near-full {
    background-color: #ff6600; /* Orange for near full */
}

.status-low {
    background-color: #007bff; /* Blue for low players */
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-between;
    display: flex;
    gap: 20px;
    width: 100%;
}

.homepage-big-button {
    flex: 1;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0px 0px 10px 1px #00000000;
    border: 1px solid #ffffff22;
    position: relative;
    overflow: hidden;
}

.homepage-big-button:hover {
    transform: translateY(-5px);
    scale: 1.01;
    box-shadow: 0px 0px 30px 1px #00000055;
    transition: 0.2s;
    z-index: 10;
    background-color: #292929;
}

.homepage-big-button:active {
    scale: 1;
    transition: 0s;
}

.info-section div:last-child {
    margin-right: 0;
}

.info-section h3 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.info-section p {
    color: #cccccc;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    #server-stats {
        grid-template-columns: 1fr;
    }

    .info-section {
        flex-direction: column;
    }

    .info-section div {
        margin-bottom: 20px;
    }

    .info-section div:last-child {
        margin-right: 0;
    }
}

.server-stats-text {
    width: 100%;
}

@media (max-width: 1100px) {
    #server-stats {
        flex-wrap: wrap;
    }

    .server-stats-text {
        align-items: flex-end;
        display: flex;
        flex-direction: column;
    }

    .info-section {
        flex-direction: column;
    }

    .section-homepage {
        width: 80%;
    }

    .section-desc {
        padding: 0px;
        text-align: center;
    }
}

.section-homepage {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-icon {
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-number {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #151515;
    background-color: #fff;
    height: 80px;
    width: 80px;
}

.server-number-players-online {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #151515;
    background-color: #43B581;
    height: 80px;
    width: 80px;
}

.server-number-full {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: bold;
    color: #151515;
    background-color: #F04747;
    height: 80px;
    width: 80px;
}

.big-button-icon {
    color: #fff;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ineractive-indicator {
    position: absolute;
    color: #fff;
    bottom: 10px;
    right: 10px;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: center;
}