:root {
	--bg-main: #0b172a;
	--bg-card: #152646;
	--bg-nav: #081224;
	--accent-gold: #c0a47b;
	--text-white: #ffffff;
	--text-gray: #a3b1c6;
	--danger: #ff4d4d;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Figtree', sans-serif;
	-webkit-tap-highlight-color: transparent;
}

html {
	overscroll-behavior: none;
}

body {
	background-color: var(--bg-main);
	color: var(--text-white);
	padding-top: 70px;
	padding-bottom: 110px;
	overflow-x: hidden;
}

body:has(.menu-checkbox:checked) {
	overflow: hidden;
}

.menu-checkbox {
	display: none;
}

.menu-checkbox:checked ~ .side-menu {
	right: 0;
}

.menu-checkbox:checked ~ .menu-overlay {
	display: block;
	opacity: 1;
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined'!important;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: rgba(8, 18, 36, 0.9);
	backdrop-filter: blur(10px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo h2 {
	font-size: 1.4rem;
	font-weight: 700;
}

.logo span {
	color: var(--accent-gold);
	font-size: 0.75rem;
	vertical-align: super;
	font-weight: 600;
	margin-left: 2px;
}

.menu-toggle {
	background: none;
	border: none;
	color: var(--text-white);
	cursor: pointer;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.side-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 320px;
	max-width: 85vw;
	height: 100dvh;
	background-color: rgba(8, 18, 36, 0.95);
	backdrop-filter: blur(15px);
	color: var(--text-white);
	z-index: 1000;
	transition: right 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
	border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-header {
	padding: 25px 20px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu-user-info {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 600;
}

.menu-avatar {
	width: 36px;
	height: 36px;
	background-color: rgba(192, 164, 123, 0.15);
	color: var(--accent-gold);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.close-menu {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	color: var(--text-gray);
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-menu:active {
	background: rgba(255, 255, 255, 0.1);
}

.menu-items {
	list-style: none;
	padding: 5px 20px;
	flex-grow: 1;
	overflow-y: auto;
	overscroll-behavior: none;
}

.menu-items li {
	margin-bottom: 5px;
}

.menu-items a {
	text-decoration: none;
	color: var(--text-gray);
	font-size: 1.05rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 12px 15px;
	border-radius: 12px;
	transition: all 0.2s;
}

.menu-items .material-symbols-outlined {
	color: var(--text-gray);
}

.menu-items a:hover, .menu-items a:active {
	background-color: rgba(192, 164, 123, 0.1);
	color: var(--accent-gold);
}

.menu-items a:hover .material-symbols-outlined, .menu-items a:active .material-symbols-outlined {
	color: var(--accent-gold);
}

.menu-divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.05);
	margin: 10px 25px;
	flex-shrink: 0;
}

.menu-footer {
	padding: 15px 25px 25px;
	flex-shrink: 0;
}

.logout-btn {
	color: var(--danger);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 14px 15px;
	border-radius: 12px;
	background-color: rgba(255, 77, 77, 0.05);
}

.logout-btn .material-symbols-outlined {
	color: var(--danger);
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(3px);
	z-index: 999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s;
	cursor: pointer;
}

.content-area {
	padding: 10px 20px;
}

main.content-area:has(.unauth-container) {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 70px);
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.welcome-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	margin-top: 5px;
}

.welcome-text h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.welcome-text p {
	font-size: 0.85rem;
	color: var(--text-gray);
	max-width: 200px;
}

.user-avatar {
	width: 45px;
	height: 45px;
	background-color: var(--bg-card);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--accent-gold);
	color: var(--accent-gold);
}

.news-wrapper {
	background: linear-gradient(145deg, var(--bg-card), #0f1c34);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.news-header h3 {
	font-size: 1.05rem;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.see-all {
	color: var(--accent-gold);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
}

.news-item {
	background-color: transparent;
}

.news-meta {
	font-size: 0.8rem;
	color: var(--text-gray);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.news-meta .tag {
	background-color: rgba(192, 164, 123, 0.15);
	color: var(--accent-gold);
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 600;
}

.news-item h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.4;
}

.news-item p {
	font-size: 0.9rem;
	color: var(--text-gray);
	line-height: 1.6;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.bento-card {
	background-color: var(--bg-card);
	border-radius: 20px;
	padding: 20px;
	text-decoration: none;
	color: var(--text-white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: transform 0.1s;
}

.bento-card:active {
	transform: scale(0.97);
}

.icon-circle {
	width: 40px;
	height: 40px;
	background-color: rgba(192, 164, 123, 0.1);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--accent-gold);
	margin-bottom: 15px;
}

.bento-card h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.bento-card p {
	font-size: 0.75rem;
	color: var(--text-gray);
	line-height: 1.3;
}

.bento-card.wide {
	grid-column: span 2;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.bento-card.wide .icon-circle {
	margin-bottom: 0;
}

.bento-card.highlight {
	background: linear-gradient(135deg, var(--bg-card), rgba(192, 164, 123, 0.15));
	border: 1px solid rgba(192, 164, 123, 0.3);
	justify-content: space-between;
}

.bento-card.highlight .icon-large {
	color: var(--accent-gold);
	opacity: 0.3;
	transform: scale(2.5) translate(-10px, 10px);
}

.bento-card.highlight h3 {
	color: var(--accent-gold);
	font-size: 1.1rem;
}

.bento-card.highlight p {
	color: var(--text-white);
	font-size: 0.85rem;
}

.help-section {
	background-color: var(--bg-card);
	border-radius: 20px;
	padding: 20px;
	margin-top: 25px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.help-content h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.help-content p {
	font-size: 0.85rem;
	color: var(--text-gray);
}

.btn-icon {
	width: 45px;
	height: 45px;
	background-color: var(--accent-gold);
	color: var(--bg-nav);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.bottom-nav-floating {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: 65px;
	background-color: rgba(8, 18, 36, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 35px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 100;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
	color: var(--text-gray);
	text-decoration: none;
	padding: 10px;
	transition: color 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
}

.nav-item.active {
	color: var(--accent-gold);
}

.nav-item-spacer {
	width: 60px;
}

.scan-btn-floating {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-25px);
	background-color: var(--accent-gold);
	color: var(--bg-main);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 5px 20px rgba(192, 164, 123, 0.4);
	border: 5px solid var(--bg-main);
}

.profile-section {
	padding-top: 20px;
	text-align: center;
}

.profile-card, .barcode-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 25px 20px;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-data-group {
	margin-bottom: 20px;
}

.profile-data-group:last-child {
	margin-bottom: 0;
}

.profile-label {
	display: block;
	color: var(--accent-gold);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	font-weight: 600;
}

.profile-name {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0;
}

.profile-email {
	color: var(--text-white);
	font-size: 1.1rem;
	margin-bottom: 0;
}

.barcode-title {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--text-gray);
}

.barcode-container {
	background: #ffffff;
	padding: 20px;
	border-radius: 8px;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
}

.barcode-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.barcode-number {
	color: var(--text-gray);
	font-size: 0.9rem;
	margin-top: 15px;
	letter-spacing: 2px;
}

.barcode-container svg {
	width: 100%;
	height: auto;
	max-height: 100px;
	display: block;
}

.empty-text {
	color: var(--text-gray);
}

.page-section {
	padding-top: 10px;
}

.home-news-item {
	margin-bottom: 20px;
}

.list-news-item {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.list-news-meta {
	margin-bottom: 8px;
}

.list-tag {
	margin-right: 10px;
}

.list-date {
	color: var(--text-gray);
	font-size: 0.85rem;
}

.list-news-title {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.list-news-excerpt {
	color: var(--text-gray);
	line-height: 1.6;
	font-size: 0.95rem;
}

.list-news-excerpt a {
	font-size: inherit;
	font-weight: inherit;
	text-decoration: underline;
	transition: color 0.2s;
}

.list-news-excerpt a:hover {
	text-decoration: none;
}

.empty-state {
	text-align: center;
	padding: 30px 0;
}

.dynamic-section {
	padding-top: 10px;
}

.dynamic-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.dynamic-content {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.6;
}

.error-section {
	padding-top: 10px;
	text-align: center;
}

.error-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title {
	padding-bottom: 20px;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 20px;
}

.news-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	transition: transform 0.2s;
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-tag {
	display: inline-block;
	background: #eff6ff;
	color: #2563eb;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
	align-self: flex-start;
}

.news-card-title {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: #111827;
}

.news-card-excerpt {
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.5;
	flex-grow: 1;
}

.news-card-date {
	margin-top: 15px;
	font-size: 0.85rem;
	color: #9ca3af;
	display: flex;
	align-items: center;
	gap: 5px;
}

.error-404 {
	text-align: center;
	margin-top: 40px;
}

.error-icon-wrapper .error-icon {
	font-size: 80px;
	color: #ef4444;
}

.error-actions {
	margin-top: 30px;
}

.btn-return {
	display: inline-block;
	background-color: #2563eb;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.2s;
}

.btn-return:hover {
	background-color: #1d4ed8;
}

.speakers-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.speaker-category-title {
	padding-bottom: 20px;
	text-align: center;
}

.speaker-row {
	display: flex;
	align-items: center;
	padding: 15px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
}

.speaker-row:hover {
	background: #f9f9f9;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.speaker-avatar {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	margin-right: 20px;
}

.speaker-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.speaker-info h4 {
	margin: 0 0 5px 0;
	font-size: 18px;
	color: #333;
}

.speaker-info p {
	margin: 0 0 3px 0;
	font-size: 14px;
	color: #666;
}

.speaker-info .company {
	font-weight: bold;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overscroll-behavior: contain;
}

.modal-overlay.is-active {
	display: flex!important;
}

.modal-content {
	background: #fff;
	width: 100%;
	max-width: 600px;
	border-radius: 10px;
	padding: 30px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	display: block;
}

.modal-close {
	position: sticky;
	top: 0;
	float: right;
	z-index: 100;
	font-size: 28px;
	cursor: pointer;
	color: #999;
	background: #fff;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-top: -10px;
	margin-right: -10px;
	transition: color 0.2s, background-color 0.2s;
}

.modal-close:hover {
	color: #333;
	background-color: #f5f5f5;
}

.modal-header {
	clear: both;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	flex-direction: column;
	text-align: center;
}

.modal-header img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	margin: 0 0 15px 0;
}

.modal-title-box h3 {
	margin: 0 0 5px 0;
	font-size: 22px;
	color: #000000;
}

.modal-title-box p {
	margin: 0;
	color: #555;
}

.modal-title-box .linkedin-link {
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	color: #0a66c2;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: opacity 0.2s;
}

.modal-title-box .linkedin-link:hover {
	opacity: 0.8;
}

.modal-title-box .linkedin-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.modal-body p {
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

.orgs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.org-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
	cursor: pointer;
}

.org-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.org-logo-rect {
	width: 100%;
	height: 120px;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	cursor: pointer;
	border-bottom: 1px solid #f5f5f5;
}

.org-logo-rect img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.org-card-info {
	padding: 12px;
	text-align: center;
}

.org-card-info h4 {
	margin: 0 0 8px 0;
	font-size: 15px;
	color: #333;
}

.org-external-link {
	display: inline-block;
	font-size: 12px;
	color: #0a66c2;
	text-decoration: none;
	font-weight: 600;
}

.org-external-link:hover {
	text-decoration: underline;
}

.modal-logo-rect {
	width: 110px!important;
	height: auto!important;
	border-radius: 4px!important;
	object-fit: contain!important;
}

#org-modal-link-container {
	margin-top: 10px;
}

.org-modal-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #0a66c2;
	text-decoration: none;
	transition: opacity 0.2s;
}

.org-modal-btn:hover {
	opacity: 0.8;
}

.org-modal-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.org-modal-btn .material-symbols-outlined {
	font-size: 16px;
}

#org-modal-desc, #org-modal-desc p {
	font-size: 15px;
	line-height: 1.6;
	color: #444444;
}

#org-modal-desc a {
	color: #0a66c2;
	text-decoration: none;
	font-weight: 600;
}

#org-modal-desc ul li, .org-modal-desc ol li {
	margin-left: 20px;
}

.unauth-wrapper {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: calc(100vh - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fa;
	z-index: 999;
	padding: 20px;
	box-sizing: border-box;
}

.unauth-box {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	max-width: 400px;
	width: 100%;
	text-align: center;
}

.unauth-title {
	margin: 0 0 15px 0;
	font-size: 24px;
	color: #1e293b;
}

.unauth-text {
	color: #475569;
	line-height: 1.6;
	margin: 0;
}

.unauth-text.error {
	color: #e11d48;
	font-weight: 600;
}

.unauth-container {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px;
}

.d-none {
	display: none!important;
}

.modal-open-no-scroll {
	overflow: hidden!important;
}

.agenda-day-section {
	padding-top: 10px;
}

.modern-day-tabs {
	display: flex;
	gap: 12px;
	margin: 0 -15px 25px -15px;
	padding: 5px 15px 15px 15px;
	overflow-x: auto;
	scrollbar-width: none;
}

.modern-day-tabs::-webkit-scrollbar {
	display: none;
}

.day-pill {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 110px;
	padding: 12px 15px;
	background: var(--bg-card);
	border: 1px solid rgba(192, 164, 123, 0.2);
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.day-pill.active {
	background: var(--accent-gold);
	border-color: var(--accent-gold);
	box-shadow: 0 4px 10px rgba(192, 164, 123, 0.3);
}

.day-pill .day-name {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 2px;
}

.day-pill .day-date {
	font-size: 0.8rem;
	color: var(--text-gray);
}

.day-pill.active .day-name, .day-pill.active .day-date {
	color: var(--bg-main);
}

.agenda-container {
	padding-bottom: 20px;
}

.agenda-block {
	background: var(--bg-card);
	margin-bottom: 20px;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
	border-left: 4px solid var(--accent-gold);
	position: relative;
	overflow: hidden;
}

.agenda-block-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(255,255,255,0.02);
}

.agenda-time-range {
	font-family: 'Inter', sans-serif;
	color: var(--accent-gold);
}

.t-range {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.btn-fav-round {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.05);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-fav-round svg {
	width: 20px;
	height: 20px;
	fill: var(--text-gray);
}

.btn-fav-round.is-fav {
	background: rgba(255, 77, 77, 0.15);
}

.btn-fav-round.is-fav svg {
	fill: #ff4d4d;
}

.agenda-block-body {
	padding: 20px;
}

.agenda-tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--bg-main);
	background: var(--accent-gold);
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 0;
}

.agenda-title {
	margin: 0 0 15px 0;
	font-size: 1.25rem;
	line-height: 1.4;
	color: var(--text-white);
	font-weight: 600;
}

.m-speakers-preview {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 15px;
	margin-bottom: 20px;
	padding-top: 15px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.m-avatars-group {
	display: flex;
	flex-direction: row;
}

.m-avatar-mini {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid var(--bg-card);
	object-fit: cover;
	margin-left: -12px;
	background: var(--bg-main);
}

.m-avatar-mini:first-child {
	margin-left: 0;
}

.m-speakers-names {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

.m-spk-inline-name {
	font-size: 0.9rem;
	color: var(--text-white);
	font-weight: 700;
	line-height: 1.3;
}

.m-spk-inline-comp {
	color: var(--accent-gold);
	font-weight: 600;
	font-size: 0.75rem;
}

.m-avatars-group-vert {
	display: flex;
	flex-direction: column;
}

.m-avatar-mini-vert {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid var(--bg-card);
	object-fit: cover;
	margin-top: -12px;
	background: var(--bg-main);
	position: relative;
}

.m-avatar-mini-vert:first-child {
	margin-top: 0;
}

.btn-agenda-details {
	display: inline-block;
	background: transparent;
	border: 1px solid rgba(192, 164, 123, 0.4);
	color: var(--accent-gold);
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-agenda-details:hover {
	background: rgba(192, 164, 123, 0.1);
	border-color: var(--accent-gold);
}

.modal-speaker-card {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(0,0,0,0.1);
	padding: 12px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.m-spk-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--accent-gold);
	flex-shrink: 0;
	overflow: hidden;
}

.m-spk-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.m-spk-info h4 {
	margin: 0 0 2px 0;
	color: var(--text-white);
	font-size: 1rem;
}

.m-spk-job {
	display: block;
	font-size: 0.8rem;
	color: var(--text-gray);
}

.m-spk-comp {
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	color: var(--accent-gold);
	margin-top: 2px;
}

.agenda-modal-title-box {
	margin-left: 0;
}

.agenda-modal-title-box h3 {
	margin-top: 0;
	margin-bottom: 10px;
}

.agenda-modal-track {
	margin-left: 10px;
	opacity: 0.8;
}

.agenda-modal-desc {
	margin-bottom: 25px;
	line-height: 1.6;
}

.agenda-modal-speakers-title {
	color: var(--accent-gold);
	margin-bottom: 15px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.fav-day-header {
	font-size: 1.1rem;
	color: var(--accent-gold);
	margin: 0 0 15px 0;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(192, 164, 123, 0.2);
}

.empty-favs-msg {
	text-align: center;
	padding: 40px 20px;
}

.empty-favs-msg h3 {
	color: var(--accent-gold);
	margin-bottom: 10px;
}

.empty-favs-msg p {
	color: var(--text-gray);
}

.agenda-time-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.agenda-tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.agenda-format-tag {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text-white);
	background: rgba(255, 255, 255, 0.1);
	padding: 4px 10px;
	border-radius: 6px;
}

.agenda-modal-meta-item {
	color: var(--text-gray);
}

.agenda-full-ribbon {
	background: var(--accent-gold);
	color: var(--bg-main);
	text-align: center;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 6px 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.agenda-level-box {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 5px;
	margin-bottom: 15px;
	background: rgba(255, 255, 255, 0.03);
	padding: 6px 14px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.lvl-label {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lvl-dots {
	display: flex;
	gap: 6px;
}

.lvl-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.lvl-dot.active {
	background: var(--accent-gold);
	transform: scale(1.4);
	box-shadow: 0 0 6px rgba(192, 164, 123, 0.6);
}

.lvl-track {
	display: flex;
	gap: 4px;
}

.lvl-segment {
	width: 14px;
	height: 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	transition: background 0.3s ease;
}

.lvl-segment.active {
	background: var(--accent-gold);
	box-shadow: 0 0 5px rgba(192, 164, 123, 0.5);
}

.agenda-modal-top-badges {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 15px;
	justify-content: center;
}

.agenda-time-badge-modal, .agenda-short-badge-modal {
	display: inline-flex;
	align-items: center;
	background: var(--accent-gold);
	color: var(--bg-main);
	font-size: 0.75rem;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 4px;
	letter-spacing: 1px;
	margin: 0;
	border: none;
}

.agenda-modal-meta-line {
	margin-top: 0;
	margin-bottom: 15px;
	line-height: 1.5;
	color: var(--text-gray);
	font-size: 0.9rem;
}

.agenda-modal-level-spacing .agenda-level-box {
	margin-bottom: 0;
	margin-top: 10px;
}

#agenda-details-modal .modal-content {
	background: #ffffff;
	color: #333333;
}

#agenda-details-modal .modal-close {
	color: #999999;
}

#agenda-details-modal .modal-close:hover {
	color: #333333;
}

#agenda-details-modal .agenda-time-badge-modal {
	color: var(--accent-gold);
	border: 1px solid var(--accent-gold);
	background: transparent;
}

#agenda-details-modal .agenda-modal-title-box h3 {
	color: #111111;
}

#agenda-details-modal .agenda-modal-meta-line {
	color: #777777;
}

#agenda-details-modal .agenda-level-box {
	background: #f5f5f5;
	border: 1px solid #ebebeb;
}

#agenda-details-modal .lvl-label {
	color: #111111;
}

