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

body {
    font-family: Rubik, sans-serif;
    font-size: 18px;
    background: #f2edeb;
    color: #1d201f;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

section {
    padding: 15px 0 30px 0;
}

h1,
h2,
h3 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.hero {
    height: 80vh;
    background-image: url("https://github.com/shaisyday/shaisyday.github.io/blob/main/images/zolhero.png?raw=true");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(29, 32, 31, 0.6);
    color: white;
    width: 100%;
    padding: 80px;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    font-size: 1.3rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fabc2a;
    color: #1d201f;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
    border-radius: 4px;
}

.btn-2 {
    background: blue;
    color: white;
}

.about {
    background: #f2edeb;
}

.features {
    display: flex;
    gap: 20px;
    margin: 40px;
}

.features div {
    background: #20ce88;
    padding: 10px;
    flex: 1;
    text-align: center;
}

.servers {
    background: #0000ff;
    color: white;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    padding: 15px;
}

.discord {
    background: #20ce88;
}

.support {
    background: #ff0057;
    color: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.merch {
    background: #fabc2a;
}

.rules {
    background: #f2edeb;
}

.rules ul {
    margin-left: 20px;
}

footer {
    background: #1d201f;
    color: white;
    text-align: center;
    padding: 1px 0;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .overlay {
        padding: 40px;
    }

    .features {
        flex-direction: column;
    }
}
