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

body {
    background: #080808;
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
        url("/assets/images/city.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.topbar {
    width: 100%;
    padding: 28px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #d4a017;
    font-size: 26px;
    font-weight: 700;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}

.menu a:hover {
    color: #d4a017;
}

.hero-center {
    height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-center h1 {
    font-family: 'Anton', sans-serif;
    font-size: 105px;
    color: white;
    letter-spacing: 4px;
    text-shadow:
        -3px -3px 0 #000,
         3px -3px 0 #000,
        -3px  3px 0 #000,
         3px  3px 0 #000,
         0 7px 16px rgba(0,0,0,0.8);
}

.hero-center h2 {
    font-size: 42px;
    color: #d4a017;
    font-style: italic;
    text-shadow: 2px 2px 5px #000;
}

.hero-center p {
    margin-top: 15px;
    color: #e0e0e0;
}

.buttons {
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 34px;
    margin: 10px;
    border: 2px solid #d4a017;
    color: #d4a017;
    text-decoration: none;
    font-weight: 700;
    background: rgba(0,0,0,0.35);
}

.btn:hover {
    background: #d4a017;
    color: black;
}

.updates {
    padding: 70px;
    background: #090909;
}

.updates h2,
.discord h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.update-grid {
    display: flex;
    gap: 25px;
}

.update-card {
    width: 33.33%;
    background: #111;
    border: 1px solid #2b2b2b;
    border-radius: 6px;
    overflow: hidden;
}

.update-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.update-card h3 {
    padding: 18px;
    font-size: 21px;
}

.discord {
    padding: 70px;
    text-align: center;
    background: #111;
}
.server-ip {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #d4a017;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
}

.game-icon {
    height: 28px;
    width: auto;
}
