* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0e0e0e;
    color: white;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* TOPBAR */
.topbar {
    background: #111;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

.topbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.topbar nav a:hover {
    color: #3a5f3a;
}

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/bg.jpg") no-repeat center center/cover;
    animation: zoom 20s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.hero .overlay {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

/* PvE COLOR */
.hero-pve::after {
    background: linear-gradient(
        to bottom,
        rgba(0,40,0,0.6),
        rgba(0,0,0,0.9)
    );
}

/* SECTIONS */
.section-dark {
    padding: 80px 0;
    background: #141414;
    text-align: center;
}

.section-dark h2 {
    margin-bottom: 20px;
}

.section-grid {
    padding: 80px 0;
    background: #0f0f0f;
}

.grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.grid-card {
    background: #1a1a1a;
    padding: 30px;
    width: 280px;
    border-left: 4px solid #3a5f3a;
    transition: 0.3s;
}

.grid-card:hover {
    transform: translateY(-5px);
}

.rules {
    list-style: none;
    margin-top: 20px;
}

.rules li {
    margin-bottom: 10px;
}

footer {
    background: #111;
    padding: 25px;
    text-align: center;
}

/* ANIMATION */
@keyframes zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}