#agenda-details-modal .lvl-dot {
	background: #d5d5d5;
}

#agenda-details-modal .lvl-dot.active {
	background: var(--accent-gold);
}

#agenda-details-modal .agenda-modal-desc {
	color: #444444;
}

#agenda-details-modal .agenda-modal-desc p {
	margin-bottom: 15px;
}

#agenda-details-modal .agenda-modal-desc p:last-child {
	margin-bottom: 0;
}

#agenda-details-modal .agenda-modal-desc strong, #agenda-details-modal .agenda-modal-desc b {
	font-weight: 700;
	color: #222222;
}

#agenda-details-modal .agenda-modal-desc ul, #agenda-details-modal .agenda-modal-desc ol {
	margin-top: 0;
	margin-bottom: 15px;
	margin-left: 0;
	padding-left: 25px;
}

#agenda-details-modal .agenda-modal-desc ul li {
	list-style-type: disc;
	margin-bottom: 6px;
}

#agenda-details-modal .agenda-modal-desc ol li {
	list-style-type: decimal;
	margin-bottom: 6px;
}

#agenda-details-modal .agenda-modal-desc li:last-child {
	margin-bottom: 0;
}

#agenda-details-modal .agenda-modal-speakers-title {
	color: var(--accent-gold);
}

#agenda-details-modal .modal-speaker-card {
	background: #efefef;
}

