/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #156E9D; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #156E9D; /* Color of the scrollbar thumb on hover */
}

::-webkit-scrollbar-track {
    background: #000; /* Color of the scrollbar track */
    border-radius: 6px; /* Rounded corners for the scrollbar track */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #156E9D #000; /* thumb color, track color */
}

* {
    scrollbar-width: thin;
    scrollbar-color: #156E9D #000;
}

/* For IE, Edge and modern browsers */
* {
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: #156E9D #000;
}

body {
    background-color: #0d0d0d;
    background-image: url('images/sitebackground.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('/images/cursor/cursor.gif'), auto;

}


a, button {
    cursor: url('/images/cursor/cursorlink.gif'), auto; /* For animated cursor */
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 20px;
    border-bottom: 2px solid #156E9D;
}

header img.logo {
    width: 150px;
    height: auto;
}

header nav {
    display: flex;
    gap: 10px;
}

header nav a {
    background-color: #222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header nav a:hover {
    background-color: #444;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
} 

header h1 {
    margin: 0;
  background-image: linear-gradient(to right, #00cfff 15%, #2beec9, #f0f);
  color: transparent;
  -webkit-background-clip: text;
    font-size: 2.5em;
   background-image: url(https://i.pinimg.com/originals/bc/55/51/bc5551ac237a9ef4d8e9575662f2e106.gif);
}

header form {
    margin-top: 10px;
}

header input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    width: 60%;
}

header button {
    padding: 10px 20px;
    font-size: 1em;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
}

header button:hover {
    background-color: #156E9D;
    color: #1a1a1a;
}


/* Responsive navigation */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    header .site-name {
        margin: 0 0 10px 0;
    }

    header nav {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
    }

    header nav a {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

nav a {
    color: #156E9D;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 15px;
    border: 2px solid #156E9D;
    border-radius: 5px;
}

nav a:hover {
    background-color: #156E9D;
    color: #1a1a1a;
}

main {
    padding: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background-color: #1a1a1a;
    border: 2px solid #156E9D;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-header img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.server-details {
    padding: 10px;
    text-align: center;
    color: #e0e0e0;
}

.server-details h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #156E9D;
}

.server-details p {
    font-size: 1.2em;
    margin-bottom: 15px;
    margin: 5px 0;
}

.server-details a {
    color: #156E9D;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.server-details a:hover {
    text-decoration: underline;
}

.server-details .tags {
    margin-bottom: 15px;
}

.server-details .tags a {
    margin-right: 5px;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
    color: white;
}

.server-details .votes {
    margin-top: 10px;
    font-weight: bold;
}

.server-details .category {
    margin-bottom: 10px;
    display: block;
}

footer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 2px solid #156E9D;
}

footer nav {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

footer nav a {
    color: #156E9D;
    text-decoration: none;
    font-size: 12pt;
    padding: 10px 15px;
    border: 2px solid #156E9D;
    border-radius: 5px;
    margin: 0 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

input[type="text"], textarea {
    width: 80%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

button:hover {
    background-color: #156E9D;
    color: #1a1a1a;
}

.server-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.server-img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
}

a.btn {
    color: #156E9D;
    background-color: #333;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #156E9D;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

a.btn:hover {
    background-color: #156E9D;
    color: #000;
    text-decoration: none;
}

.server-details-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.server-details-content {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 20px #156E9D;
    text-align: center;
}

.server-details-content h2 {
    font-size: 2em;
    color: #156E9D;
    margin-bottom: 20px;
}

.server-details-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.server-details-content a {
    color: #156E9D;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #156E9D;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #333;
}

.server-details-content a:hover {
    background-color: #156E9D;
    color: #000;
}

.server-display-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    width: 80%;
}

.server-display-content {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 20px #156E9D;
    text-align: center;
}

.server-display-content h2 {
    font-size: 2em;
    color: #156E9D;
    margin-bottom: 20px;
}

.server-display-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.server-display-content a {
    color: #156E9D;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid #156E9D;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #333;
}

.server-display-content a:hover {
    background-color: #156E9D;
    color: #000;
}

.server-display-content .tags {
    margin-bottom: 20px;
}

.server-display-content .tags a {
    margin-right: 5px;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.server-display-content .votes {
    margin-top: 10px;
    font-weight: bold;
}

.server-display-content .category {
    margin-bottom: 10px;
    display: block;
}

.form-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 2px solid #156E9D;
    border-radius: 10px;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    width: 70%;
}

.form-section label {
    flex: 1;
    margin-right: 10px;
    text-align: left;
    color: #ffffff;
}

.form-section input, .form-section textarea, .form-section select {
    flex: 2;
}

textarea {
    min-height: 50px;
    resize: none;
    overflow: hidden;
}

.invite-url-container {
    border: 2px solid #156E9D;
    border-radius: 10px;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.invite-url-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.invite-url a {
    font-size: 16px;
    color: #156E9D;
    text-decoration: none;
}

invite-url a:hover {
    text-decoration: underline;
}

.bot-invite-container {
    border: 2px solid #156E9D;
    border-radius: 10px;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.bot-invite-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.bot-invite a {
    font-size: 16px;
    color: #156E9D;
    text-decoration: none;
}

.bot-invite a:hover {
    text-decoration: underline;
}

.welcome-container {
    text-align: center;
    margin-bottom: 20px;
}

.welcome_index_text {
    margin: 0 auto;
    background-color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
    text-align: center;
    color: #e0e0e0;
}

.server-item {
    list-style: none;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: #fff;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.server-details-box {
    position: relative;
    z-index: 2;
   background-color: rgba(0, 0, 0, 0.85); /* More opaque background for text */
    padding: 15px;
    border-radius: 0 0 10px 10px;
   width: 90%;
}

.server-details h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

.short-description {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.5;
    text-align: center;
}

.invite-link {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.invite-link .btn {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

invite-link .btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.tags, .category, .votes {
    margin: 5px 0;
    font-size: 0.9em;
    text-align: center;
}

.server-header img {
    border-bottom: 2px solid #333;
    border-radius: 5px;
}

.header-line {
    border-top: 2px solid #333;
    margin: 20px 0;
}

.server-details h2 a {
    color: #156E9D;
    text-decoration: none;
    transition: color 0.3s ease;
}

server-details h2 a:hover {
    color: #e0e0e0;
}

.purple-box {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
}

input[type="url"].purple-box,
select.purple-box {
    width: calc(100% - 20px);
}

label {
    display: block;
    margin-top: 20px;
}

input[type="file"] {
    color: #e0e0e0;
    margin-bottom: 10px;
}

input[type="file"].purple-box {
    margin-top: 10px;
}

.server-details-content select,
.server-details-content input[type="text"],
.server-details-content input[type="file"],
.server-details-content textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.server-details-content button {
    padding: 10px 20px;
    font-size: 1em;
    border: 2px solid #156E9D;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

.server-details-content button:hover {
    background-color: #156E9D;
    color: #1a1a1a;
}

ul.server-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    list-style: none;
    justify-content: center;
}

li.server-item {
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #156E9D;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px #156E9D;
    position: relative;
    overflow: hidden;
    width: 300px;
}

.server-header img {
    display: block;
    margin: 0 auto;
    max-height: 150px;
    object-fit: cover;
    border-bottom: 2px solid #156E9D;
    margin-bottom: 10px;
}

.bot-invite-container {
    border: 2px solid #156E9D;  
    border-radius: 10px;
    padding: 10px;
    margin: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);  
}

.bot-invite-title {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF; /* Adjust the text color to match your site's theme */
    margin-bottom: 10px;
}

.bot-invite a {
    font-size: 16px;
    color: #156E9D; /* Adjust the link color to match your site's theme */
    text-decoration: none;
}

.bot-invite a:hover {
    text-decoration: underline;
}

.server-icon {
    width: 80px;
    border-radius: 50%;
}

.server-banner {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.server-icon-wrapper {
 
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.site-name
 