/* Minimalist styling inspired by swimming.fish */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    color: #aaa;
    font-family: monospace;
    text-align: left;
    padding: 20px;
    max-width: 600px;
    margin: 10vh auto;
    line-height: 1.5;
}

.container {
    width: 100%;
}

.intro-text {
    margin-bottom: 40px;
}

.intro-text p {
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.intro-text a {
    color: #55aaff;
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

.links-section {
    margin-top: 30px;
}

.link-item {
    margin-bottom: 25px;
    display: block;
}

.link-item a {
    color: #55aaff;
    text-decoration: none;
}

.link-item a:hover {
    text-decoration: underline;
}

.link-description {
    display: block;
    margin-top: 5px;
    color: #666;
    margin-left: 0;
}

/* Work page styles */
.work-content {
    margin-top: 30px;
}

.work-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.work-content h2:first-of-type {
    margin-top: 0;
}

.work-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.work-item:last-child {
    border-bottom: none;
}

.work-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.work-item p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.work-item a {
    color: #55aaff;
    text-decoration: none;
}

.work-item a:hover {
    text-decoration: underline;
}

/* Back link */
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #55aaff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Crypto page styles */
.crypto-content {
    margin-top: 30px;
}

.crypto-item {
    margin-bottom: 30px;
}

.crypto-item h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.crypto-item a {
    color: #55aaff;
    text-decoration: none;
}

.crypto-item a:hover {
    text-decoration: underline;
}

.crypto-address {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    font-family: monospace;
}

/* Page header for subpages */
.page-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-description {
    margin-bottom: 30px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
        font-size: 15px;
    }

    .page-title {
        font-size: 20px;
    }
}
