#year-header {
	border: none;
	display: block;
	width: 100%;
	background: #eaebea;
}

#year-header ul {
	display: block;
	margin: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 0;
	text-align: center;
}

#year-header ul li {
	display: inline-block;
	list-style: none;
}

#year-header ul li a {
	display: block;
	text-decoration: none;
	border: none;

	padding: 0 1.7em;
	height: 3.2em;
	line-height: 3.2em;

	font-family: Helvetica, Arial, sans-serif;
	font-size: 1.0em;
	font-weight: 400;
	color: #444;
}

@media (max-width:1000px) {
	#year-header ul li a {
		font-size: 0.8em;
	}
}

#year-header ul li a:hover {
	background: #dddedd;
	color: #000;
	transition: .5s;
}

div.sticky-top {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1020;
}

/* Bootstrap 5 navbar fixes */
.navbar-light {
	background-color: rgba(255,255,255,0.98) !important;
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.navbar-brand {
	font-weight: 700;
	background: linear-gradient(90deg, #00AE00, #43AFFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 22px;
	letter-spacing: -0.02em;
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

.navbar-nav .nav-link {
	color: #1a1a1a;
	font-weight: 500;
	padding: 8px 16px !important;
	border-radius: 6px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.navbar-nav .nav-link:hover {
	background: linear-gradient(135deg, rgba(0,174,0,0.08), rgba(67,175,255,0.08));
	color: #00AE00;
	transform: translateY(-1px);
}

ul.navbar-nav {
	font-size: 15px;
}

@media (max-width:1000px) {
	ul.navbar-nav {
		font-size: 10px;
	}

	h1 {
		font-size: 24px !important;
	}

	h2 {
		font-size: 20px !important;
	}
}

body {
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	color: #1a1a1a;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', sans-serif;
	background-color: #fafafa;
}

html {
	scroll-behavior: smooth;
}

body *::selection {
	background: #000;
	color: #fff;
}

body *::-moz-selection {
	background: #000;
	color: #fff;
}

.container {
	max-width: 1100px;
}

/* Section Styling */
.content-section {
	background: white;
	padding: 80px 0;
	margin-bottom: 0;
}

.content-section:nth-child(even) {
	background: #fafafa;
}

.content-section-alt {
	background: linear-gradient(135deg, rgba(0,174,0,0.03), rgba(67,175,255,0.03));
	padding: 80px 0;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #00AE00 0%, #43AFFF 100%);
	color: white;
	padding: 120px 0 100px;
	margin-bottom: 0px;
	box-shadow: 0 4px 30px rgba(0,174,0,0.15);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.hero-content {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.15;
	color: white;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 20px rgba(0,0,0,0.1);
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

.hero-subtitle {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 30px;
	opacity: 0.95;
	text-align: center;
	letter-spacing: -0.01em;
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

.hero-details {
	font-size: 19px;
	opacity: 0.9;
	margin-top: 35px;
	text-align: center;
	font-weight: 300;
}

.detail-item {
	display: inline-block;
	margin: 0 10px;
}

.detail-separator {
	opacity: 0.6;
}

@media (max-width: 768px) {
	.hero-section {
		padding: 80px 0 60px;
	}
	
	.hero-title {
		font-size: 34px;
		line-height: 1.25;
	}
	
	.hero-subtitle {
		font-size: 24px;
	}
	
	.hero-details {
		font-size: 17px;
	}
	
	.detail-item {
		display: block;
		margin: 8px 0;
	}
	
	.detail-separator {
		display: none;
	}
	
	.section-wrapper {
		padding: 50px 0;
	}
	
	h2 {
		font-size: 28px;
	}
	
	h3 {
		font-size: 22px;
	}
	
	.topics-header {
		font-size: 23px;
	}
}

.top-strip {
	background-color: #000;
	height: 0.25em;
	width: 100%;
}

h1,
h2,
h3 {
	color: #1a1a1a;
	font-weight: 600;
	letter-spacing: -0.02em;
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

h1 {
	margin: 0 0 20px;
	font-size: 42px;
	line-height: 1.3;
}

h2 {
	margin: 0 0 30px;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	position: relative;
	padding-left: 0;
	display: block;
}

h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #00AE00, #43AFFF);
	border-radius: 2px;
}

h3 {
	margin: 0 0 15px;
	font-size: 24px;
	line-height: 1.4;
}

.section-subtitle {
	font-size: 19px;
	color: #666;
	font-style: normal;
	font-weight: 400;
	margin-top: -20px;
	margin-bottom: 50px;
	line-height: 1.6;
}

.page-header {
	margin-top: 20px;
	/*border-color: #3498db;*/
}

table.event-details {
	font-size: 17px;
}

table.event-details td.item {
	font-weight: bold;
	text-align: right;
	padding-right: 10px;
}

p.authors {
	margin-bottom: 5px;
	color: #808080;
	font-size: 20px;
}

p.authors a {
	border-color: #dedede;
}

img {
	max-width: 100%;
}

p {
	text-align: left;
	margin-bottom: 1.5em;
	color: #4a4a4a;
	line-height: 1.8;
}

a {
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	color: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
	border-bottom-color: #00AE00;
	color: #00AE00;
}

p a {
	color: #00AE00;
	border-bottom: 1px solid rgba(0,174,0,0.3);
}

p a:hover {
	border-bottom-color: #00AE00;
	color: #00AE00;
}

a.anchor {
	display: block;
	position: relative;
	top: -120px;
	visibility: hidden;
}

.navbar a {
	border-bottom: 0;
}

p.lead.authors a {
	border-bottom: none;
}

/* Remove underlines from image links */
a img {
	border: none;
}

.speaker-row a,
.organizer-row a {
	border-bottom: none !important;
}

a:has(img) {
	border-bottom: none !important;
}

a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
}

.thumb {
	margin: 20px 0;
	border: 1px solid #808080;
}

pre {
	color: #333;
	font-size: 12px;
	line-height: 17px;
}

#vimeo-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

#vimeo-embed iframe,
#vimeo-embed object,
#vimeo-embed embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

div.speaker {
	margin: 2em 0;
}

div.speaker div.speaker-pic {
	text-align: right;
}

div.speaker p.speaker-abstract,
div.speaker p.speaker-bio {
	font-size: 1em;
	line-height: 1.5em;
}

#organizers {
	margin-top: 1em;
}

.people-pic {
	max-width: 160px;
	max-height: 160px;
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 4px solid white !important;
	filter: grayscale(0%);
}

.people-pic:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 12px 40px rgba(0,174,0,0.3);
	border: 4px solid rgba(67,175,255,0.5) !important;
}

.people-name {
	margin: 20px 0 25px;
	text-align: center;
}

.people-name a {
	font-weight: 600;
	font-size: 17px;
	color: #1a1a1a;
	border-bottom: none !important;
	transition: all 0.3s ease;
	display: inline-block;
	letter-spacing: -0.01em;
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

.people-name a:hover {
	background: linear-gradient(90deg, #00AE00, #43AFFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	border-bottom: none !important;
	transform: translateY(-2px);
}

.people-name h6 {
	margin: 10px 0;
	font-weight: 400;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* Speaker and Organizer Rows */
.speaker-row,
.organizer-row {
	margin-bottom: 40px;
	margin-top: 30px;
}

.speaker-row > div,
.organizer-row > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
	padding: 25px 15px;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: transparent;
}

.speaker-row > div:hover,
.organizer-row > div:hover {
	background: rgba(255,255,255,0.9);
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	transform: translateY(-5px);
}

.section-wrapper:nth-of-type(even) .speaker-row > div:hover,
.section-wrapper:nth-of-type(even) .organizer-row > div:hover {
	background: white;
}

@media (max-width:1000px) {
	div.speaker img.people-pic {
		max-width: 100px;
		max-height: 100px;
	}

	.people-pic {
		max-width: 100px;
		max-height: 100px;
	}

	.people-name {
		font-size: 14px;
		line-height: 1.4;
	}

	.people-name h6 {
		font-size: 11px;
	}
}

div.award {
	padding: 15px 0px 15px 25px;
}

div.award h3 {
	font-size: 15px;
}

div.award p {
	padding-left: 20px;
}

span.award-sponsor {
	color: #666;
	font-size: 13px;
}

span.award-sponsor a,
span.award-other a {
	text-decoration: none;
	border: 0;
}

span.award-sponsor img {
	height: 18px;
	margin: 0 5px;
}

div.award:last-child {
	padding-top: 30px;
}

span.award-other img {
	height: 18px;
	margin-top: 2px;
	vertical-align: top;
}

#sequence {
	height: 70px;
}

#legend {
	padding: 10px 0 0 3px;
}

#sequence text,
#legend text {
	font-weight: 300;
	fill: #fff;
}

#chart {
	position: relative;
	border-right: 1px solid #eee;
}

#chart path {
	stroke: #fff;
}

#explanation {
	position: absolute;
	top: 240px;
	left: 180px;
	width: 140px;
	text-align: center;
	color: #666;
	z-index: -1;
}

