* {
	font-family: 'Roboto', sans-serif;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

html,
body {
	min-height: 100vh;
	background-color: #111;
	color: #f1f1f1;
	overflow-x: hidden;
}

body.no-scroll {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

.row {
	display: flex;
	flex-direction: row;
}

.column {
	display: flex;
	flex-direction: column;
}

.wrap {
	display: flex;
	flex-wrap: wrap;
}

/* Premium Header Styles */
#mainHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.4s ease;
	background: #111;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#mainHeader.scrolled {
	background: rgba(17, 17, 17, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#navContainer {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	transition: padding 0.4s ease;
}

#mainHeader.scrolled #navContainer {
	padding: 10px 0;
}

/* Announcement Banner Redesign (Site-wide) */
#announcementBanner {
	background: linear-gradient(90deg, #1e293b 0%, #334155 50%, #1e293b 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 0;
	overflow: hidden;
	position: relative;
	backdrop-filter: blur(10px);
}

#annContainer {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	align-items: center;
	gap: 20px;
	position: relative;
}

.annIcon {
	background: #607d8b;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(96, 125, 139, 0.4);
	flex-shrink: 0;
	animation: iconPulse 2s infinite ease-in-out;
}

.annIcon img {
	height: 20px;
}

.annText {
	flex: 1;
	min-width: 0;
}

.annTitle {
	font-size: 0.8rem;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 2px;
}

.annMsg {
	font-size: 0.85rem;
	color: #cbd5e1;
	line-height: 1.3;
	margin: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

.annDismiss {
	padding: 10px;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.annDismiss:hover {
	opacity: 1;
}

@keyframes iconPulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 10px rgba(96, 125, 139, 0.4);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 20px rgba(96, 125, 139, 0.6);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 10px rgba(96, 125, 139, 0.4);
	}
}

/* Global Icon Filter for Dark Mode */
.toSvg {
	filter: invert(1);
}

/* White Date Picker Icons */
input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
	cursor: pointer;
}

/* Premium Buttons */
.premiumBtn {
	display: inline-block;
	padding: 15px 35px;
	border-radius: 40px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	cursor: pointer;
	text-align: center;
}

.premiumBtn.main {
	background: #607d8b;
	color: #fff !important;
	box-shadow: 0 10px 20px rgba(96, 125, 139, 0.3);
}

.premiumBtn.main:hover {
	transform: translateY(-3px);
	background: #78909c;
	box-shadow: 0 15px 30px rgba(96, 125, 139, 0.4);
}

.premiumBtn.outline {
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff !important;
	backdrop-filter: blur(10px);
}

.premiumBtn.outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

#premiumLogo img {
	height: 50px;
	width: auto;
	transition: height 0.4s ease;
}

#mainHeader.scrolled #premiumLogo img {
	height: 40px;
	width: auto;
}

#desktopNav {
	gap: 30px;
	align-items: center;
}

.navLink {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #aaa;
	position: relative;
	padding: 5px 0;
}

.navLink:hover {
	color: #fff;
}

.navLink::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #607d8b;
	transition: width 0.3s ease;
}

.navLink:hover::after {
	width: 100%;
}

/* Mobile Toggle */
#mobileToggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.bar {
	width: 30px;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
}

#mobileToggle.open .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

#mobileToggle.open .bar:nth-child(2) {
	opacity: 0;
}

#mobileToggle.open .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
#mobileNav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(17, 17, 17, 0.98);
	backdrop-filter: blur(20px);
	justify-content: center;
	align-items: center;
	gap: 40px;
	transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
	z-index: 1000;
}

#mobileNav.active {
	right: 0;
}

.mobLink {
	font-size: 2rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 5px;
	color: #fff;
}

.mobLink:hover {
	color: #607d8b;
	transform: scale(1.1);
}

/* Main Content Adjustment */
#contentContainer {
	padding-top: 40px;
}

body.has-ann #contentContainer {
	padding-top: 90px;
}

@media screen and (max-width: 1100px) {
	#desktopNav {
		display: none;
	}

	#mobileToggle {
		display: flex;
	}
}

@media screen and (max-width: 600px) {
	#premiumLogo img {
		height: 40px;
		width: auto;
	}
}