/**
 * Profile Page Styles
 */

.profile {
	width: 100%;
	min-height: 100vh;
	padding-bottom: 85px;
	background: #121212;
}

header {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: 60px;
	width: 100%;
	height: 60px;
	background-color: #121212;
	position: sticky;
	top: 0;
	z-index: 10;
}

.profile-options {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 16px;
	gap: 16px;
	margin-top: 30px;
}

.profile-options div {
	width: calc((100% - 16px) / 2);
	height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s ease;
	gap: 12px;
}

.profile-options div:hover {
	transform: translateY(-4px);
}

.profile-options div:nth-child(1) {
	background: linear-gradient(247deg, #ffb171 2.82%, #ff3e3e 97.77%);
}

.profile-options div:nth-child(2) {
	background: linear-gradient(237deg, #c5d6ff 1.05%, #187aca 97.89%);
}

.profile-box {
	width: 100%;
	padding: 0 16px;
	margin-top: 24px;
}

.profile-box .title {
	color: #e5e5e5;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 10px;
}

.menu-list {
	display: flex;
	flex-direction: column;
	padding: 0 15px;
	background-color: #1a1a1a;
	border-radius: 8px;
	margin: 0;
	list-style: none;
}

.menu-list li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 56px;
	cursor: pointer;
	transition: background 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-list li:last-child {
	border-bottom: none;
}

.menu-list li:hover {
	background: rgba(255, 255, 255, 0.05);
}

.menu-list li svg {
	flex-shrink: 0;
}

.menu-list li p {
	flex: 1;
	color: #fff;
	font-size: 16px;
	margin-left: 10px;
}

.menu-list li span {
	color: #8a8a8a;
	font-size: 14px;
}

.menu-list li .arrow {
	opacity: 0.6;
}
