::-webkit-scrollbar {
    width: 8px; 
    height: 8px; 
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #c22930; 
    border-radius: 10px;
    border: 2px solid #333; 
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); 
}

::-webkit-scrollbar-thumb:hover {
    background: #9b1d25; 
    transition: background-color 0.2s ease; 
}

::-webkit-scrollbar-thumb:active {
    background: #7a1a22; 
}

::-webkit-scrollbar:focus {
    outline: none; 
}

::-webkit-scrollbar-horizontal {
    height: 8px;
}

::-webkit-scrollbar-corner {
    background: #1a1a1a; 
}

body {
	background-color: #0f0f0f;
	background-image: radial-gradient(circle at 25px 25px, rgba(88, 101, 242, 0.15) 2%, transparent 0%), radial-gradient(circle at 75px 75px, rgba(88, 101, 242, 0.1) 2%, transparent 0%);
	background-size: 100px 100px;
	user-select: none;
    scroll-behavior: smooth;
}
.account-card {
    background-color: #0f0f0f;
	transition: all 0.2s ease;
}
.account-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(88, 101, 242, 0.1);
}
.discord-btn {
	background-color: #c22930;
	transition: all 0.2s ease;
}
.discord-btn:hover {
	background-color: #c22930;
}
.feature-card {
    background-color: #0f0f0f;
	border: 1px solid #232323;
    transition: background-color 0.3s ease;
}

.active-tab {
    border-color: #c22930;
    color: white;
}

.feature-card:hover {
    border-color: #c22930;
}

.feature-card:not(.active-tab) {
    background-color: #0f0f0f;
    color: #888888;
}
.out-of-stock {
	cursor: not-allowed !important;
}
.selected-year {
	border-color: #c22930 !important;
	background: #232323 !important;
}
#category-tabs {
    font-size: 0.9rem; 
    background-color: #0f0f0f;
}
#category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #0f0f0f;
    gap: 6px;
}
#category-tabs > div {
    padding: 2px 10px;
    cursor: pointer;
    text-align: center;
    background-color: #1a1a1a;
    color: #888;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    flex-grow: 1;
    align-content: center;
}

#category-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
}

#category-tabs > div:hover {
    background-color: #2b2b2b;
    border-color: #c22930;
    color: #fff;
}

#category-tabs > div.active-tab {
    background-color: #c22930;
    color: #fff;
    border: 2px solid #c22930;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(194, 41, 48, 0.3);
}

.tab-content {
    display: none;
    padding: 16px;
    background-color: #0f0f0f;
    border-radius: 8px;
    margin-top: 12px;
    color: #ccc;
    border: 1px solid #333;
}

.tab-content.active-tab {
    display: block;
}

.tab-content.active-tab {
    margin-top: 16px;
    font-size: 0.95rem;
}


#category-tabs .feature-card {
    font-size: 0.9rem; 
}
.feature-card {
    min-height: auto; 
    height: auto; 
}

#copy-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #c22930;
    color: white;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0; 
    transform: scale(0.95); 
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#copy-message.show {
    opacity: 1;
    transform: scale(1);
}

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

.spinner {
    border: 4px solid transparent;
    border-top: 4px solid #c22930;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader {
    transition: opacity 0.3s ease-out;
}

#category-tabs.hidden, #account-container.hidden {
    display: none;
}

