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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 80px;
    animation: fadeIn 0.8s ease-in;
}

.name {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: lowercase;
}

main {
    flex: 1;
}

.bio {
    margin-bottom: 60px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    animation: fadeIn 1s ease-in 0.2s both;
}

.bio p {
    font-weight: 300;
}

.small {
    font-size: 13px;
    color: #999;
    display: block;
    margin-top: 12px;
}

.links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.link-group h2 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #333;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-item {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-transform: lowercase;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #222;
    transition: width 0.3s ease;
}

.link-item:hover::after {
    width: 100%;
}

.link-item:hover {
    color: #666;
}

/* Releases Section */
.releases {
    margin-bottom: 80px;
    animation: fadeIn 1s ease-in 0.3s both;
}

.releases-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    font-weight: 500;
    color: #333;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.release-card {
    cursor: pointer;
    transition: all 0.4s ease;
    animation: fadeIn 1.2s ease-in 0.4s both;
}

.release-card:hover {
    transform: translateY(-4px);
}

.release-card:hover .release-image {
    opacity: 0.8;
}

.release-image {
    width: 100%;
    aspect-ratio: 1;
    background: #e8e8e8;
    margin-bottom: 16px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-info {
    padding: 0 8px;
}

.release-info h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #222;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.release-date {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.3px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeIn 1.2s ease-in 0.4s both;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }

    header {
        margin-bottom: 60px;
    }

    .name {
        font-size: 32px;
    }

    .links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bio {
        margin-bottom: 40px;
        font-size: 15px;
    }

    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Old web touches - subtle */
a {
    cursor: pointer;
}

/* Optional: Cursor effect for old web feel */
::selection {
    background: #e0e0e0;
    color: #222;
}
