body {
	font-family: var(--font-body);
	background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-middle) 50%, var(--bg-gradient-end) 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-primary);
	position: relative;
	overflow-x: hidden;
}

.linktree-container {
	max-width: 600px;
	width: 90%;
	padding: 60px 40px;
	position: relative;
	z-index: 2;
}

/* Header */
.linktree-header {
	text-align: center;
	margin-bottom: 50px;
}

.linktree-character-name {
	font-family: var(--font-header);
	font-size: 48px;
	font-weight: 700;
	color: var(--theme-primary);
	text-transform: uppercase;
	letter-spacing: 8px;
	text-shadow: 0 0 30px var(--theme-primary-glow);
	margin-bottom: 15px;
	line-height: 1.2;
}

.linktree-character-subtitle {
	font-family: var(--font-body);
	font-size: 18px;
	color: var(--text-secondary);
	font-style: italic;
	letter-spacing: 2px;
}

.linktree-content-divider {
	width: 150px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--theme-primary), transparent);
	margin: 25px auto;
}

/* Links */
.linktree-links-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.linktree-link-card {
	background: var(--overlay-dark);
	border: 2px solid var(--shadow-intense);
	padding: 25px 30px;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(var(--blur-strength));
}

.linktree-link-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--overlay-banner), transparent);
	transition: left 0.5s ease;
}

.linktree-link-card:hover {
	transform: translateY(-5px);
	border-color: var(--theme-primary);
	box-shadow: 0 10px 30px var(--border-primary);
}

.linktree-link-card:hover::before {
	left: 100%;
}

.linktree-link-title {
	font-family: var(--font-header);
	font-size: 18px;
	color: var(--theme-primary);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.linktree-link-description {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--text-secondary);
	position: relative;
	z-index: 1;
}

/* Footer */
.linktree-footer {
	text-align: center;
	margin-top: 50px;
}

.linktree-footer-tagline {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--text-muted);
	font-style: italic;
	margin-bottom: 20px;
}

.linktree-contact-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.linktree-info-value {
	font-size: 14px;
	color: var(--text-primary);
	letter-spacing: 1px;
}

.linktree-info-value a {
	color: var(--theme-primary);
	text-decoration: none;
	transition: color 0.3s;
}

.linktree-info-value a:hover {
	color: var(--theme-primary-light);
}

/* Social icons (optional) */
.linktree-social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.linktree-social-link {
	width: 40px;
	height: 40px;
	background: var(--overlay-dark);
	border: 2px solid var(--border-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--theme-primary);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.linktree-social-link:hover {
	border-color: var(--theme-primary);
	background: var(--border-accent);
	transform: translateY(-3px);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px; 
  height: 34px; 
}

/* Hide the default checkbox */
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Style the slider (the track) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-dark);
  transition: 0.4s; /* Smooth transition for background color and thumb movement */
  border-radius: 34px; /* Rounded corners for the track */
}

/* Style the slider's "thumb" */
.slider::before {
  position: absolute;
  content: "";
  height: 26px; 
  width: 26px; 
  left: 4px; 
  bottom: 4px;
  background-color: white; 
  transition: 0.4s; 
  border-radius: 50%; 
}

/* Change background color when checked */
.toggle-switch input:checked + .slider {
  background-color: var(--theme-primary); 
}

/* Move the thumb when checked */
.toggle-switch input:checked + .slider::before {
  transform: translateX(26px); /* Move thumb to the right */
}

/* Responsive */
@media (max-width: 600px) {
	.linktree-character-name {
		font-size: 36px;
		letter-spacing: 4px;
	}

	.linktree-container {
		padding: 40px 20px;
	}

	.linktree-link-card {
		padding: 20px 25px;
	}

	.linktree-link-title {
		font-size: 16px;
		letter-spacing: 2px;
	}
}