@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    background: #101010;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

header a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

header a:hover {
    color: #ffffff;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

nav a.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

main {
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

section strong {
    color: #ffffff;
    font-weight: 600;
}

section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-section {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-section p {
    margin-bottom: 0;
}

article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

article:last-child {
    border-bottom: none;
}

article h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

article h3 a {
    color: #ffffff;
}

article h3 a:hover {
    text-decoration: underline;
}

article p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

article em {
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
    font-size: 0.9rem;
}

article ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

article ul li {
    margin-bottom: 0.5rem;
}

article time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

article h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

article p a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

article p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.article-link-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.article-link-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

    header h1 {
        font-size: 1.5rem;
    }

    nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    main {
        max-width: 100%;
    }

    section h2 {
        font-size: 1.25rem;
    }

    article h3 {
        font-size: 1.1rem;
    }

    nav a.profile-link {
        display: none !important;
    }
    
    nav a[href*="wanbl.html"],
    nav a[href*="threads-card"] {
        display: none !important;
    }
}
