.submit-btn {
	width: 100%;
	background: #1e1e1e;
	color: #ffffff;
	border: 4px solid #1e1e1e;
	padding: 1.5rem;
	font-family: 'Archivo Black', sans-serif;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.submit-btn:hover {
	background: #ff7043;
	color: #1e1e1e;
	transform: translate(-4px, -4px);
	box-shadow: 8px 8px 0px #7e57c2;
}

/* Role Cards */
.role-card {
	background: #ffffff;
	border: 3px solid #1e1e1e;
	box-shadow: 6px 6px 0px #7e57c2;
	padding: 2rem;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	position: relative;
	overflow: hidden;
}

.role-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #ff7043;
	transition: left 0.3s ease;
	z-index: 0;
}

.role-card:hover::before {
	left: 0;
}

.role-card:hover {
	transform: translate(-6px, -6px) rotate(-1deg);
	box-shadow: 12px 12px 0px #1e1e1e;
}

.role-card > * {
	position: relative;
	z-index: 1;
}

.role-card:hover > * {
	color: #1e1e1e !important;
}

.role-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
	color: #1e1e1e;
}

.role-card h3 {
	color: #1e1e1e !important;
}

.role-card p {
	color: #1e1e1e !important;
}

/* Warning Box */
.warning-box {
	background: #ff7043;
	border: 4px solid #1e1e1e;
	box-shadow: 8px 8px 0px #1e1e1e;
	padding: 2rem;
	position: relative;
	transform: rotate(-1deg);
}

.warning-box::before {
	content: '⚠';
	position: absolute;
	top: -20px;
	left: 20px;
	background: #1e1e1e;
	color: #ff7043;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
}

.warning-box h3 {
	color: #1e1e1e !important;
}

.warning-box ul {
	color: #1e1e1e !important;
}

/* Terminal Text */
.terminal-text {
	font-family: 'Space Mono', monospace;
	color: #ff7043;
}

.terminal-text::before {
	content: '>';
	margin-right: 0.5rem;
	color: #7e57c2;
}

/* Form Section Visibility */
.form-section {
	display: none;
}

.form-section.active {
	display: block;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(30, 30, 30, 0.95);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal.show {
	display: flex;
}