:root {
    --bg-color: #0b0b0b;
    --card-bg: #141414;
    --card-bg-alt: #1a1a1a;
    --accent-color: #e53e3e; /* Sharp Crimson/Anarchy Red */
    --text-color: #ededed;
    --text-muted: #a0aec0;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--text-color);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--accent-color);
}

nav a.discord-btn {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
}

nav a.discord-btn:hover {
    background: #c53030;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1c1212 0%, var(--bg-color) 100%);
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 5px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(229, 62, 62, 0.2);
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 30px;
}

/* IP Box Styling */
.ip-box {
    background: var(--card-bg);
    padding: 16px 32px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    display: inline-block;
    cursor: pointer;
    font-weight: 700;
    font-family: monospace;
    font-size: 1.3rem;
    position: relative;
    letter-spacing: 1px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ip-box:hover {
    transform: translateY(-2px);
    background: #1c1212;
}

.tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-count {
    margin-top: 25px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

#slots {
    color: var(--accent-color);
    font-weight: bold;
}

/* Content Sections */
.content-section {
    padding: 100px 10%;
    max-width: 1000px;
    margin: 0 auto;
}

.grey-bg {
    background-color: #0e0e0e;
    max-width: 100%;
    padding-left: 10%;
    padding-right: 10%;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-desc {
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 20px;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin-bottom: 40px;
}

/* Rules List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: var(--card-bg);
    margin: 15px 0;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 6px 6px 0;
    font-size: 1.05rem;
}

/* Grid Layout for Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--card-bg-alt);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.info-card h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.anarchy-footer {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-top: 40px;
    text-shadow: 0 0 15px rgba(229, 62, 62, 0.6);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .info-grid { grid-template-columns: 1fr; }
    header { padding: 15px 5%; }
}
