/**
 * @The11View
 * Licensed Pages / Bio Links
 * -------------------------------------------------------------
 * Terms: https://the11view.xyz/legal/tos
 *
 * Redistribution or self-crediting is not allowed.
 * Automated enforcement is active.
 *
 * Module Map:
 *   views-badges       https://t11v.icu/dropper/codes/css/views-badges.css
 *   theme-bg-controls   https://t11v.icu/dropper/codes/css/theme-bg-controls.css
 *   profile             https://t11v.icu/dropper/codes/css/profile.css
 *   activity-music      https://t11v.icu/dropper/codes/css/activity-music.css
 *   server-join         https://t11v.icu/dropper/codes/css/server-join.css
 *   notification-loading https://t11v.icu/dropper/codes/css/notification-loading.css
 *   media-queries       https://t11v.icu/dropper/codes/css/media-queries.css
 * -------------------------------------------------------------
 */
body,
body.autumn-theme span,
body.light-theme span,
body.spring-theme span,
body.summer-theme span {
	color: #fff
}

.aurora-bg,
.background-container,
.overlay {
	left: 0;
	width: 100%;
	height: 100%
}

.badge:hover,
.bg-btn:hover,
.theme-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .5)
}

.activity-progress,
.album-cover,
.aurora-bg,
.background-container,
.card,
.dropdown-content,
.join-button,
.progress-bar,
.volume-slider,
body {
	overflow: hidden
}

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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #000;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	transition: background .5s
}

:root {
	--bg-primary: #000;
	--bg-secondary: rgba(10, 10, 20, 0.7);
	--bg-card: rgba(10, 10, 20, 0.6);
	--text-primary: #fff;
	--text-secondary: #aaa;
	--accent: #5865f2;
	--accent-hover: #4752c4;
	--border: rgba(255, 255, 255, 0.08);
	--border-hover: rgba(255, 255, 255, 0.15);
	--notification-bg: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(71, 82, 196, 0.2));
	--notification-border: rgba(88, 101, 242, 0.5)
}

body.light-theme {
	--bg-primary: #f5f5f5;
	--bg-secondary: rgba(255, 255, 255, 0.7);
	--bg-card: rgba(255, 255, 255, 0.8);
	--text-primary: #333;
	--text-secondary: #666;
	--accent: #4361ee;
	--accent-hover: #3a56d4;
	--border: rgba(0, 0, 0, 0.08);
	--border-hover: rgba(0, 0, 0, 0.15);
	--notification-bg: linear-gradient(135deg, rgba(67, 97, 238, 0.3), rgba(58, 86, 212, 0.2));
	--notification-border: rgba(67, 97, 238, 0.5)
}

body.spring-theme {
	--bg-primary: #f0fff4;
	--bg-secondary: rgba(230, 255, 230, 0.7);
	--bg-card: rgba(230, 255, 230, 0.8);
	--text-primary: #2d5016;
	--text-secondary: #4a7c2e;
	--accent: #4caf50;
	--accent-hover: #388e3c;
	--border: rgba(76, 175, 80, 0.2);
	--border-hover: rgba(76, 175, 80, 0.3);
	--notification-bg: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(56, 142, 60, 0.2));
	--notification-border: rgba(76, 175, 80, 0.5)
}

body.summer-theme {
	--bg-primary: #fff8e1;
	--bg-secondary: rgba(255, 248, 225, 0.7);
	--bg-card: rgba(255, 248, 225, 0.8);
	--text-primary: #5d4037;
	--text-secondary: #8d6e63;
	--accent: #ff9800;
	--accent-hover: #f57c00;
	--border: rgba(255, 152, 0, 0.2);
	--border-hover: rgba(255, 152, 0, 0.3);
	--notification-bg: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(245, 124, 0, 0.2));
	--notification-border: rgba(255, 152, 0, 0.5)
}

body.autumn-theme {
	--bg-primary: #fff3e0;
	--bg-secondary: rgba(255, 243, 224, 0.7);
	--bg-card: rgba(255, 243, 224, 0.8);
	--text-primary: #4e342e;
	--text-secondary: #795548;
	--accent: #ff5722;
	--accent-hover: #e64a19;
	--border: rgba(255, 87, 34, 0.2);
	--border-hover: rgba(255, 87, 34, 0.3);
	--notification-bg: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(230, 74, 25, 0.2));
	--notification-border: rgba(255, 87, 34, 0.5)
}

