/* 2010s-style: gradients, glow, shadows, fixed-width layout, and strong colors */

body {
    margin: 0;
    padding: 0;
    background: #05070b url("https://globalretake.neocities.org/Backround-Images/image.png") center top no-repeat fixed;
    background-size: cover;
    font-family: "Tahoma", "Verdana", sans-serif;
    color: #e0e0e0;
}

#wrapper {
    width: 1200px;
    margin: 30px auto;
    background: rgba(5, 7, 11, 0.92);
    border: 1px solid #111;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
}

/* Header */

#top-header {
    background: linear-gradient(to bottom, #15191f 0%, #05070b 100%);
    border-bottom: 1px solid #000;
    padding: 20px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 90px;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    display: block;
    font-size: 32px;
    letter-spacing: 3px;
    color: #00d9ff;
    text-shadow: 0 0 8px #00d9ff, 0 0 16px #007a99;
    font-weight: bold;
}

.logo-sub {
    display: block;
    font-size: 13px;
    color: #cccccc;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Navigation */

#main-nav {
    background: linear-gradient(to bottom, #1f252f 0%, #10141b 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #000;
}

#main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
}

#main-nav li {
    float: left;
}

#main-nav a {
    display: block;
    padding: 10px 18px;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    border-right: 1px solid #222;
}

#main-nav a:hover,
#main-nav a.active {
    background: radial-gradient(circle at top, #00d9ff 0%, #005066 60%, #05070b 100%);
    color: #ffffff;
    text-shadow: 0 0 6px #00d9ff;
}

/* Content boxes */

.content-box {
    padding: 20px 30px 25px 30px;
    border-bottom: 1px solid #111;
    background: radial-gradient(circle at top, rgba(0, 217, 255, 0.06) 0%, rgba(0, 0, 0, 0.95) 60%);
}

.content-box h1,
.content-box h2 {
    margin-top: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 6px #00d9ff;
}

.content-box h1 {
    font-size: 24px;
}

.content-box h2 {
    font-size: 20px;
}

.content-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #d0d0d0;
}

.highlight {
    margin-top: 10px;
    padding: 10px 12px;
    border-left: 3px solid #00d9ff;
    background: rgba(0, 0, 0, 0.6);
    font-size: 13px;
}

/* Intro layout */

.intro-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.intro-text {
    flex: 1;
}

/* GIF box */

.intro-image-box {
    width: 100%;
    max-width: 800px;
    margin-top: 15px;
    background: rgba(5, 7, 11, 0.85);
    border: 1px solid #00d9ff;
    border-radius: 0px;
    padding: 0px;
    box-shadow: 0 0 18px #00d9ff, 0 0 28px #007a99;
    overflow: hidden;
}

.intro-image-box img {
    width: 100%;
    display: block;
    border-radius: 0px;
}

/* Discord widget */

.discord-widget {
    width: 250px;
    padding: 0px;
    background: rgba(5, 7, 11, 0.85);
    border: 1px solid #00d9ff;
    border-radius: 12px;
    box-shadow: 0 0 18px #00d9ff, 0 0 28px #007a99;
    overflow: hidden;
}

.discord-widget:hover {
    box-shadow: 0 0 25px #00d9ff, 0 0 40px #0099cc;
    transition: 0.2s ease-in-out;
}

/* Servers section */

.server-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.server-card {
    flex: 1 1 45%;
    background: rgba(5, 7, 11, 0.9);
    border: 1px solid #222;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
    padding: 15px;
    transition: 0.2s ease-in-out;
}

.server-card:hover {
    box-shadow: 0 0 18px #00d9ff, 0 0 28px #007a99;
    transform: translateY(-3px);
    border-color: #00d9ff;
}

.server-card h3 {
    margin-top: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #00d9ff;
    text-shadow: 0 0 4px #00d9ff;
}

.server-card p {
    font-size: 12px;
    margin-bottom: 10px;
}

.server-info {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.server-info li {
    margin: 3px 0;
}

.server-info .label {
    color: #aaaaaa;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    margin-right: 4px;
}

.ip {
    color: #7cff7c;
    font-family: "Consolas", "Courier New", monospace;
}

/* RULES — CLEAN + FIXED + GLOWING */

.rules-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.rules-list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    color: #e6faff;
}

.rules-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: #00d9ff;
    border-radius: 50%;
    box-shadow:
        0 0 6px #00d9ff,
        0 0 12px #00d9ff,
        0 0 20px #0099cc,
        0 0 30px #0099cc;
    z-index: 3;
}

/* Contact */

.contact-list {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 13px;
}

.contact-list li {
    margin: 4px 0;
}

.contact-list .label {
    color: #00d9ff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    margin-right: 4px;
}

/* Footer */

#footer {
    padding: 12px 30px 16px 30px;
    background: #05070b;
    border-top: 1px solid #000;
    font-size: 11px;
    color: #777;
    text-align: center;
}

#footer .tiny {
    font-size: 10px;
    color: #555;
    margin-top: 4px;
}

/* Basic responsiveness */

@media (max-width: 980px) {
    #wrapper {
        width: 95%;
        margin: 15px auto;
    }

    .server-list {
        flex-direction: column;
    }
}

/* Fix purple visited links */

