@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --hytale-dark: #0e1217;
    --hytale-blue: #18202b;
    --hytale-gold: #cfa856;
    --text-color: #e0e6ed;
}

body {
    background-color: var(--hytale-dark);
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: rgba(14, 18, 23, 0.95);
    border-bottom: 2px solid var(--hytale-gold);
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-family: 'Cinzel', serif;
    color: var(--hytale-gold);
    margin: 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('background.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.server-ip-box {
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--hytale-gold);
    padding: 15px 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-top: 20px;
    cursor: pointer;
}

.status-bar {
    background: var(--hytale-blue);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: -50px auto 50px;
    position: relative;
    border-radius: 8px;
    border: 1px solid #333;
}

.online-tag { color: #4cd137; font-weight: bold; text-transform: uppercase; }
.offline-tag { color: #e84118; font-weight: bold; text-transform: uppercase; }

.btn {
    display: inline-block;
    background: var(--hytale-gold);
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 15px;
}