
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', Arial, sans-serif;
            line-height: 1.6;
            background: url('../img/main.jpg') center/cover no-repeat fixed;
            color: white;
            text-shadow: 1px 1px 2px black;
            min-height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }

        h3 {
            text-transform: uppercase;
            font-family: 'Nunito', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        }

        .custom-nav {
            background: radial-gradient(black 15%, transparent 16%) 0 0,
                       radial-gradient(black 15%, transparent 16%) 8px 8px,
                       radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px,
                       radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;
            background-color: #282828;
            background-size: 16px 16px;
            padding: 0.5rem;
            border-radius: 10px;
            z-index: 1000;
            width: 100%;
            position: sticky;
            top: 0;
        }

        .custom-nav-logo {
            width: clamp(30px, 5vw, 50px);
            height: clamp(30px, 5vw, 50px);
            background: url('./img/logo.png') center/contain no-repeat;
            margin-right: 1rem;
        }

        .custom-nav-menu {
            width: 100%;
        }

        .custom-nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
        }

        .custom-nav-item {
            position: relative;
            text-decoration: none;
            color: inherit;
            margin-left: 0.25rem;
        }

        .custom-nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            display: inline-block;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            white-space: nowrap;
            margin-left: 0.25rem;
        }

        .custom-nav-link:hover,
        .custom-nav-item:hover > .custom-nav-link {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .custom-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #282828;
            display: none;
            list-style: none;
            padding: 0;
            margin: 0;
            min-width: 150px;
            z-index: 1000;
            border-radius: 5px;
        }

        .custom-dropdown-link {
            padding: 0.5rem 1rem;
            display: block;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .custom-nav-item:hover .custom-dropdown {
            display: block;
        }

        .custom-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
            width: min(90%, 1400px);
            margin: 1rem auto;
        }

        .custom-main-content {
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

        .custom-box {
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            margin-bottom: 1rem;    
        }

        .custom-sidebar-left {
            grid-column: span 3;
            height: fit-content;
        }

        .custom-main-content {
            grid-column: span 6;
            height: fit-content;
        }

        .custom-sidebar-right {
            grid-column: span 3;
            height: fit-content;
        }

        .server-status-box,
        .clanwars-box {
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

        .server-status-box h4,
        .clanwars-box h4 {
            margin-bottom: 0.5rem;
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

        .server-status-list,
        .clanwars-list {
            list-style: none;
            padding-left: 1rem;
        }

        .server-status-item,
        .clanwars-item {
            margin: 0.5rem 0;
            display: flex;
            align-items: center;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
        }

        .team-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 40%;
        }

        .team-avatar {
            width: clamp(20px, 4vw, 30px);
            height: clamp(20px, 4vw, 30px);
            border-radius: 50%;
            object-fit: cover;
        }

        .team-title {
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        hr {
            margin-top: 1rem;
            margin-bottom: 1rem;
            border: 0;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        a {
            color: white; /* Default link color */
            text-decoration: none; /* Remove underline */
        }

        /* Change the link color to grey when hovered */
        a:hover {
            color: grey; /* Grey on hover */
        }

        /* Make sure visited links retain the original color */
        a:visited {
            color: white; /* Same as default color to keep it unchanged after visit */
        }

        /* Optional: Remove the underline on hover if you want it to be clean */
        a:hover {
            text-decoration: none;
        }

        @media (max-width: 992px) {
            .custom-container {
                grid-template-columns: 1fr;
            }

            .custom-sidebar-left,
            .custom-main-content,
            .custom-sidebar-right {
                grid-column: 1 / -1;
            }

            .custom-nav-list {
                flex-direction: column;
            }

            .custom-dropdown {
                position: static;
                width: 100%;
                background: rgba(0, 0, 0, 0.3);
            }
        }

        @media (max-width: 768px) {
            .team-wrapper {
                max-width: 35%;
            }
        }

        @media (max-width: 480px) {
            .custom-container {
                width: 95%;
                gap: 0.5rem;
            }

            .custom-nav-link,
            .custom-dropdown-link {
                padding: 0.5rem;
            }
        }
        
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .download-btn:hover {
            background-color: #45a049;
        }

        .download-btn i {
            margin-right: 8px;
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger span {
            background: white;
            height: 3px;
            width: 100%;
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        /* Show hamburger icon on small devices */
        @media (max-width: 992px) {
            /* Hamburger icon becomes visible on small devices */
            .hamburger {
                display: flex;
            }
            .custom-nav-item {
                width: 100%; /* Make each item take full width */
            }

            .custom-dropdown {
                margin-left: 15px; /* Add margin to the left of dropdown menus */
            }

            /* Hide navigation list by default on small devices */
            .custom-nav-list {
                display: none !important;
                flex-direction: column;
                align-items: flex-start; /* Align items to the start */
                background-color: rgba(0, 0, 0, 0.9);
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                padding: 1rem;
                border-radius: 5px;
                z-index: 1100;
                animation: fadeOut 0.5s;
            }

            /* Display the menu when the active class is added */
            .custom-nav-list.active {
                display: flex !important;
                animation: fadeIn 0.5s;
            }

            @keyframes fadeOut {
                from {
                    opacity: 1;
                }
                to {
                    opacity: 0;
                }
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                }
                to {
                    opacity: 1;
                }
            }
        }

/* General container styles */
.select2-container {
    color: #fff;
}

.select2-selection__clear {
    margin-right: 8px;
}

/* Dropdown background and border */
.select2-dropdown .select2-search--dropdown {
    background-color: #333; /* Dark background */
    border: 1px solid #444; /* Darker border */
}

/* Search box inside dropdown */
.select2-search input {
    background-color: #444; /* Input field background */
    color: #fff; /* Input field text color */
    border: 1px solid #555; /* Input border */
}

/* Option styles */
.select2-results__option {
    background-color: #333; /* Option background */
    color: #fff; /* Option text color */
}

.select2-results__option--highlighted {
    background-color: #555; /* Highlighted option background */
    color: #fff; /* Highlighted option text */
}

/* Selected option in the main field */
.select2-selection {
    background-color: #444; /* Selected field background */
    color: #fff; /* Text color */
    border: 1px solid #555; /* Border */
}

.select2-selection__rendered {
    color: #fff; /* Text color of selected item */
}

/* Placeholder text */
.select2-selection__placeholder {
    color: #bbb; /* Placeholder text color */
}

/* Disabled state */
.select2-selection--disabled {
    background-color: #222; /* Darker disabled background */
    color: #666; /* Dimmed text color */
}