body.winter-theme {
	--bg-primary: #e3f2fd;
	--bg-secondary: rgba(227, 242, 253, 0.7);
	--bg-card: rgba(227, 242, 253, 0.8);
	--text-primary: #263238;
	--text-secondary: #455a64;
	--accent: #03a9f4;
	--accent-hover: #0288d1;
	--border: rgba(3, 169, 244, 0.2);
	--border-hover: rgba(3, 169, 244, 0.3);
	--notification-bg: linear-gradient(135deg, rgba(3, 169, 244, 0.3), rgba(2, 136, 209, 0.2));
	--notification-border: rgba(3, 169, 244, 0.5)
}

body.winter-theme span {
	color: #f0fff4
}

.overlay {
	position: fixed;
	top: 0;
	background: rgba(0, 0, 0, .9);
	backdrop-filter: blur(30px);
	z-index: 2000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity .5s;
	cursor: pointer
}

.overlay.hidden {
	opacity: 0;
	pointer-events: none
}

.overlay h1 {
	font-size: 4rem;
	margin-bottom: 20px;
	text-align: center;
	background: linear-gradient(45deg, var(--accent), var(--accent-hover));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 15px rgba(88, 101, 242, .5);
	font-weight: 700;
	letter-spacing: 2px
}

.overlay p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	text-align: center;
	text-transform: none;
	font-weight: 300
}

.background-container {
	position: fixed;
	top: 0;
	z-index: 0;
	pointer-events: none
}

.aurora,
.aurora-bg,
.snow {
	position: absolute
}

.snow {
	top: -10px;
	background: #fff;
	border-radius: 50%;
	user-select: none;
	pointer-events: none;
	z-index: 1;
	animation-name: snowfall;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	box-shadow: 0 0 5px rgba(255, 255, 255, .3)
}

@keyframes snowfall {
	0% {
		transform: translateY(-100px) rotate(0);
		opacity: 1
	}

	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0
	}
}

.aurora-bg {
	top: 0;
	background: linear-gradient(to bottom, #000428, #004e92)
}

.aurora {
	width: 200%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(0, 255, 255, .1) 0, transparent 70%);
	animation: 20s ease-in-out infinite aurora-move
}

.galaxy-bg,
.geometric-bg,
.nebula-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute
}

.aurora:nth-child(2) {
	background: radial-gradient(ellipse at center, rgba(255, 0, 255, .1) 0, transparent 70%);
	animation-delay: -5s
}

.aurora:nth-child(3) {
	background: radial-gradient(ellipse at center, rgba(0, 255, 0, .1) 0, transparent 70%);
	animation-delay: -10s
}

@keyframes aurora-move {

	0%,
	100% {
		transform: translate(-50%, -50%) rotate(0)
	}

	33% {
		transform: translate(-30%, -70%) rotate(120deg)
	}

	66% {
		transform: translate(-70%, -30%) rotate(240deg)
	}
}

