/* — Variables — */
:root {
–bg-dark: #36393f;
–bg-darker: #2f3136;
–bg-darkest: #202225;
–blurple: #5865F2;
–blurple-hover: #4752c4;
–green: #57F287;
–red: #ed4245;
–text-main: #dcddde;
–text-header: #ffffff;
–card-bg: #2f3136;
}

- {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }

body {
font-family: ‘Roboto’, sans-serif;
background-color: var(–bg-dark);
color: var(–text-main);
line-height: 1.6;
}

h1, h2, h3 {
color: var(–text-header);
margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}

/* — Navbar — */
.navbar {
background-color: var(–bg-darkest);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-weight: 900;
font-size: 1.2rem;
color: var(–text-header);
letter-spacing: 1px;
}

.nav-links {
display: flex;
gap: 20px;
align-items: center;
}

.nav-links a {
font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s;
}

.nav-links a:hover { color: var(–blurple); }

.nav-btn {
background-color: var(–blurple);
color: white !important;
padding: 8px 16px;
border-radius: 4px;
transition: background-color 0.2s;
}

.nav-btn:hover { background-color: var(–blurple-hover); }

/* — Hero Section — */
.hero {
text-align: center;
padding: 80px 0;
background: radial-gradient(circle at center, #2f3136 0%, #36393f 100%);
}

.server-logo-placeholder {
width: 120px;
height: 120px;
background-color: var(–bg-darkest);
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
border: 4px solid var(–bg-darker);
}

.hero h1 { font-size: 3rem; font-weight: 900; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: #b9bbbe; }

/* — IP Copy Boxes — */
.ip-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
max-width: 800px;
margin: 0 auto;
}

.ip-container {
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(–bg-darkest);
padding: 15px 20px;
border-radius: 8px;
cursor: pointer;
font-family: monospace;
font-size: 1rem;
color: var(–text-header);
position: relative;
border: 1px solid transparent;
transition: all 0.2s;
}

.ip-container:hover {
border-color: var(–blurple);
transform: translateY(-2px);
}

.copy-icon { opacity: 0.5; margin-left: 10px; }

.copy-tooltip {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
background-color: black;
color: white;
padding: 5px 10px;
border-radius: 4px;
font-size: 0.8rem;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s;
}

.copy-tooltip.show { opacity: 1; }

.online-status {
margin-top: 20px;
color: var(–green);
font-size: 0.9rem;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.dot {
height: 10px;
width: 10px;
background-color: var(–green);
border-radius: 50%;
box-shadow: 0 0 8px var(–green);
animation: pulse 2s infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

/* — Sections — */
.section { padding: 60px 0; }
.dark-bg { background-color: var(–bg-darker); }
.subtitle { text-align: center; color: #b9bbbe; margin-bottom: 40px; }
h2 { text-align: center; font-size: 2rem; }

/* — Gallery Grid — */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.gallery-item {
background-color: var(–bg-darkest);
height: 200px;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s;
position: relative;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
display: flex;
align-items: center;
justify-content: center;
color: #72767d;
height: 100%;
}

/* — Cards — */
.cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.card {
background-color: var(–bg-dark);
padding: 30px;
border-radius: 8px;
text-align: center;
border: 1px solid var(–bg-darkest);
}

.card h3 { color: var(–blurple); }
.card p { margin-bottom: 20px; font-size: 0.9rem; }

/* — Buttons — */
.btn {
display: inline-block;
padding: 10px 20px;
border-radius: 4px;
font-weight: 500;
transition: opacity 0.2s;
cursor: pointer;
border: none;
font-family: ‘Roboto’, sans-serif;
}

.btn:hover { opacity: 0.8; }
.primary { background-color: var(–blurple); color: white; }
.secondary { background-color: var(–bg-darkest); color: var(–text-header); border: 1px solid #4f545c; }
.danger { background-color: var(–red); color: white; }
.big-btn { padding: 15px 30px; font-size: 1.1rem; }

/* — Whitelist — */
.whitelist-box {
background-color: var(–bg-darkest);
padding: 50px;
border-radius: 10px;
text-align: center;
border-left: 5px solid var(–green);
}

/* — Footer — */
footer {
background-color: var(–bg-darkest);
text-align: center;
padding: 20px 0;
font-size: 0.8rem;
color: #72767d;
}

/* — Timeline (About Page) — */
.timeline-container {
position: relative;
max-width: 1000px;
margin: 0 auto;
padding: 40px 0;
}

.timeline-line {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 100%;
background-color: var(–blurple);
}

.timeline-item {
display: flex;
margin-bottom: 60px;
position: relative;
}

.timeline-item.left {
justify-content: flex-end;
}

.timeline-item.right {
justify-content: flex-start;
}

.timeline-content {
width: 45%;
background-color: var(–bg-darker);
padding: 25px;
border-radius: 8px;
position: relative;
border: 1px solid #4f545c;
}

.timeline-item.left .timeline-content {
margin-right: 60px;
text-align: right;
}

.timeline-item.right .timeline-content {
margin-left: 60px;
}

.timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 20px;
background-color: var(–blurple);
border-radius: 50%;
border: 4px solid var(–bg-dark);
z-index: 2;
}

.timeline-date {
color: var(–blurple);
font-weight: bold;
margin-bottom: 10px;
}

/* — Upload Zone — */
.upload-zone {
background-color: var(–bg-darker);
border: 3px dashed #4f545c;
border-radius: 10px;
padding: 60px 40px;
text-align: center;
margin-bottom: 40px;
transition: all 0.3s;
cursor: pointer;
}

.upload-zone.dragover {
border-color: var(–blurple);
background-color: rgba(88, 101, 242, 0.1);
}

.upload-zone:hover {
border-color: var(–blurple);
}

.upload-icon {
font-size: 3rem;
margin-bottom: 20px;
}

.file-input {
display: none;
}

/* — Status Page — */
.status-card {
background-color: var(–bg-darker);
padding: 40px;
border-radius: 10px;
margin-bottom: 30px;
border: 1px solid #4f545c;
}

.status-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}

.status-indicator {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.2rem;
font-weight: bold;
}

.status-indicator.online { color: var(–green); }
.status-indicator.offline { color: var(–red); }

.status-dot {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: var(–green);
}

.status-dot.offline {
background-color: var(–red);
animation: none;
}

.status-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 30px;
}

.status-item h4 {
color: #b9bbbe;
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 5px;
}

.status-item p {
font-size: 1.2rem;
color: var(–text-header);
}

.player-list {
background-color: var(–bg-darkest);
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}

.player-list h3 {
margin-bottom: 15px;
font-size: 1.1rem;
}

.player-item {
padding: 10px;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 4px;
margin-bottom: 8px;
}

.alert-section {
text-align: center;
padding: 30px;
background-color: rgba(237, 66, 69, 0.1);
border-radius: 8px;
border: 1px solid var(–red);
}

/* — Loading Spinner — */
.spinner {
border: 3px solid rgba(255, 255, 255, 0.1);
border-top: 3px solid var(–blurple);
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto;
}

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

.loading-text {
text-align: center;
color: #b9bbbe;
margin-top: 10px;
}

/* — Mobile — */
@media (max-width: 768px) {
.hero h1 { font-size: 2rem; }
.nav-links {
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}

```
.ip-grid {
    grid-template-columns: 1fr;
}

.timeline-line { display: none; }

.timeline-item {
    justify-content: center !important;
}

.timeline-content {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
}

.timeline-dot {
    left: 0;
    transform: none;
}

.status-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
```

}
