:root {
    --primary: #4CAF50;
    --primary-dark: #2E7D32;
    --secondary: #FF5722;
    --dark: #121212;
    --darker: #0A0A0A;
    --light: #F5F5F5;
    --gray: #424242;
    --card-bg: #1E1E1E;
}

/* Reset & base */
html {
    scroll-padding-top: 200px;
    /* adjust based on your nav height */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif
}

body {
    background: linear-gradient(to bottom, var(--dark), var(--darker));
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px)
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary)
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(76, 175, 80, .5)
}

.subtitle {
    color: #BDBDBD;
    margin-top: .5rem;
    font-size: 1.1rem
}

/* Nav */
nav {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    padding: .8rem;
    margin-top: 1rem;
    border-radius: 4px
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap
}

nav li {
    margin: 0 1rem
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: .5rem
}

nav a:hover {
    color: #FFEB3B
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, .4);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray)
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(76, 175, 80, .7)
}

.hero p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 1.25rem;
    color: #E0E0E0
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: white;
    padding: .8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all .25s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3)
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .4)
}

.btn-discord {
    background: linear-gradient(to right, #5865F2, #4752C4)
}

.btn-donate {
    background: linear-gradient(to right, #FF5722, #E64A19)
}

/* Small availability card */
.small-card {
    margin: 1rem 0
}

.small-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, .35), rgba(0, 0, 0, .25));
    border-radius: 10px;
    padding: .9rem 1rem;
    border: 1px solid var(--gray);
    text-align: center;
    gap: 0.5rem
}

.small-card-inner strong {
    color: var(--primary);
}

.small-card-left {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.slots-text {
    font-size: 1.15rem;
    color: var(--light)
}

/*.small-card-right {} */

/* Cards */
.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .4);
    border: 1px solid var(--gray);
    transition: transform .3s;
    margin: 1.25rem 0
}

.card:hover {
    transform: translateY(-5px)
}

.card-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    padding: 1.2rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.15rem
}

.card-body {
    padding: 1.25rem
}

.server-info div {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    border-bottom: 1px solid var(--gray)
}

/* Sections */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: .5rem
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), #8BC34A);
    border-radius: 2px
}

/* Specs grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0
}

.spec-card {
    background: linear-gradient(to bottom right, var(--card-bg), var(--darker));
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gray)
}

.spec-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: .75rem
}

.stat-value {
    font-weight: 700;
    margin-top: .5rem
}

/* Misc */
.disclaimer {
    background-color: var(--gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.25rem 0;
    font-size: .95rem;
    border-left: 4px solid var(--secondary)
}

.subheading {
    margin: 1.5rem 0 1rem;
    color: var(--primary);
}

.feature-list {
    margin: 1rem 0;
    padding-left: 1.25rem
}

.feature-list li {
    margin-bottom: .6rem
}

.apply-box,
.discord-box {
    background: linear-gradient(to right, rgba(88, 101, 242, .12), rgba(71, 82, 196, .12));
    border: 1px solid #5865F2;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin: 1.25rem 0
}

.discord-icon {
    font-size: 2.5rem;
    color: #5865F2;
    margin-bottom: .5rem
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--gray);
    background: rgba(0, 0, 0, .85)
}

/* Responsive */
@media (max-width:768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: .5rem
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .specs-grid {
        grid-template-columns: 1fr
    }

    .small-card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem
    }

    .small-card-right {
        align-self: stretch
    }
}