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

body {
    font-family: 'Roboto Mono', monospace;
    background-color: #121212;
    background-image: url('cat.svg');
    background-repeat: repeat;
    background-size: 150px;
    background-position: center;
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    opacity: 0.98;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #e8ff26;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 0.95rem;
    color: #26ffa9;
    font-weight: 300;
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

section {
    border-left: 2px solid #222;
    padding-left: 1.5rem;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
    font-weight: 300;
}

.about p:last-child {
    margin-bottom: 0;
}

.location p {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8ff26;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.contact a svg {
    flex-shrink: 0;
    color: #26ffa9;
}

.contact a:hover {
    opacity: 0.7;
}

.copy-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #e8ff26;
    color: #121212;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

::selection {
    background: #e8ff26;
    color: #121212;
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    section {
        padding-left: 1rem;
    }

    .about p,
    .contact a {
        font-size: 0.9rem;
    }

    .location p {
        font-size: 0.85rem;
    }
}
