@media screen and (max-width: 1024px) {
	.container {
		max-width: 100%;
		padding: 0 16px 60px 16px;
	}

	.cards-wrapper {
		gap: 20px;
	}

	.column-left,
	.column-right {
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.hero-section {
		height: 380px;
		margin-bottom: 30px;
	}

	.star-avatar-container {
		width: 220px;
		height: 220px;
	}
	.avatar-img-top {
		transform: translateY(-12px) scale(1.15);
	}

	.container {
		margin-top: -20px;
	}

	.cards-wrapper {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.card-about-me 	{ order: 1; }
	.card-projects 	{ order: 2; }
	.card-links    	{ order: 3; }
	.card-listening	{ order: 4; }
	.card-apps     	{ order: 5; }
	.card-gaming   	{ order: 6; }

	.column-left,
	.column-right {
		display: contents;
		gap: 16px;
		width: 100%;
	}

	.card-about-me::after,
	.card-image-overlay {
		display: none !important;
	}

	.card-about-me {
		padding-bottom: 24px;
	}

	.brand-name {
		font-size: 2.25rem;
	}

	.intro-text {
		font-size: 1.25rem;
	}

	.bio-text {
		max-width: 100%;
	}

	.games-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}
	.games-grid .game-item:last-child:nth-child(3n + 2) {
		grid-column: span 2;
	}
	
	.games-grid .game-item:last-child:nth-child(3n + 1) {
		grid-column: span 3;
		aspect-ratio: 16 / 7;
	}
	.games-grid .game-item:last-child:nth-child(3n + 1) .game-popover {
		width: fit-content;
		max-width: 280px;
	}

	.music-widget {
		height: auto;
		min-height: 180px;
	}

	.track-link {
		font-size: 1.4rem;
	}

	.track-info {
		max-width: 100%;
	}

	.footer-container {
		padding: 20px;
		border-radius: 16px 16px 0 0;
	}

	.footer-divider {
		margin: 30px 0 16px 0;
	}

	.footer-nickname {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.hero-section {
		height: 300px;
	}

	.star-avatar-container {
		width: 170px;
		height: 170px;
	}

	.card {
		padding: 16px;
		border-radius: 18px;
	}

	.games-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.games-grid .game-item:last-child:nth-child(3n + 1) .game-popover {
		width: fit-content;
		max-width: 240px;
	}

	.game-popover {
		min-width: 240px;
		padding: 10px;
	}

	.game-popover-banner-wrap {
		height: 80px;
	}

	.footer-top,
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.footer-bottom {
		align-items: center;
		text-align: center;
	}
}

@media screen and (min-width: 2000px) {
	:root {
		font-size: 1.125rem;
	}

	.container {
		max-width: 1600px;
		padding-bottom: 120px;
	}

	.cards-wrapper {
		gap: 40px;
	}

	.column-left,
	.column-right {
		gap: 40px;
	}

	.hero-section {
		height: 650px;
		background-size: 50px 50px;
	}

	.star-avatar-container {
		width: 360px;
		height: 360px;
	}

	.card {
		padding: 32px;
		border-radius: 28px;
	}

	.card-title {
		font-size: 1.75rem;
	}

	.brand-name {
		font-size: 3.75rem;
	}

	.bio-text {
		font-size: 1rem;
		max-width: 340px;
	}

	.card-image-overlay {
		max-width: 260px;
		right: 90px;
	}

	.footer-container {
		max-width: 1540px;
		padding: 36px 48px;
	}

	.footer-nickname {
		font-size: 2.5rem;
	}
}