/* Resets
 *********************************************************/

*{
  	margin: 0;
  	padding: 0;
  	border: 0 none;
  	-webkit-text-size-adjust: 100%;
}

/* Critical CSS - Above the fold */

/* Presets
 *********************************************************/
:root{
	--bg: #ffffff;
	--text: #15181d;
	--link: #8677ff;
	--shadow: rgba(0,0,0,.1);
	--sparkle: #000000 !important;
	--sparkle-glow: rgba(0,0,0,0.50) !important;
	transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"]{
	--bg: #0b0e12;
	--text: #e6e9ef;
	--link: #8677ff;
	--shadow: rgba(0,0,0,.6);
	--sparkle: #ffffff !important;
	--sparkle-glow: rgba(255,255,255,0.50) !important;
}
body{
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
	font-size: 100%;
	color: var(--text);
	background-color: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 1.6;
	cursor: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}


a{
	white-space: nowrap;
	color: var(--link);
	text-decoration: none;
	position: relative;
	cursor: none;
	transition: all 0.3s ease;
}

/* Remove default cursors for all interactive elements */
a, button, [role="button"], input, select, textarea, [tabindex] {
	cursor: none;
}

a::after{
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: -2px;
	left: 0;
	background-color: var(--link);
	transition: width 0.3s ease;
}

a:hover::after{
	width: 100%;
}

/* Custom circular cursor for links */
.custom-link-cursor {
	position: fixed;
	width: 20px;
	height: 20px;
	background: var(--text);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: transform 0.1s ease, background-color 0.3s ease, opacity 0.2s ease;
	left: -100px;
	top: -100px;
}

h1{
  	font-size: 2em;
  	font-weight: 700;
	animation-duration: 0.4s;
	animation-delay: 0.15s;
	animation-iteration-count: 1;
  	-webkit-animation-duration: 0.5s;
  	-webkit-animation-delay: 0.15s;
  	-webkit-animation-iteration-count: 1;
}

h4{
	font-weight: 400;
	font-size: 1.3em;
	float: left;
	height: 20px;
}

p{
	font-size: 1.125em;
	line-height: 1.75em;
	text-align: left;
}

img{
	max-width: 100%;
	box-shadow: 0 3px 100px var(--shadow);
	border-radius: 4px;
	margin-bottom: 40px;
	transition: all 0.2s ease;
}

img:hover{
	opacity: 0.8;
}

.wrapper {
	max-width: 570px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex: 1 0 auto;
}


/* Header
 *********************************************************/

header{
	text-align: left;
	padding: 5em 0 2em 0;
	width: 100%;
}

/* Content
 *********************************************************/


.intro{
	font-weight: 600;
	font-size: 1.25em;
}

.content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 0 auto;
	padding-bottom: 4em;
}

/* Sparkles background */
.sparkle-bg{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .4;
    animation: sparkles-fade-in 1.2s ease-out forwards;
}

.wrapper{ position: relative; z-index: 1; }

/* Theme Toggle */
.theme-toggle{
	position: fixed;
	top: 1.5em;
	right: 1.5em;
	z-index: 1000;
}

#theme-toggle-btn{
	background: none;
	border: none;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	opacity: 0.7;
	padding: 8px;
}

#theme-toggle-btn:hover{
	opacity: 1;
	transform: scale(1.1);
}

.theme-icon{
	width: 20px;
	height: 20px;
	color: var(--text);
	transition: transform 0.3s ease, color 0.3s ease;
}

#theme-toggle-btn:hover .theme-icon{
	transform: rotate(15deg);
}

.sparkle-bg .dot{
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sparkle) !important;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--sparkle-glow) !important;
    opacity: 0;
    animation: sparkle-twinkle-slow 6s ease-in-out infinite;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Distribute dots using nth-child positions */
.sparkle-bg .dot:nth-child(1){ left: 5%; top: 8%; animation-delay: .2s; }
.sparkle-bg .dot:nth-child(2){ left: 12%; top: 22%; animation-delay: 1.1s; }
.sparkle-bg .dot:nth-child(3){ left: 18%; top: 70%; animation-delay: 2.3s; }
.sparkle-bg .dot:nth-child(4){ left: 25%; top: 40%; animation-delay: .6s; }
.sparkle-bg .dot:nth-child(5){ left: 30%; top: 15%; animation-delay: 3.1s; }
.sparkle-bg .dot:nth-child(6){ left: 35%; top: 85%; animation-delay: 1.7s; }
.sparkle-bg .dot:nth-child(7){ left: 42%; top: 55%; animation-delay: 2.9s; }
.sparkle-bg .dot:nth-child(8){ left: 48%; top: 28%; animation-delay: .9s; }
.sparkle-bg .dot:nth-child(9){ left: 55%; top: 10%; animation-delay: 2.1s; }
.sparkle-bg .dot:nth-child(10){ left: 60%; top: 78%; animation-delay: 3.6s; }
.sparkle-bg .dot:nth-child(11){ left: 66%; top: 33%; animation-delay: 1.3s; }
.sparkle-bg .dot:nth-child(12){ left: 70%; top: 60%; animation-delay: 2.7s; }
.sparkle-bg .dot:nth-child(13){ left: 74%; top: 20%; animation-delay: .4s; }
.sparkle-bg .dot:nth-child(14){ left: 79%; top: 48%; animation-delay: 1.9s; }
.sparkle-bg .dot:nth-child(15){ left: 83%; top: 72%; animation-delay: 3.2s; }
.sparkle-bg .dot:nth-child(16){ left: 87%; top: 12%; animation-delay: .8s; }
.sparkle-bg .dot:nth-child(17){ left: 90%; top: 38%; animation-delay: 2.4s; }
.sparkle-bg .dot:nth-child(18){ left: 94%; top: 66%; animation-delay: 1.5s; }
.sparkle-bg .dot:nth-child(19){ left: 20%; top: 92%; animation-delay: 4.1s; }
.sparkle-bg .dot:nth-child(20){ left: 8%; top: 50%; animation-delay: 3.8s; }
.sparkle-bg .dot:nth-child(21){ left: 14%; top: 35%; animation-delay: 2.6s; }
.sparkle-bg .dot:nth-child(22){ left: 27%; top: 6%; animation-delay: .3s; }
.sparkle-bg .dot:nth-child(23){ left: 52%; top: 90%; animation-delay: .5s; }
.sparkle-bg .dot:nth-child(24){ left: 68%; top: 5%; animation-delay: 1.1s; }
.sparkle-bg .dot:nth-child(25){ left: 76%; top: 86%; animation-delay: 2.0s; }
.sparkle-bg .dot:nth-child(26){ left: 38%; top: 12%; animation-delay: 2.8s; }
.sparkle-bg .dot:nth-child(27){ left: 58%; top: 44%; animation-delay: 1.6s; }
.sparkle-bg .dot:nth-child(28){ left: 46%; top: 70%; animation-delay: .7s; }
.sparkle-bg .dot:nth-child(29){ left: 32%; top: 58%; animation-delay: 3.4s; }
.sparkle-bg .dot:nth-child(30){ left: 84%; top: 30%; animation-delay: 2.2s; }

