/* Font */
@font-face {
    font-family: 'Berkeley Mono';
    src: url('/public/fonts/BerkeleyMono-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

/* Base */
body {
    font-family: "Berkeley Mono";
    font-size: 14px;
    line-height: 1.5;
    max-width: 580px;
    margin: 0 auto;
    padding: 80px 20px;
    color: #000;
    /* background: rgba(245 250 255); */
    background: #fff;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #000;
}

a:hover::after {
    opacity: 0;
}

/* Navigation */
nav {
    margin-bottom: 40px;
}

nav a {
    margin-right: 20px;
}

nav a::after {
    opacity: 0;
}

nav a:hover::after {
    opacity: 1;
}

/* Typography */
h1 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 40px;
}

h2 {
    font-size: 14px;
    font-weight: normal;
    margin: 60px 0 20px;
}

p {
    margin-bottom: 20px;
}

/* Lists */
ul {
    list-style: none;
}

.posts li {
    display: flex;
    margin-bottom: 8px;
}

.date {
    color: #000;
    opacity: 0.5;
    width: 100px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.posts a::after {
    opacity: 0;
}

.posts a:hover::after {
    opacity: 1;
}

/* Article */
article h1 {
    margin-bottom: 4px;
}

article .date {
    display: block;
    margin-bottom: 20px;
}

/* Footer */
footer {
    margin-top: 100px;
    font-size: 14px;
}

/* Scattered text */
.scattered {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
    z-index: -1;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.scattered span {
    position: absolute;
    font-family: "Berkeley Mono";
    font-size: 12px;
}

.scattered .depth-1 { font-size: 10px; opacity: 0.08; }
.scattered .depth-2 { font-size: 12px; opacity: 0.16; }
.scattered .depth-3 { font-size: 14px; opacity: 0.24; }
.scattered .depth-4 { font-size: 16px; opacity: 0.32; }
.scattered .depth-5 { font-size: 18px; opacity: 0.4; }

.scattered .t1 { top: 15%; left: 25%; }
.scattered .t2 { top: 20%; left: 45%; }
.scattered .t3 { top: 25%; left: 75%; }
.scattered .t4 { top: 35%; left: 15%; }
.scattered .t5 { top: 45%; left: 85%; }
.scattered .t6 { top: 65%; left: 35%; }
.scattered .t7 { top: 75%; left: 65%; }
.scattered .t8 { top: 85%; left: 55%; }
.scattered .t9 { top: 90%; left: 25%; }
.scattered .t10 { top: 10%; left: 90%; }

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-links a {
    font-size: 24px;
    margin-right: 20px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-links a::after {
    display: none;
}

.social-links a:hover {
    opacity: 1;
}
