<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Navigation */
.navbar {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 10px 0;
	background-color: rgba(0, 0, 0, 0.7);
	height: 80px;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.navbar a {
	color: #FFFFFF;
	text-decoration: none;
	padding: 10px 50px;
	font-size: 24px;
	transition: color 0.3s ease, border 0.3s ease;
	border: 2px solid transparent;
}

.navbar a:hover {
	color: #c84799;
	background: transparent;
	border: 2px solid;
	border-image: linear-gradient(45deg, #f06, #4a90e2) 1;
}

/*Hamburger menu stuff */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 110;
}

/* Full-screen overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 105;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li + li {
    margin-top: 1.5rem;
}

.mobile-menu a {
    color: #fff;
    font-size: 2rem;
    padding: 10px 50px;
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
	transition: color 0.3s ease, border 0.3s ease;
	border: 2px solid transparent;
}

.mobile-menu a:hover {
    color: #c84799;
	background: transparent;
	border: 2px solid;
	border-image: linear-gradient(45deg, #f06, #4a90e2) 1;
}

/* base state */
.mobile-menu ul li {
    opacity: 0;
    transform: translateY(20px);
}

/* when menu opens */
.mobile-menu.open ul li {
    animation: slideIn 0.4s forwards;
}

/* staggered delays for the mobile nav menu */
.mobile-menu.open ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.open ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 905px) {
    .navbar {
        height: 80px;
    }
    
    .navbar a {
        display: none;
    }
    
    .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: auto;
    transform: none;
    font-size: 2.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

@media (max-width: 768px) {
	.navbar {
		padding: 10px 5px;
        height: 80px;
	}
    
    .mobile-menu.open {
        display: flex;
    }
}

@media (max-width: 480px) {
	.navbar {
		flex-direction: column;
		height: 80px;
		padding: 16px 0;
		gap: 8px;
	}

	.navbar a {
		flex: 1 1 100%;
		text-align: center;
		margin: 4px 0;
		font-size: 18px;
	}
}

.no-scroll {
    overflow: hidden;
}

.hamburger i {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    transform-origin: center;
}

.hamburger.active i {
    transform: rotate(90deg) scale(1.1);
}

.hamburger i.bi-list,
.hamburger i.bi-x-lg {
    position: absolute;
    top: 0; left: 0;
}
.hamburger i.bi-x-lg { opacity: 0; }
.hamburger.active i.bi-list { opacity: 0; }
.hamburger.active i.bi-x-lg { opacity: 1; }</pre></body></html>