#percentage {
	font-size: 2.5em;
}


.sponsor {
	text-align: center;
	height: 7rem;
	display: table;
}

.sponsor>a {
	display: table-cell;
	vertical-align: bottom;
	border: none;
}

.sponsor img {
	max-height: 5rem;
	padding: 0;
	margin: 1.5rem 0;
}

.vid-container {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
}

.vid-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.table.schedule tr.noline td {
	border-top: none;
}

.table.schedule tr td {
	padding-top: 0;
	padding-bottom: 8px;
}

div.paper {
	padding: 15px 0px 15px 25px;
}

div.paper span.title {
	display: block;
	font-size: 18px;
}

div.paper span.authors {
	display: block;
	font-size: 15px;
	color: #666;
	transition: color 0.5s;
}

div.paper span.award {
	display: block;
	font-size: 18px;
	color: rgb(178, 154, 37);
}

div.paper:hover,
div.paper:hover span.authors,
div.paper:hover .btn-default,
div.award:hover .btn-default {
	color: black;
}

div.paper span.label {
	font-size: 10px;
}

div.award div.btn-group,
div.paper div.btn-group {
	margin-top: 8px;
}

div.award button,
div.award .btn,
div.paper button,
div.paper .btn {
	border-radius: 0 !important;
}

div.award .btn,
div.paper .btn {
	text-transform: none !important;
	box-shadow: none;
	border: 1px solid #999;
	margin-right: -1px;
	padding: 4px 8px;
}