#agenda-details-modal .m-spk-avatar {
	background: #ffffff;
}

#agenda-details-modal .m-spk-info h4 {
	color: #222222;
}

#agenda-details-modal .m-spk-job {
	color: #6a809c;
}

#agenda-details-modal .m-spk-comp {
	color: var(--accent-gold);
}

#agenda-details-modal .m-spk-role {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 3px;
}

.agenda-action-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}

.btn-rate-agenda {
	background: transparent;
	border: none;
	color: var(--accent-gold);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.2s;
}

.btn-rate-agenda svg {
	width: 14px;
	fill: currentColor;
}

.btn-rate-agenda:hover {
	background: rgba(192, 164, 123, 0.1);
}

.rate-done-text {
	font-size: 0.85rem;
	font-weight: 600;
	color: #10b981;
	display: flex;
	align-items: center;
	gap: 6px;
}

.rate-done-text svg {
	width: 14px;
	fill: currentColor;
}

.rate-subtitle {
	font-size: 0.9rem;
	color: var(--text-gray);
	margin-top: 5px;
}

.rate-q-box {
	margin-bottom: 25px;
}

.rate-q-label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 12px;
}

.rate-input-text, .rate-textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 12px;
	color: var(--text-white);
	font-family: inherit;
	font-size: 0.95rem;
	resize: vertical;
}

