
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Roboto Condensed", Arial, sans-serif !important;
    color: var(--text-color);
    z-index: 1;
}

.background-gradient {
    position: absolute;
    width: 100%;
    max-width: 1920px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1080px;
    background: radial-gradient(at center -10%, rgba(0,0,0,0) 35%, rgba(20,24,20,1) 70%) rgba(20, 24, 20, 0.8);
    top: 0;
    z-index: -1;
}

.social-media {
    width: 20%;
}

.social-media li a i {
    font-size: 20px;
    color: #fff;
}

.social-media li a i {
    padding: 10px 8px;
    background: var(--first-color);
    border-radius: 2px;
    width: 40px;
    height: 40px;
    text-align: center;
}

.social-media li a.twitch i {
    background: #9147FF;
}

.social-media-item.discord i {
    background: #5865F2;
}

.social-media-item.youtube i {
    background: #DC2626;
}

.social-media-item.twitter i {
    background: black;
}

.social-media-item.instagram i {
    background: #ff00a5;
}

.social-media-item.facebook i {
    background: #3146dd;
}

.header-item svg {
    height: 24px;
}

.header-item {
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs);
    background: var(--second-color);
    border-radius: var(--border-radius);
    border: 1px solid #3F3F4640;
    position: relative;
}

.header-item:first-child {
    padding: 0;
}

span.cart-number {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
    color: var(--accent-color);
}


a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}

a:active {
    color: var(--hover-color);
}

li.nav-item a {
    font-family: "Roboto Condensed", Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;
}

li.nav-item a:hover {
    color: var(--hover-color) !important;
}

li.nav-item.active a {
    color: var(--accent-color) !important;
}

li.nav-item a i {
    opacity: 0.4;
}

li.nav-item a {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    align-items: center;
}
 
.panel.panel-default {
    font-weight: 300;
    border-radius: 0;
    background: transparent;
    border: 0 !important;
    margin-bottom: 25px;
}
 
.panel.panel-default .panel-heading {
    background: var(--header-bg);
    color: var(--text-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 15px;
    border: 0;
}

.panel.panel-default .panel-body {
    background: var(--panel-body);
    padding: 15px;
    font-size: 17px;
}

input {
    background: var(--input);
    border-color: var(--border-color) !important;
    border-radius: var(--border-radius) !important;
}

:focus-visible {
    outline: 0;
}

input:focus-visible {
    outline-offset: 0px;
}

.btn:hover {
    background: var(--button);
    filter: contrast(0.8);
    transition: var(--transition);
}

.btn {
    font-weight: 700;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: var(--border-radius);
    background: var(--button);
    border-color: var(--button);
    cursor: pointer;
    transition: var(--transition);
}

.error-msg {
    background: #d75252;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif !important;;
    margin-top: 0;
}

.success-msg {
    background: #52d787;
    margin: var(--spacing-s);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif !important;;
    margin-top: 0;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgb(32, 38, 32);
}

::-webkit-scrollbar-thumb {
    background: rgb(43, 52, 43);
}

::-moz-selection {
    color: rgb(173, 168, 162);
    background: rgb(20, 24, 20);
}

::selection {
    color: rgb(173, 168, 162);
    background: rgb(41, 49, 41);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns */
    grid-gap: 10px; /* Space between boxes */
    margin-top: 20px;
}

.team-box {
    background-size: cover; /* Ensures the background image covers the whole box */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating the image */
    color: #fff; /* White text for contrast */
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 24px; /* Increase font size */
    font-weight: bold; /* Make the font bold for better visibility */
    border-radius: 8px;
    height: 200px; /* Set a fixed height for the boxes */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Ensures text is on top */
    transition: background-color 0.3s ease;
    
    /* Simulate a more pronounced text stroke with multiple text shadows */
    text-shadow: 
        2px 2px 3px rgba(0, 0, 0, 0.7), 
        -2px -2px 3px rgba(0, 0, 0, 0.7), 
        2px -2px 3px rgba(0, 0, 0, 0.7), 
        -2px 2px 3px rgba(0, 0, 0, 0.7); /* Increase stroke thickness */
}

.team-box:hover {
    background-color: rgba(0, 0, 0, 0.4); /* Adds a dark overlay when hovering */
}

.team-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Adds a slight overlay for better text visibility */
    border-radius: 8px;
}

/* Dropdown menu container */
.menu-dropdown {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    border-radius: 8px; /* Smooth rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    color: white; /* Default text color */
    padding: 10px 0; /* Space inside the dropdown */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

/* Links inside the dropdown */
.menu-dropdown .menu-link {
    color: white; /* Text color */
    text-decoration: none; /* No underline */
    padding: 12px 20px; /* Increased spacing for better readability */
    display: block; /* Full-width clickable area */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    font-size: 16px; /* Slightly larger font for clarity */
    font-weight: 500; /* Medium weight for better readability */
    border-radius: 5px; /* Slight rounding for links */
}

/* Hover effect for links */
.menu-dropdown .menu-link:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Light semi-transparent hover background */
    color: #facc15; /* Highlighted text color (yellow) */
}

/* Chevron icon */
.menu-dropdown .menu-link i {
    margin-left: 8px; /* Spacing between text and icon */
    transition: transform 0.3s ease; /* Smooth animation */
}

/* On hover, rotate the chevron slightly */
.menu-dropdown .menu-link:hover i {
    transform: translateX(4px); /* Move chevron slightly to the right */
}
