        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Oswald', sans-serif;
            color: #fff;
        }
        body {
            position: relative;
            z-index: 1;
        }
        #bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -1;
        }
        nav {
            background-color: rgba(17, 17, 17, 0.9);
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
        }
        nav a:hover {
            color: #c00;
        }
        header {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        header h1 {
            font-size: 4rem;
            margin: 0;
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
        }
        section {
            padding: 40px;
            max-width: 1000px;
            margin: auto;
            background: rgba(0, 0, 0, 0.7);
        }
        .section-title {
            font-size: 2rem;
            border-bottom: 2px solid #fff;
            margin-bottom: 20px;
        }
        .gallery img {
            width: 100%;
            max-width: 300px;
            margin: 10px;
        }
        .join-btn {
            background: #c00;
            color: #fff;
            padding: 10px 20px;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
        }
        footer {
            background-color: rgba(17, 17, 17, 0.9);
            padding: 20px;
            text-align: center;
        }
	h1 {
    font-family: 'MedievalSharp', cursive;
}
.discord-icon {
            font-size: 1.5rem;
            color: #7289da;
        }