div.award .btn-default,
div.paper .btn-default {
	color: #999;
}

div.award .btn-success,
div.award .btn-primary,
div.award .btn-poster-id,
div.paper .btn-success,
div.paper .btn-primary,
div.paper .btn-poster-id {
	cursor: default;
	pointer-events: none;
}

div.award i.fas,
div.paper i.fas {
	margin-right: 4px;
}

@media (max-width:1000px) {
	div.paper span.title {
		font-size: 15px;
	}

	div.paper span.authors {
		font-size: 13px;
	}
}

/* Better List Styling */
ul {
	line-height: 1.9;
}

ul li {
	margin-bottom: 10px;
}

ul li strong {
	color: #1a1a1a;
	font-weight: 600;
}

.topics-header {
	margin-top: 40px;
	margin-bottom: 25px;
	background: linear-gradient(90deg, #00AE00, #43AFFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	font-size: 26px;
	letter-spacing: -0.01em;
	font-family: ui-monospace, 
	             Menlo, Monaco, 
	             "Cascadia Mono", "Segoe UI Mono", 
	             "Roboto Mono", 
	             "Oxygen Mono", 
	             "Ubuntu Mono", 
	             "Source Code Pro",
	             "Fira Mono", 
	             "Droid Sans Mono", 
	             "Consolas", "Courier New", monospace;
}

.topics-list {
	background: white;
	padding: 30px 45px;
	border-radius: 12px;
	border-left: 5px solid #00AE00;
	margin-bottom: 25px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
}

.topics-list:hover {
	box-shadow: 0 8px 30px rgba(0,174,0,0.15);
	transform: translateY(-2px);
}

.topics-list li {
	margin-bottom: 14px;
	color: #4a4a4a;
	position: relative;
	padding-left: 8px;
}

.topics-list li::before {
	content: '→';
	position: absolute;
	left: -15px;
	color: #00AE00;
	font-weight: bold;
}

/* Section Spacing */
.row {
	margin-bottom: 30px;
}

.page-content {
	padding-bottom: 0px;
}

.section-wrapper {
	padding: 80px 0;
	background: white;
	position: relative;
}

.section-wrapper:nth-of-type(odd) {
	background: white;
}

.section-wrapper:nth-of-type(even) {
	background: #f8f9fa;
}

.section-wrapper:last-of-type {
	padding-bottom: 100px;
}

/* Footer */
#footer {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
	margin-top: 0px;
	padding: 50px 0 30px;
	color: #aaa;
}

#footer a {
	text-decoration: none;
	border-bottom: none;
	color: #ccc;
	transition: all 0.3s ease;
}

#footer a:hover {
	background: linear-gradient(90deg, #00AE00, #43AFFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transform: translateY(-1px);
}

#footer .text-muted {
	color: #999 !important;
}

/* Improve overall readability */
.col-12 p:last-child {
	margin-bottom: 0;
}

/* Better responsive images */
img.img-fluid {
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}