* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e8dcc0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #8b7355;
    padding: 20px 0;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #e8dcc0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* Main Content */
main {
    padding: 40px 0;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #c9b99a;
}

.content-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
}

.content-card h2 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-card h3 {
    color: #b8a082;
    margin: 20px 0 10px 0;
    font-size: 1.4rem;
}

/* Blog Posts */
.blog-post {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.blog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-date {
    color: #8b7355;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.post-title {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Links */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.link-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: rgba(0, 0, 0, 0.4);
}

.link-item h3 {
    margin-bottom: 10px;
}

.link-item a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.link-item a:hover {
    text-decoration: underline;
}

/* Bluesky Posts */
.bluesky-post {
    background: rgba(0, 122, 255, 0.1);
    border-left: 4px solid #007AFF;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
}

.bluesky-handle {
    color: #007AFF;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #8b7355;
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        font-size: 2rem;
    }

    nav ul {
        justify-content: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}