.nebula-bg {
	background: radial-gradient(ellipse at center, #1a1a2e 0, #16213e 50%, #0f0f23 100%)
}

.nebula-cloud {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	opacity: .6;
	animation: 30s ease-in-out infinite nebula-float
}

@keyframes nebula-float {

	0%,
	100% {
		transform: translate(0, 0) scale(1)
	}

	50% {
		transform: translate(30px, -30px) scale(1.1)
	}
}

.geometric-bg {
	background: linear-gradient(135deg, #667eea 0, #764ba2 100%)
}

.geometric-shape {
	position: absolute;
	border: 2px solid rgba(255, 255, 255, .1);
	animation: 20s linear infinite geometric-rotate
}

@keyframes geometric-rotate {
	to {
		transform: rotate(360deg)
	}
}

.galaxy-bg {
	background: radial-gradient(ellipse at center, #1b2735 0, #090a0f 100%)
}

.badge,
.bg-btn,
.theme-btn {
	width: 45px;
	height: 45px;
	backdrop-filter: blur(10px);
	cursor: pointer
}

.star {
	position: absolute;
	background: #fff;
	border-radius: 50%;
	animation: 3s ease-in-out infinite twinkle
}

.badges-container,
.views-container {
	position: fixed;
	top: 20px;
	z-index: 100;
	display: flex
}

@keyframes twinkle {

	0%,
	100% {
		opacity: .3;
		transform: scale(1)
	}

	50% {
		opacity: 1;
		transform: scale(1.2)
	}
}

.views-container {
	left: 20px;
	align-items: center;
	gap: 10px;
	background: var(--bg-secondary);
	backdrop-filter: blur(10px);
	padding: 10px 15px;
	border-radius: 30px;
	border: 1px solid var(--border)
}

.views-container i {
	color: var(--accent)
}

.views-count {
	font-weight: 700;
	font-size: 16px;
	color: var(--text-primary)
}

.badges-container {
	right: 20px;
	gap: 15px
}

.badge {
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(30, 30, 50, .9), rgba(20, 20, 40, .8));
	border: 1px solid var(--border-hover);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
	position: relative
}

.bg-controls,
.theme-switcher {
	flex-direction: column;
	gap: 10px
}

.badge-tooltip,
.profile-badge .badge-tooltip {
	left: 50%;
	white-space: nowrap;
	pointer-events: none;
	transition: opacity .3s
}

.badge:hover {
	background: linear-gradient(135deg, rgba(40, 40, 70, .9), rgba(30, 30, 60, .8))
}

.badge i {
	font-size: 1.2rem;
	background: linear-gradient(45deg, var(--accent), var(--accent-hover));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}

.badge-tooltip {
	position: absolute;
	bottom: -40px;
	transform: translateX(-50%);
	background: linear-gradient(135deg, rgba(30, 30, 50, .95), rgba(20, 20, 40, .9));
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	opacity: 0;
	z-index: 10;
	border: 1px solid var(--border);
	box-shadow: 0 4px 8px rgba(0, 0, 0, .3)
}

.badge:hover .badge-tooltip,
.profile-badge:hover .badge-tooltip {
	opacity: 1
}

.theme-switcher {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	z-index: 100
}

.bg-btn,
.theme-btn {
	border-radius: 50%;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
	color: var(--text-primary)
}

.bg-btn:hover,
.theme-btn:hover {
	background: var(--bg-card)
}

.bg-dropdown,
.theme-dropdown {
	position: absolute;
	bottom: 60px;
	right: 0;
	background: var(--bg-card);
	backdrop-filter: blur(10px);
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, .3);
	z-index: 100;
	min-width: 150px;
	border: 1px solid var(--border);
	display: none;
	overflow: hidden
}

.bg-controls,
.greeting {
	position: fixed;
	z-index: 100
}

.bg-dropdown.show,
.dropdown-content.show,
.theme-dropdown.show {
	display: block
}

.bg-option,
.theme-option {
	padding: 10px 15px;
	cursor: pointer;
	transition: background .2s;
	border-bottom: 1px solid var(--border);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 10px
}

.bg-option:last-child,
.dropdown-item:last-child,
.theme-option:last-child {
	border-bottom: none
}

.bg-option:hover,
.dropdown-item:hover,
.theme-option:hover {
	background: rgba(88, 101, 242, .2)
}

.bg-option.active,
.dropdown-item.active,
.theme-option.active {
	background: rgba(88, 101, 242, .3);
	color: var(--accent)
}

.bg-controls {
	bottom: 80px;
	right: 20px;
	display: flex
}

.greeting {
	top: 80px;
	left: 20px;
	font-size: 18px;
	color: var(--text-primary);
	opacity: 0;
	animation: 1s forwards fadeIn
}

.banner,
.card,
.profile-section {
	position: relative
}

@keyframes fadeIn {
	to {
		opacity: 1
	}
}

.main-container {
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
	max-width: 550px;
	padding: 15px;
	margin: 0 auto
}

.card {
	width: 100%;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
	border: 1px solid var(--border);
	transition: transform .3s;
	cursor: move
}

.banner,
.profile-badge {
	background-size: cover;
	background-position: center
}

.card.dragging,
.discord-server.dragging,
.music-player.dragging {
	opacity: .5;
	transform: scale(1.05)
}

.card.drag-over,
.discord-server.drag-over,
.music-player.drag-over {
	border: 2px dashed var(--accent)
}

.card:hover,
.discord-server:hover,
.music-player:hover {
	transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .6)
}

.banner {
	height: 140px;
	background-image: url('https://t11v.icu/host/b3e9fa0e-0551-4163-89ee-ebbb6f75b504.png');
	border-radius: 15px 15px 0 0
}

