html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: auto;
    font-family: 'Fira Sans', sans-serif;
    background: #000;
    color: #fff;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#main-title,
.gradient-text,
h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.content-block-style p, .content-block-style ul {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
}

::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none !important;
}

#title-wrapper {
    position: fixed;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    pointer-events: none;
    z-index: 30;
    transition: opacity 0.3s ease;
}

.gradient-text {
    background: linear-gradient(90deg, #6d28d9, #facc15, #ef4444, #06b6d4, #6d28d9);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: gradientShift 30s ease infinite,
	blurIn 1s ease-out 0.5s forwards;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.page-header {
	text-align: left !important;
}

@keyframes blurIn {
    0% {
        filter: blur(8px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

main {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #111;
}

.content-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    transition: transform 0.2s linear, opacity 0.2s linear;
    will-change: transform, opacity;
}

section ul li {
	font-weight: 300;
    font-size: 15px;
}

#main-title {
    font-size: clamp(2.5rem, 10vw, 8rem);
}

@keyframes linkFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#link-section {
    text-align: center;
    pointer-events: auto;
}

.subtle-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    text-decoration: none;
    margin: 0 1rem;
    display: inline-block;
    opacity: 0;
    animation: linkFadeIn 1s ease-out forwards;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.subtle-link:hover {
    color: transparent;
    background: linear-gradient(90deg, #6EE7B7, #3B82F6, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

.main-minimal-blur-layer {
    background-color: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(1px);
    padding-bottom: 5rem;
}

.content-block-style {
    background-color: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(1px);
    padding-left: 2.5rem;
	padding-right: 2.5em;
    margin-bottom: 4rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.accent-border {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #6EE7B7, #9333EA) 1;
    padding-left: 1.5rem;
}

.content-block-style .gradient-text {
    opacity: 1;
    text-align: left !important;
    animation: gradientShift 30s ease infinite !important;
    filter: none;
}

section:last-of-type {
    margin-bottom: 0; 
}

.home-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    background-color: #0d0d0d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.home-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.home-icon {
    font-size: 24px;
    background: linear-gradient(45deg, #6EE7B7, #3B82F6, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.5s;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}