@font-face {
    font-family: 'FSEX300';
    src: url('FSEX300.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'FSEX300', 'Courier New', monospace;
    color: #b8a3d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 10px;
    min-height: 100vh;
    position: relative;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b8a3d9;
    -webkit-text-stroke: 3px #000000;
    text-stroke: 3px #000000;
    paint-order: stroke fill;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8a3d9;
    -webkit-text-stroke: 3px #000000;
    text-stroke: 3px #000000;
    paint-order: stroke fill;
}

h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b8a3d9;
    -webkit-text-stroke: 3px #000000;
    text-stroke: 3px #000000;
    paint-order: stroke fill;
}

p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
    paint-order: stroke fill;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 700px;
}

a {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #b8a3d9;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    padding: 12px 24px;
    border: 2px solid transparent;
    display: inline-block;
    -webkit-text-stroke: 2px #000000;
    text-stroke: 2px #000000;
    paint-order: stroke fill;
}

a:hover {
    color: #b8a3d9;
    border: 2px solid transparent;
}

@keyframes subtle-rotate {
    0%, 100% {
        transform: rotate(var(--base-rotation)) rotate(-1.5deg);
    }
    50% {
        transform: rotate(var(--base-rotation)) rotate(1.5deg);
    }
}

nav a {
    animation: subtle-rotate 6s ease-in-out infinite;
}

.back-link {
    margin-top: 2.5rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(184, 163, 217, 0.3);
    border: none;
    font-size: 1rem;
    padding: 0;
}

.social-icon:hover {
    background-color: rgba(184, 163, 217, 0.5);
}

.social-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(21%) saturate(400%) hue-rotate(200deg) brightness(95%);
}

.content-container {
    max-width: 900px;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    nav {
        gap: 1rem;
    }
}