body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #1e1e1e;
    color: #fff;
}

.navbar {
    background: #1f6f3a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.nav-links li {
    display: inline-block;
    margin-left: 15px;
}

.nav-links a {
    color: #fff;
    padding: 10px 18px;
    background: linear-gradient(135deg, #5865F2, #43B581);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: block;
} 

.nav-links a:hover {
    background: linear-gradient(135deg, #43B581, #5865F2);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
}

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

.hero button {
    padding: 0.7rem 1.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    cursor: pointer;
    background: #2ecc71;
    border: none;
    border-radius: 8px;
    color: #fff;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 3rem 1rem;
    background: #161b22;
    gap: 20px;
}

.feature {
    max-width: 300px;
    min-width: 250px;
    text-align: center;
    background-color: #23272a;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    flex: 1;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.hero.minecraft-bg {
    background-image: url('../images/hatter.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 4px #000;
    padding: 20px;
}

.page-footer {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
    color: #aaa;
    position: relative;
    bottom: 0;
    width: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main.content {
    flex: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.discord-info {
    background-color: #36393f;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.discord-btn {
    background-color: #7289da;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.discord-btn:hover {
    background-color: #5b6e8c; 
}

.team-card a {
    color: #7289da;
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-card a:hover {
    color: #99aab5;
    text-decoration: underline;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    background-color: #43b581;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    font-size: 1rem;
    gap: 10px;
}

.store-btn i {
    font-size: 1.2rem;
}

.store-btn:hover {
    background-color: #3ca873;
    transform: scale(1.05);
}

