:root {
	--bg-dark: #0f172a;
	--glass: rgba(255, 255, 255, 0.05);
	--accent: #38bdf8;
	--text-main: #f8fafc;
}

body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-dark);
	font-family: 'Inter', sans-serif;
	color: var(--text-main);
	overflow: hidden;
}

a {
	color: var(--text-main);
	font-weight: bold;
}

a:hover {
	color: #cccccc;
	font-weight: bold;
}

a:active {
	color: #8c8c8c;
	font-weight: bold;
}

#wheel-container {
	position: relative;
	width: 600px;
	height: 600px;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#wheel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.segment {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	background: var(--glass);
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}

.segment:hover {
	background: rgba(56, 189, 248, 0.2);
	transform: scale(1.02);
}

#wheel-center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 220px;
	height: 220px;
	background: var(--bg-dark);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--accent);
	box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
	z-index: 10;
}

#content-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

#content-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.overlay-card {
	background: var(--glass);
	padding: 3rem;
	border-radius: 10px;
	max-width: 800px;
	width: 90%;
	border: 1px solid rgba(255,255,255,0.1);
	transform: translateY(20px);
	transition: transform 0.5s ease;
}

#content-overlay.active .overlay-card {
	transform: translateY(0);
}

.hidden { display: none; }
.wheel-shrink { transform: scale(0.8); opacity: 0; }

.close-btn {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
	padding: 0.6rem 1.2rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	border-radius: 4px; /* Slight round for a modern feel */
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 100;
}

.close-btn:hover {
	background: var(--accent);
	color: var(--bg-dark);
	box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
	transform: translateY(-2px);
}

.close-btn:active {
	transform: translateY(0);
	box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.close-btn::after {
	content: '[ESC]';
	font-size: 0.6rem;
	opacity: 0.5;
	margin-left: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px; /* Keeps the form from getting too wide */
    margin: 2rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #007bff; /* Change to your brand color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}