.rate-input-text:focus, .rate-textarea:focus {
	border-color: var(--accent-gold);
	outline: none;
}

.rate-radio-group, .rate-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rate-radio-label, .rate-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text-gray);
	font-size: 0.95rem;
	cursor: pointer;
}

.star-rating-group {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
}

.star-rating-group input {
	display: none;
}

.star-rating-group label {
	font-size: 30px;
	color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: color 0.2s;
}

.star-rating-group label:hover, .star-rating-group label:hover ~ label, .star-rating-group input:checked ~ label {
	color: var(--accent-gold);
}

.rate-form-actions {
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

.rate-msg-box {
	margin-top: 15px;
	padding: 10px;
	border-radius: 6px;
	font-size: 0.9rem;
	text-align: center;
}

.rate-msg-box.success {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}

.rate-msg-box.error {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
}

.agenda-rate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 15px;
	padding: 12px;
	background: rgba(192, 164, 123, 0.1);
	border: 1px solid rgba(192, 164, 123, 0.3);
	color: var(--accent-gold);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s;
}

.agenda-rate-btn:hover {
	background: var(--accent-gold);
	color: #fff;
}

.agenda-rate-btn svg {
	width: 16px;
	fill: currentColor;
}

.agenda-rate-done {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: 15px;
	padding: 12px;
	background: rgba(16, 185, 129, 0.05);
	border: 1px dashed rgba(16, 185, 129, 0.3);
	color: #10b981;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
}

