:root {
	/* Catppuccin Mocha Colors */
	--rosewater: #f5e0dc;
	--flamingo: #f2cdcd;
	--pink: #f5c2e7;
	--mauve: #cba6f7;
	--red: #f38ba8;
	--maroon: #eba0ac;
	--peach: #fab387;
	--yellow: #f9e2af;
	--green: #a6e3a1;
	--teal: #94e2d5;
	--sky: #89dceb;
	--sapphire: #74c7ec;
	--blue: #89b4fa;
	--lavender: #b4befe;
	--text: #cdd6f4;
	--subtext1: #bac2de;
	--subtext0: #a6adc8;
	--overlay2: #9399b2;
	--overlay1: #7f849c;
	--overlay0: #6c7086;
	--surface2: #585b70;
	--surface1: #45475a;
	--surface0: #313244;
	--base: #1e1e2e;
	--mantle: #181825;
	--crust: #11111b;

	/* Theme Variables */
	--primary-color: var(--green);
	--secondary-color: var(--teal);
	--background-color: var(--base);
	--card-background: var(--surface0);
	--text-color: var(--text);
	--subtext-color: var(--subtext1);
	--border-color: var(--surface2);
	--border-radius: 12px;
	--box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

header {
	text-align: center;
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 700;
}

main {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dashboard {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.link-card {
	background-color: var(--card-background);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	box-shadow: var(--box-shadow);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	justify-content: flex-start;
}

.link-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(166, 227, 161, 0.1), transparent);
	transition: left 0.5s ease;
}

.link-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-color);
	border-color: var(--primary-color);
	justify-content: center;
	align-items: center;
	text-align: center;
}

.link-card:hover::before {
	left: 100%;
}

.link-card h2 {
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 2rem;
	transition: all 0.3s ease;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.link-card:hover h2 {
	color: var(--primary-color);
	font-size: 3.6rem;
	font-weight: 700;
	margin: 0;
}

.link-card p {
	color: var(--subtext-color);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: 0;
}

.link-card:hover p {
	transition: all 0.3s ease;
	opacity: 100;
	visibility: 100;
	/* display: none !important; */
	/* transform: translateY(-10px); */
}

footer {
	text-align: center;
	margin-top: 2rem;
	color: var(--subtext0);
	font-size: 0.9rem;
	margin-top: auto;
	padding-top: 2rem;
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	.dashboard {
		grid-template-columns: 1fr;
	}

	.link-buttons {
		flex-direction: column;
	}

	h1 {
		font-size: 2rem;
	}
}