a:link,
a:visited {
    color: #00d9ff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px #00d9ff;
}
/* FINAL FIX: FORCE NEON GLOWING BULLETS */
.rules-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 20px !important;
}

.rules-list li {
    margin-bottom: 14px !important;
    padding-left: 32px !important;
    position: relative !important;
    line-height: 1.5 !important;
    color: #e6faff !important;
}

/* FORCE the neon dot to appear above all backgrounds */
.rules-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    width: 12px !important;
    height: 12px !important;
    background: #00d9ff !important;
    border-radius: 50% !important;

    /* STRONG neon glow */
    box-shadow:
        0 0 6px #00d9ff,
        0 0 12px #00d9ff,
        0 0 22px #0099cc,
        0 0 32px #0099cc !important;

    z-index: 999 !important;
}
/* FINAL FIX — FORCE NEON BULLETS TO APPEAR */
.content-box ul.rules-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 20px !important;
}

.content-box ul.rules-list li {
    position: relative !important;
    padding-left: 32px !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
    color: #e6faff !important;
}

/* The neon dot */
.content-box ul.rules-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;

    width: 12px !important;
    height: 12px !important;

    background: #00d9ff !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 8px #00d9ff,
        0 0 16px #00d9ff,
        0 0 28px #0099cc,
        0 0 40px #0099cc !important;

    z-index: 9999 !important;
    display: block !important;
    opacity: 1 !important;
}
/* Contributors grid */
.contributors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Contributor card (horizontal layout) */
.contributor-card {
    display: flex;
    align-items: center;
    width: 48%;
    background: rgba(5, 7, 11, 0.9);
    border: 1px solid #222;
    padding: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
    transition: 0.2s ease-in-out;
}

/* Glow on hover */
.contributor-card:hover {
    box-shadow: 0 0 18px #00d9ff, 0 0 28px #007a99;
    border-color: #00d9ff;
    transform: translateY(-3px);
}

/* Avatar */
.contrib-avatar {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    margin-right: 15px;
    object-fit: cover;
}

/* Name + role */
.contrib-info h3 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #00d9ff;
    text-shadow: 0 0 4px #00d9ff;
}

.contrib-info p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #d0d0d0;
}
/* Contributors grid (4 per row) */
.contributors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-top: 20px;
}

/* Each contributor block */
.contributor {
    width: 22%;
    text-align: center;
    color: #d0d0d0;
}

/* Avatar wrapper with neon glow */
.contrib-avatar-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    padding: 4px;
    background: #00d9ff;
    box-shadow: 0 0 12px #00d9ff, 0 0 22px #0099cc;
}

/* Avatar image */
.contrib-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

/* Contributor name */
.contributor h3 {
    margin: 8px 0 4px 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #00d9ff;
    text-shadow: 0 0 4px #00d9ff;
}

/* Contributor role */
.contributor p {
    margin: 0;
    font-size: 12px;
    color: #cccccc;
}
/* FINAL FIX — NEON BLUE RECTANGULAR BUTTON */
a.download-btn {
    display: inline-block !important;
    padding: 10px 18px !important;
    background: #00d9ff !important; /* neon blue */
    color: #000000 !important; /* black text */
    font-weight: bold !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border: 1px solid #00d9ff !important;
    border-radius: 0px !important; /* rectangular */
    box-shadow:
        0 0 8px #00d9ff,
        0 0 16px #00d9ff,
        0 0 28px #0099cc !important;
    transition: 0.15s ease-in-out !important;
}

a.download-btn:hover {
    background: #33e2ff !important;
    color: #000000 !important;
    box-shadow:
        0 0 12px #00d9ff,
        0 0 22px #00d9ff,
        0 0 36px #0099cc !important;
}




.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 12px;
}

.info-table th, .info-table td {
    border: 1px solid #333;
    padding: 6px;
    text-align: left;
}

.info-table th {
    background: rgba(0, 217, 255, 0.15);
    color: #00d9ff;
}
.download-btn {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6); /* dark background so text is readable */
    color: #00d9ff; /* neon text */
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #00d9ff; /* neon border */
    box-shadow: 0 0 12px #00d9ff, 0 0 22px #0099cc;
    transition: 0.2s ease-in-out;
}

.download-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    box-shadow: 0 0 18px #00d9ff, 0 0 30px #0099cc;
}
.contributor-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.contributor-link {
    display: inline-block; /* keeps the card shape */
    text-decoration: none; /* removes underline */
    color: inherit; /* keeps your text color */
}
.disclaimer {
    background: #b30000;
    color: #ffffff;
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 12px #ff0000;
    max-width: 900px;
}
.donation-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 8px #00d9ff) drop-shadow(0 0 16px #00d9ff);
}
.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.video-box {
    box-shadow: 0 0 12px #00d9ff;
    padding: 8px;
    background: #0a0a0a;
    border-radius: 4px;
}
.contributor-vertical {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #0a0a0a;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    box-shadow: 0 0 12px #00d9ff;
}

.contributor-vertical img {
    width: 120px;
    height: auto;
    border-radius: 4px;
    filter: drop-shadow(0 0 8px #00d9ff);
}

.contrib-info h3 {
    margin: 0;
    font-size: 22px;
    color: #00d9ff;
}

.contrib-info p {
    margin: 5px 0 0 0;
    color: #ccc;
}
