* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Nav Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.logo-text {
    font-weight: 900;
    font-size: 1.2rem;
}

span { color: #bc13fe; }

nav ul { display: flex; list-style: none; align-items: center; }

nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.nav-discord {
    background: #bc13fe;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }

.btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #bc13fe;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.6);
}

/* Grid Styles */
section { padding: 50px 10%; }

h2 {
    text-align: center;
    color: #bc13fe;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.banner-grid { grid-template-columns: 1fr 1fr; }

img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
    transition: 0.3s;
}

img:hover { border-color: #bc13fe; transform: scale(1.02); }

footer { text-align: center; padding: 40px; color: #555; }