.agenda-rate-done svg {
	width: 16px;
	fill: currentColor;
}

.rate-q-box {
	margin-bottom: 25px;
}

.rate-q-label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 12px;
}

.rate-input-text, .rate-textarea {
	width: 100%;
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 12px;
	color: #0f172a;
	font-family: inherit;
	font-size: 0.95rem;
	resize: vertical;
}

.rate-input-text:focus, .rate-textarea:focus {
	border-color: var(--accent-gold);
	outline: none;
	box-shadow: 0 0 0 3px rgba(192, 164, 123, 0.2);
}

.rate-radio-group, .rate-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rate-radio-label, .rate-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #334155;
	font-size: 0.95rem;
	cursor: pointer;
}

.star-rating-group {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
}

.star-rating-group input {
	display: none;
}

.star-rating-group label {
	font-size: 35px;
	color: #e2e8f0;
	cursor: pointer;
	transition: color 0.2s;
}

.star-rating-group label:hover, .star-rating-group label:hover ~ label, .star-rating-group input:checked ~ label {
	color: var(--accent-gold);
}

.rate-form-actions {
	margin-top: 30px;
	border-top: 1px solid #e2e8f0;
	padding-top: 20px;
}

.btn-rate-submit {
	background: var(--accent-gold);
	color: #fff;
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	width: 100%;
	transition: background 0.2s;
}