.profile-section {
	display: flex;
	align-items: flex-end;
	margin: -50px 20px 20px;
	z-index: 2
}

.profile-pic-container {
	position: relative;
	margin-right: 15px
}

.profile-pic {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 3px solid var(--bg-primary);
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .6)
}

.status-indicator {
	position: absolute;
	bottom: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 3px solid var(--bg-primary);
	z-index: 2;
	box-shadow: 0 0 8px rgba(0, 0, 0, .5)
}

.online {
	background-color: #43b581
}

.idle {
	background-color: #faa61a
}

.dnd {
	background-color: #f04747
}

.offline {
	background-color: #747f8d
}

.profile-info h2 {
	font-size: 26px;
	margin-bottom: 5px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, .3);
	background: linear-gradient(45deg, var(--accent), var(--accent-hover), #f0f);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: 3s infinite gradient;
	background-size: 200% 200%
}

@keyframes gradient {

	0%,
	100% {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}
}

.profile-info .username {
	color: var(--text-secondary);
	font-size: 16px;
	margin-bottom: 8px
}

.profile-badges {
	display: flex;
	gap: 6px;
	margin-top: 5px;
	flex-wrap: wrap
}

.profile-badge {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
	border: 1px solid var(--border)
}

.profile-badge .badge-tooltip {
	position: absolute;
	bottom: -30px;
	transform: translateX(-50%);
	background: linear-gradient(135deg, rgba(30, 30, 50, .95), rgba(20, 20, 40, .9));
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	opacity: 0;
	z-index: 10;
	border: 1px solid var(--border);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3)
}

.owner-badge {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 215, 0, .2), rgba(255, 140, 0, .2));
	border: 1px solid rgba(255, 215, 0, .5);
	border-radius: 12px;
	padding: 3px 8px;
	margin-left: 8px;
	font-size: 12px;
	color: gold;
	box-shadow: 0 0 10px rgba(255, 215, 0, .3)
}

.activity-container,
.social-link {
	background: rgba(255, 255, 255, .05)
}

.owner-badge i {
	margin-right: 4px;
	color: gold
}

.profile-title {
	text-align: center;
	margin: 0 20px 25px;
	color: var(--text-secondary);
	font-size: 16px
}

.activity-song-name,
.activity-title,
.social-link {
	color: var(--text-primary)
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 0 20px 25px
}

.social-link {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	transition: .3s;
	cursor: pointer;
	text-decoration: none
}

.social-link:hover {
	background: rgba(255, 255, 255, .1);
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.activity-container {
	margin: 0 20px 20px;
	padding: 15px;
	border-radius: 15px;
	border: 1px solid var(--border)
}

.activity-details,
.activity-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px
}

.activity-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center
}

.activity-title {
	font-weight: 700;
	font-size: 14px
}

.activity-album-cover {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	margin-right: 12px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .3)
}

.activity-song-info {
	flex: 1
}

.activity-song-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px
}

.activity-artist-name,
.activity-time,
.album-cover,
.dropdown-btn {
	color: var(--text-secondary)
}

.activity-artist-name {
	font-size: 14px
}

.activity-progress {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, .1);
	border-radius: 3px;
	margin-bottom: 5px;
	display: none
}

.activity-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--accent-hover));
	width: 30%;
	border-radius: 3px
}

.activity-time {
	justify-content: space-between;
	font-size: 12px;
	display: none
}

.music-player {
	width: 100%;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
	position: relative;
	border: 1px solid var(--border);
	transition: transform .3s;
	cursor: move
}

.music-info {
	display: flex;
	align-items: center;
	margin-bottom: 20px
}

.album-cover {
	width: 70px;
	height: 70px;
	border-radius: 12px;
	margin-right: 15px;
	background: rgba(255, 255, 255, .05);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
	cursor: pointer;
	transition: .3s
}

.album-cover:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .4)
}

.control-btn:hover,
.volume-icon:hover {
	transform: scale(1.1)
}

.album-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px
}

.song-details {
	flex: 1;
	display: flex;
	flex-direction: column
}

.song-header {
	display: flex;
	align-items: center;
	margin-bottom: 5px
}

.controls,
.progress-container {
	margin-bottom: 15px
}

.song-dropdown {
	position: relative;
	margin-left: 10px
}

.dropdown-btn {
	background: 0 0;
	border: none;
	cursor: pointer;
	font-size: 16px;
	transition: color .3s
}

