:root {
    --realm-red: #ff0000;
    --realm-bg: #0b0b0b;
    --realm-card: #161616;
    --gold: #ffd700;
}

body {
    background-color: var(--realm-bg);
    color: white;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(22, 22, 22, 0.95);
    border-bottom: 1px solid var(--realm-red);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Discord Button Style */
.discord-btn {
    background-color: #5865F2;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}
.discord-btn:hover {
    background-color: #4752C4;
    transform: scale(1.05);
}

.hero-section {
    padding: 120px 0 60px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://i.ibb.co/q6mbzfy/fdora-realm-os-boot-logo.png');
    background-size: cover;
    background-position: center;
}

.btn-realm {
    background-color: var(--realm-red);
    color: white;
    border-radius: 6px;
    padding: 14px 35px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-realm:hover {
    background-color: #cc0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
    color: white;
}

.stats-bar {
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 30px 0;
}

.stat-item { border-right: 1px solid #333; }
.stat-item:last-child { border-right: none; }
.stat-label { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-weight: bold; color: #eee; font-size: 1.1rem; }

.feature-card {
    background-color: var(--realm-card);
    border: 1px solid #222;
    padding: 40px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
}
.feature-card:hover {
    border-color: var(--realm-red);
    transform: translateY(-5px);
}

.neon-text {
    color: var(--realm-red);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

/* Hall of Fame Styling */
.hall-of-fame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.founder-card {
    grid-column: 1 / -1;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid var(--gold) !important;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
    text-align: center;
}

.contributor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
}
.contributor-card:hover {
    border: 1px solid var(--gold);
    background: rgba(255, 215, 0, 0.02);
}

.gold-text {
    color: var(--gold);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer {
    padding: 80px 0;
    background-color: #050505;
    border-top: 1px solid #111;
    margin-top: 50px;
}