@keyframes sparkles-fade-in{
    from{ opacity: 0; }
    to{ opacity: .4; }
}

@keyframes sparkle-twinkle-slow{
    0%, 100%{ opacity: 0; transform: scale(0.6); }
    30%{ opacity: .4; transform: scale(1); }
    60%{ opacity: .1; transform: scale(0.7); }
}

.content h1{
	text-align: left;
	margin-bottom: 16px;
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: 0.2s;
	opacity: 0;
	transform: translateY(20px);
}

.content #intro{
	margin-bottom: 8px;
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: 0.5s;
	opacity: 0;
	transform: translateY(20px);
}

.content #bobby{
	margin-bottom: 16px;
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: 0.5s;
	opacity: 0;
	transform: translateY(20px);
}

.content footer{
	animation: fadeInUp 0.6s ease-out forwards;
	animation-delay: 0.5s;
	opacity: 0;
	transform: translateY(20px);
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}



[data-theme="dark"] .content #title{
	color: #fff;
}

[data-theme="dark"] .content #intro{
	color: #e6e9ef;
}





footer ul{
	text-decoration: none;
  	float: left;
	list-style: none;
  	display: block;
  	padding: 0;
}

footer ul li{
	margin-right: 20px;
	float: left;
	list-style: none;
  	display: block;
}

footer ul li a{
	color: var(--text);
}

footer ul li a::after{
	background-color: var(--text);
}

.copy{
	float: right;
	margin-right: 0;
}

.site-copyright{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: left;
	font-size: 0.8em;
	margin: 0;
	padding: 0.8em 0;
	opacity: 0;
    z-index: 10;
    box-sizing: border-box;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.7s;
    transition: none !important;
}

.disable-transitions {
	transition: none !important;
	animation: none !important;
	opacity: 0.4 !important;
}

[data-theme="dark"] .disable-transitions {
	opacity: 0.3 !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.4;
	}
}

.copyright-content{
	max-width: 570px;
	margin: 0 auto;
	white-space: nowrap;
	transition: none !important;
}

[data-theme="dark"] .site-copyright{
	animation: fadeInDark 0.6s ease-out forwards;
	animation-delay: 0.7s;
}

@keyframes fadeInDark {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.3;
	}
}

/* Responsiveshizzle
 *********************************************************/

@media screen and (max-width: 800px){


.wrapper{
	padding: 0 2em;
}

.copyright-content{
	padding: 0 2em;
}



}

/* Landscape
 *********************************************************/

@media screen and (max-width: 480px){

body{
    font-size: 85%;
    min-height: 100dvh;
    overflow: hidden;
}

.theme-toggle{
	top: 1em;
	right: 1em;
}

#theme-toggle-btn{
	padding: 6px;
}

.theme-icon{
	width: 18px;
	height: 18px;
}

header{
    padding: 2em 0 1em 0;
}
.wrapper{
    padding: 0 1.5em;
	max-width: 100%;
}

.copyright-content{
	padding: 0 1.5em;
}

footer{
    margin-top: 2em;
}

.content br{
    display: none;
}

#intro{
	margin-bottom: 1.5em;
}

.copy{
	text-align: left;
	margin-bottom: 40px;
}



.site-copyright{
    padding: 0.5em 0;
    margin-bottom: 0.75em;
}
}

/* Mobile
 *********************************************************/

@media screen and (max-width: 768px){
	/* Restore default cursors on mobile devices */
	body, a, button, [role="button"], input, select, textarea, [tabindex] {
		cursor: auto;
	}
	
	#theme-toggle-btn {
		cursor: pointer;
	}
}

@media screen and (max-width: 320px){

 body{
    font-size: 80%;
}

h1{
	font-size: 1.4em;
}

h2{
	font-size: 0.8em;
}

.wrapper{
	padding: 0 2em;
	max-width: 100%;
}

.copy{
	width: 100%;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 40px;
}

footer ul{
  padding: 0;
}


/* Header
 *************************************/

header{
	padding: 2em 0 2em;
}

}
