:root {
	--text-color: #1a1a1a;
	--bg-color: #FAFAFA;
	--accent-color: #4F46E5; /* Professional Electric Indigo */
	--nav-height: 80px;
	--transition-speed: 0.8s;
	--ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	cursor: none;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	overflow-x: hidden;
	
	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

a, button, .card, .step-item, .icon-btn, .nav-link, .btn-primary {
	cursor: none !important;
}

/* --- Custom Cursor --- */
.cursor-dot {
	width: 8px;
	height: 8px;
	background-color: var(--accent-color);
}

.cursor-outline {
	width: 40px;
	height: 40px;
	border: 2px solid var(--text-color);
	transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.cursor-dot, .cursor-outline {
	position: fixed;
	top: 0; left: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: 10000;
	pointer-events: none;
	transition: left 0.1s linear, top 0.1s linear, width 0.2s, height 0.2s, background 0.2s;
	mix-blend-mode: exclusion;
}

/* Interactive hover state for cursor */
.cursor-outline.hovering {
	width: 50px;
	height: 50px;
	background-color: rgba(79, 70, 229, 0.1);
	border-color: rgba(79, 70, 229, 0.2);
}

/* --- Navigation Bar --- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	z-index: 1000;
	background-color: transparent;
	transition: background-color var(--transition-speed) var(--ease-luxury),
				box-shadow var(--transition-speed) var(--ease-luxury);
}

/* Nav Items */
.nav-left, .nav-right {
	display: flex;
	align-items: center;
	gap: 24px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.8s ease, transform 0.8s ease; /* Slower animation */
}

/* Hide the duplicate permanent social icons on desktop, they are inside .nav-right normally */
.nav-socials {
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.nav-link {
	text-decoration: none;
	color: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.icon-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	padding: 4px;
	transition: color 0.2s;
}

.icon-btn:hover {
	color: var(--accent-color);
}

/* --- The Brand Name (Gucci/ReTrade Scaled Hero) --- */
.brand-logo {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Montserrat', sans-serif;
	font-size: 16vw; 
	font-weight: 900; 
	letter-spacing: -0.04em;
	color: white;
	white-space: nowrap;
	z-index: 1001;
	transition: all var(--transition-speed) var(--ease-luxury);
	pointer-events: none;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- Hero Section --- */
.hero {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8)),
				url('https://images.unsplash.com/photo-1526583547718-e88dc16de312?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
	background-size: cover;
	background-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* --- Generic Section Styles --- */
.section-container {
	padding: 30px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	text-align: center; 
	margin-bottom: 20px;
}

.section-title {
	font-size: 2.5rem; 
	margin-bottom: 20px; 
	font-weight: 800; 
	line-height: 1.1;
}

.section-subtitle {
	text-transform: uppercase; 
	letter-spacing: 2px; 
	font-size: 0.8rem; 
	margin-bottom: 10px; 
	color: var(--accent-color); 
	font-weight: 700;
}

/* --- Content/Gallery Section --- */
.grid-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 50px;
}

.card {
	background: white;
	height: 400px;
	width: 100%;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card:hover img {
	transform: scale(1.05);
}

.card-content {
	position: relative;
	z-index: 2;
	padding: 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	width: 100%;
	color: white;
}

.card-title {
	font-weight: 700;
	font-size: 1.2rem;
	text-transform: uppercase;
}

.card-loc {
	font-size: 0.875rem;
	opacity: 0.9;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 5px;
}

/* --- How It Works Section / Projects --- */
.bg-light {
	background-color: white;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.step-item {
	padding: 40px;
	border-left: 1px solid #ddd;
	position: relative;
	transition: background-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.step-item:hover {
	background-color: #fafafa;
}

.step-item::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 40px;
	width: 9px;
	height: 9px;
	background: #1a1a1a;
	border-radius: 50%;
	transition: background 0.3s ease, transform 0.3s ease;
}

.step-item:hover::before {
	background: var(--accent-color);
	transform: scale(1.5);
}

.step-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #1a1a1a;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.step-item:hover .step-icon {
	background: var(--accent-color);
	transform: scale(1.1);
}

/* Dynamic Project Card Additions */
.project-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	margin-top: auto; /* Pushes to bottom if descriptions are different lengths */
}

.project-pill {
	background: #F3F4F6;
	color: #4B5563;
	font-family: 'Fira Code', monospace;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 20px;
	font-weight: 600;
	border: 1px solid #E5E7EB;
	transition: border-color 0.2s, color 0.2s;
}

.step-item:hover .project-pill {
	border-color: rgba(79, 70, 229, 0.3);
	color: var(--accent-color);
}

.project-links {
	display: flex;
	gap: 15px;
}

.btn-link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.8rem;
	color: #1a1a1a;
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-bottom-color 0.2s;
}

.btn-link:hover {
	color: var(--accent-color);
	border-bottom-color: var(--accent-color);
}


.spaza-banner {
	background: linear-gradient(135deg, #1a1a1a, #333);
	color: white;
	padding: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

/* --- Safety Section / Stack --- */
.safety-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.safety-card {
	background: #EEECFF; /* Light indigo tint */
	padding: 40px;
	border-radius: 12px;
	border-left: 5px solid var(--accent-color);
}

.safety-list {
	list-style: none;
	margin-top: 20px;
}

.safety-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* --- SCROLLED STATE (GUCCI EFFECT) --- */

body.scrolled header {
	background-color: white;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	border-bottom: 1px solid #eee;
}

body.scrolled .nav-left,
body.scrolled .nav-right,
body.scrolled .nav-socials {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

body.scrolled .nav-link, 
body.scrolled .icon-btn {
	color: #1a1a1a;
}

body.scrolled .brand-logo {
	top: 40px; 
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	font-size: 1.8rem;
	color: var(--accent-color);
	text-shadow: none;
	pointer-events: auto;
	letter-spacing: -0.02em;
}

.scroll-hint {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	animation: bounce 2s infinite;
	background: rgba(0,0,0,0.3);
	padding: 8px 16px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
	40% {transform: translateX(-50%) translateY(-10px);}
	60% {transform: translateX(-50%) translateY(-5px);}
}

/* Specific accent buttons */
.btn-primary {
	background-color: var(--accent-color);
	color: white;
	padding: 8px 16px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.85rem;
	transition: background 0.3s;
}

.btn-primary:hover {
	background-color: #3f38b8;
}

/* --- MASSIVE CTA SECTION --- */
.cta-massive-text {
	font-size: 14vw;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 0.8;
	background: linear-gradient(135deg, #1a1a1a 0%, #4F46E5 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: -40px; /* Force overlap with buttons */
	text-align: center;
	letter-spacing: -0.05em;
	position: relative;
	z-index: 1;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	position: relative;
	z-index: 10;
	flex-wrap: wrap;
}

.btn-pill {
	background: white;
	color: #1a1a1a;
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	font-size: 1rem;
	letter-spacing: 0.5px;
	border: 1px solid #eee;
}

.btn-pill:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.btn-pill-whatsapp {
	background: #25D366;
	color: white;
	border: none;
}

.btn-pill-whatsapp:hover {
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: white;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 80px 40px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s; /* Slower animation */
}

.mobile-menu-overlay.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.mobile-nav-link {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: -1px;
	transition: color 0.3s;
}

.mobile-nav-link:hover {
	color: var(--accent-color);
}

.mobile-close-btn {
	position: absolute;
	top: 25px;
	right: 20px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-color);
	padding: 10px;
}

/* --- NEO4J CYPHER QUERY SIMULATOR --- */
.cypher-query-container {
	width: 100%;
	background: #111827; /* Dark slate terminal bg */
	border-radius: 12px;
	padding: 16px 24px;
	font-family: 'Fira Code', 'Courier New', monospace;
	font-size: 0.95rem;
	color: #D1D5DB;
	display: flex;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-left: 4px solid var(--accent-color);
}

.cypher-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
}

.cypher-keyword {
	color: #3b82f6; /* Blue keywords */
	font-weight: 700;
}

.cypher-string {
	color: #10b981; /* Green quotes */
}

.cypher-bar select, .cypher-bar input {
	background: transparent;
	border: none;
	border-bottom: 1px dashed #4b5563;
	color: #F3F4F6;
	font-family: 'Fira Code', 'Courier New', monospace;
	font-size: 0.95rem;
	padding: 2px 4px;
	outline: none;
	transition: border-color 0.2s;
}

.cypher-bar select:focus, .cypher-bar input:focus {
	border-bottom-color: var(--accent-color);
}

.cypher-bar select option {
	background: #1f2937; /* Dark options */
}

.cypher-run-btn {
	background: var(--accent-color);
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s, transform 0.1s;
}

.cypher-run-btn:hover {
	background: #4338ca;
}
.cypher-run-btn:active {
	transform: scale(0.95);
}

.cypher-reset-btn {
	background: transparent;
	color: #9CA3AF;
	border: 1px solid #4B5563;
	padding: 8px 16px;
	border-radius: 6px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cypher-reset-btn:hover {
	background: #1F2937;
	color: white;
	border-color: #6B7280;
}

/* --- INTERACTIVE D3 GRAPH STACK --- */

.d3-graph-container {
	width: 100%;
	height: 600px;
	background: #ffffff;
	border-radius: 20px;
	border: 3px solid #1a1a1a;
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	margin-top: 10px;
	cursor: grab;
	overflow: hidden;
	position: relative;
	touch-action: none; /* Critical for D3 mobile pan/zoom gestures */
}

/* Hidden by default on desktop */
.mobile-scroll-hint {
	display: none;
}

.d3-graph-container:active {
	cursor: grabbing;
}

/* Base style for nodes representing skills */
.node-circle {
	stroke: #fff;
	stroke-width: 2px;
	transition: filter 0.2s, stroke-width 0.2s;
}

.node-circle:hover {
	filter: brightness(1.2);
	stroke: var(--accent-color);
	stroke-width: 4px;
}

.node-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	fill: var(--text-color);
	pointer-events: none;
	text-shadow: 
		0px 1px 3px rgba(255,255,255,0.8),
		0px -1px 3px rgba(255,255,255,0.8),
		1px 0px 3px rgba(255,255,255,0.8),
		-1px 0px 3px rgba(255,255,255,0.8);
}

.link-line {
	stroke: rgba(79, 70, 229, 0.2);
	stroke-width: 1.5px;
}

/* --- SKILL MODAL --- */
.skill-modal-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.skill-modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.skill-modal-card {
	background: #fff;
	width: 90%;
	max-width: 450px;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
	transform: translateY(20px) scale(0.95);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	border: 1px solid rgba(79, 70, 229, 0.1);
}

.skill-modal-overlay.active .skill-modal-card {
	transform: translateY(0) scale(1);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	transition: color 0.2s;
}

.modal-close:hover {
	color: var(--accent-color);
}

.modal-title {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 5px;
	color: var(--text-color);
}

.modal-category {
	font-size: 0.85rem;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
}

.modal-divider {
	height: 2px;
	width: 40px;
	background: var(--accent-color);
	margin: 20px 0;
}

.modal-context {
	color: #555;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* --- SQL RELATIONAL TABLES --- */

.sql-query-container {
	width: 100%;
	background: #111827;
	border-radius: 12px;
	padding: 16px 24px;
	font-family: 'Fira Code', 'Courier New', monospace;
	font-size: 0.95rem;
	color: #D1D5DB;
	display: flex;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-left: 4px solid #10b981; /* Green to distinguish from Cypher */
}

.sql-tables-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.sql-table-wrapper {
	width: 100%;
	overflow-x: auto;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	border-radius: 8px;
	border: 1px solid #E5E7EB;
}

.sql-table-wrapper h3 {
	margin: 0;
	padding: 12px 20px;
	background: #F3F4F6;
	border-bottom: 1px solid #E5E7EB;
	font-family: 'Fira Code', monospace;
	font-size: 1rem;
	color: #374151;
	display: flex;
	gap: 8px;
	align-items: center;
}

.styled-sql-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	font-family: 'Inter', sans-serif;
}

.styled-sql-table th {
	background-color: #F9FAFB;
	color: #6B7280;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 12px 20px;
	text-align: left;
	border-bottom: 2px solid #E5E7EB;
}

.styled-sql-table td {
	padding: 16px 20px;
	vertical-align: top;
	border-bottom: 1px solid #E5E7EB;
	color: #1F2937;
	font-size: 0.9rem;
}

.styled-sql-table tr:last-child td {
	border-bottom: none;
}

.styled-sql-table tr:hover {
	background-color: #F9FAFB;
}

.pk-col { font-family: 'Fira Code', monospace; color: var(--accent-color); font-weight: 600; }
.fk-col { font-family: 'Fira Code', monospace; color: #10b981; }
.name-col { font-weight: 600; }
.context-col { color: #4B5563; line-height: 1.5; }

/* --- Responsive Layouts (Tablet & Mobile) --- */

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
	:root { --nav-height: 70px; }
	.brand-logo { font-size: 14vw; }
	header { padding: 0 25px; }
	.section-container { padding: 80px 30px; }
	.grid-gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.steps-grid { gap: 20px; }
}

/* Mobile (Max 768px) - Overrides and Enhancements */
@media (max-width: 768px) {
	:root { --nav-height: 60px; }
	
	.brand-logo {
		font-size: 20vw;
	}
	
	header {
		padding: 0 15px;
	}
	
	.nav-left {
		display: none;
	}
	
	.nav-right {
		margin-left: auto;
		gap: 12px;
	}
	
	/* Show the permanent social icons on mobile, keeping them left */
	.nav-socials {
		display: flex !important;
	}

	/* Hide text in right nav, keep icons */
	.nav-right .icon-btn span {
		display: none;
	}

	/* Fix for Overlap: Hide 'Connect' button on mobile header */
	.btn-primary {
		display: none;
	}
	
	/* Enhanced Mobile Layout */
	.grid-gallery {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.steps-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.safety-grid {
		grid-template-columns: 1fr;
	}
	
	.card {
		height: 320px;
	}
	
	/* Disable custom cursor artifacts on touch screens entirely */
	.cursor-dot, .cursor-outline {
		display: none !important;
	}
	
	.spaza-banner {
		flex-direction: column;
		text-align: center;
	}

	/* Typography Adjustments */
	h2 { font-size: 2rem !important; }
	p { font-size: 0.95rem; line-height: 1.5; }

	/* Graph Mobile Container Constraints */
	.d3-graph-container {
		height: 450px;
		border: 2px solid #1a1a1a;
		box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	}
	
	.mobile-scroll-hint {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		margin-top: 15px;
		font-size: 0.8rem;
		color: #6B7280;
		font-weight: 600;
	}
	
	/* Scrolled State Adjustment */
	body.scrolled .brand-logo { 
		top: 30px; 
		font-size: 1.2rem;
	}
	
	@media (max-width: 768px) {
		body.scrolled .brand-logo {
			font-size: 1.4rem;
			letter-spacing: -0.02em;
		}
	}
	
	.scroll-hint { font-size: 0.7rem; bottom: 80px; }
}