.dropdown-btn:hover,
.dropdown-item {
	color: var(--text-primary)
}

.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--bg-card);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, .3);
	z-index: 100;
	min-width: 200px;
	border: 1px solid var(--border);
	display: none
}

.dropdown-item {
	padding: 10px 15px;
	cursor: pointer;
	transition: background .2s;
	border-bottom: 1px solid var(--border)
}

.control-btn,
.volume-icon {
	transition: .2s;
	cursor: pointer
}

.server-details h3,
.song-details h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--text-primary)
}

.server-details p,
.song-details p {
	color: var(--text-secondary);
	font-size: 16px
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, .1);
	border-radius: 4px;
	cursor: pointer;
	position: relative
}

.progress {
	height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--accent-hover));
	width: 30%;
	border-radius: 4px
}

.time-info {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 5px
}

.control-btn,
.join-button,
.notification,
.volume-icon {
	color: var(--text-primary)
}

.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px
}

.control-btn {
	background: 0 0;
	border: none;
	font-size: 20px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.control-btn:hover {
	background: rgba(255, 255, 255, .1)
}

.play-btn {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, rgba(88, 101, 242, .3), rgba(71, 82, 196, .2));
	border: 1px solid rgba(88, 101, 242, .5);
	font-size: 22px
}

.play-btn:hover {
	background: linear-gradient(135deg, rgba(88, 101, 242, .4), rgba(71, 82, 196, .3))
}

.volume-container {
	display: flex;
	align-items: center;
	gap: 10px
}

.volume-slider {
	flex: 1;
	height: 6px;
	background: rgba(255, 255, 255, .1);
	border-radius: 3px;
	cursor: pointer;
	position: relative
}

.discord-server,
.server-info {
	display: flex;
	align-items: center
}

.volume-level {
	height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--accent-hover));
	width: 70%;
	border-radius: 3px
}

.discord-server {
	width: 100%;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
	position: relative;
	border: 1px solid var(--border);
	justify-content: space-between;
	transition: transform .3s;
	cursor: move
}

.join-button,
.server-icon {
	background: linear-gradient(135deg, rgba(88, 101, 242, .3), rgba(71, 82, 196, .2));
	align-items: center;
	display: flex
}

.server-icon {
	width: 70px;
	height: 70px;
	border-radius: 15px;
	margin-right: 15px;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .3)
}

.join-button {
	border: 1px solid rgba(88, 101, 242, .5);
	padding: 14px 28px;
	border-radius: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: .35s;
	gap: 12px;
	text-decoration: none;
	position: relative
}

.join-button i {
	transition: color .35s
}

.join-button:hover {
	background: linear-gradient(135deg, rgba(88, 101, 242, .55), rgba(71, 82, 196, .4));
	box-shadow: 0 12px 28px rgba(88, 101, 242, .35)
}

.join-button:hover i {
	color: #5865f2;
	animation: 2s ease-in-out infinite floatIcon
}

@keyframes floatIcon {

	0%,
	100%,
	50% {
		transform: translateX(0) rotate(0)
	}

	25% {
		transform: translateX(4px) rotate(8deg)
	}

	75% {
		transform: translateX(-4px) rotate(-8deg)
	}
}

.notification {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(-100px);
	background: var(--notification-bg);
	backdrop-filter: blur(10px);
	padding: 15px 25px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
	z-index: 1000;
	transition: transform .3s;
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--notification-border)
}

.notification.show {
	transform: translateX(-50%) translateY(0)
}

.loading-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	border-top-color: var(--accent);
	animation: 1s ease-in-out infinite spin
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

.error-message {
	color: #f04747;
	background: rgba(240, 71, 71, .1);
	padding: 10px;
	border-radius: 8px;
	margin-top: 10px;
	display: none
}

@media (max-width:768px) {
	body {
		padding: 10px
	}

	.main-container {
		padding: 10px;
		max-width: 100%
	}

	.profile-section {
		flex-direction: column;
		align-items: center;
		text-align: center
	}

	.activity-album-cover,
	.profile-pic-container,
	.server-icon {
		margin-right: 0;
		margin-bottom: 10px
	}

	.social-links {
		flex-wrap: wrap
	}

	.activity-details,
	.server-info {
		flex-direction: column;
		text-align: center
	}

	.volume-slider {
		max-width: 80px
	}
}