.btn-rate-submit:hover {
	background: #a88d66;
}

.rate-msg-box {
	margin-top: 15px;
	padding: 10px;
	border-radius: 6px;
	font-size: 0.9rem;
	text-align: center;
}

.rate-msg-box.success {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
}

.rate-msg-box.error {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
}

.rate-time-badge {
	background: transparent!important;
	border: 1px solid var(--accent-gold)!important;
	color: var(--accent-gold)!important;
}

.rate-success-wrapper {
	text-align: center;
	padding: 40px 20px;
}

.rate-success-icon {
	width: 70px;
	fill: #10b981;
	margin-bottom: 20px;
}

.rate-success-title {
	color: #1e293b;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.rate-success-text {
	color: #64748b;
	font-size: 1rem;
}

.rate-req-star {
	color: #ef4444;
	margin-left: 4px;
}

.star-rating-group {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
	position: relative;
}

.star-rating-group input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	padding: 0;
	z-index: -1;
}

#global-modal .modal-content {
	background: #ffffff;
	color: #333333;
}

#global-modal .modal-header h3,  #global-modal .modal-body h3,  #global-modal .modal-body h4 {
	color: #111111;
}

#global-modal .modal-body p, #global-modal .agenda-modal-desc {
	color: #444444;
}

#global-modal .modal-speaker-card {
	background: #efefef;
}

#global-modal .m-spk-info h4 {
	color: #222222!important;
}

#global-modal .m-spk-job {
	color: #6a809c;
}

#global-modal .m-spk-comp {
	color: var(--accent-gold);
}

#global-modal .agenda-modal-meta-line {
	color: #777777;
}

#global-modal .agenda-level-box {
	background: #f5f5f5;
	border: 1px solid #ebebeb;
}

#global-modal .lvl-label {
	color: #111111;
}

#global-modal .lvl-dot {
	background: #d5d5d5;
}

#global-modal .lvl-dot.active {
	background: var(--accent-gold);
}

#global-modal .modal-close {
	color: #999999;
}