        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;
        }
        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;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .gallery img {
            width: 200px;
            height: auto;
            cursor: pointer;
            border-radius: 8px;
            transition: transform 0.2s;
        }

        .gallery img:hover {
            transform: scale(.95);
        }

        /* Lightbox Styles */
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 50%;
            height: 50%;
            display: none;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }

        #lightbox img {
	    width: 300px;
    	    height: auto;
            border-radius: 10px;
        }

        #lightbox:target {
            display: flex;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px;
            color: white;
            text-decoration: none;
        }
