:root {
    --primary-dark: #393e40;
    --primary-red: #ff1744;
    --darker-overlay: rgba(37, 42, 44, 0.95);
    --card-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Oxanium', 'Segoe UI', sans-serif;
    background-color: var(--darker-overlay);
    color: white;
}

.online-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary-dark);
    font-size: 14px;
    padding: 8px;
    border-radius: 14px;
}

.navbar {
    background-color: var(--darker-overlay);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.hero-section {
    min-height: 100vh;
    background: #272c2e;
    display: flex;
    align-items: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.btn-custom {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #a02319;
    color: white;
    transform: translateY(-2px);
}

.dropdown-menu {
    background-color: var(--darker-overlay);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: white;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-red);
    color: white;
}

.feature-section {
    background: linear-gradient(rgba(37, 42, 44, 0.98), rgba(37, 42, 44, 0.95));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 10px rgba(158, 0, 19, 0.5);
}

.feature-box {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-box h3 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-box p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 23, 68, 0.3));
}

.discord-section {
    background: rgba(88, 101, 242, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    text-align: center;
}

.discord-section i {
    font-size: 3rem;
    color: #5865F2;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.btn-download:hover {
    background: #7a000f;
    color: white;
    transform: translateY(-2px);
}

.btn-download i {
    font-size: 1.2em;
}

/* Ranks Dropdown Styles */
.ranks-dropdown .dropdown-menu {
    min-width: 250px;
    padding: 1rem;
}

.rank-category {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rank-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.rank-link:hover {
    background: rgba(255, 23, 68, 0.1);
    color: var(--primary-red);
}

.rank-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

/* Animation for rank items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rank-item {
    animation: fadeInUp 0.3s ease forwards;
}

.marketplace-header, .section-header {
    background: linear-gradient(rgba(37, 42, 44, 0.98), rgba(37, 42, 44, 0.95));
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 23, 68, 0.3);
}

.marketplace-title, .section-title{
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

.register-header{
    background: linear-gradient(rgba(37, 42, 44, 0.98), rgba(37, 42, 44, 0.95));
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 23, 68, 0.3);
}

.section-red-title {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(158, 0, 19, 0.5);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center
}