* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #111111;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: #000000;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.tagline {
    font-size: 0.8rem;
    color: #d4af37;
    letter-spacing: 1px;
    font-weight: 500;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: #d4af37;
}

.hero {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    color: #333333;
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
}

.view-all {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.view-all:hover {
    color: #b8860b;
}

.articles-grid, .podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.article-card, .podcast-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    border: 1px solid #eaeaea;
}

.article-card:hover, .podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.article-card h4, .podcast-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 600;
}

.article-meta {
    font-size: 0.8rem;
    color: #d4af37;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    font-weight: 500;
}

.excerpt {
    color: #4a4a4a;
    margin: 12px 0;
    line-height: 1.5;
}

.read-more, .watch-link {
    display: inline-block;
    margin-top: 16px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
}

.read-more:hover, .watch-link:hover {
    color: #b8860b;
}

.podcast-card i {
    color: #d4af37;
    margin-right: 8px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #d4af37;
    color: #000000;
}

.btn-secondary {
    background: #f5f5f5;
    color: #000000;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
}

.admin-toolbar {
    margin-bottom: 40px;
    text-align: right;
}

.page-header {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    color: #4a4a4a;
    font-size: 1.1rem;
}

.cta-section {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 80px 24px;
    border-radius: 40px;
    margin: 40px 0;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section .btn-primary {
    background: #d4af37;
    color: #000000;
    margin-top: 24px;
}

.cta-section .btn-primary:hover {
    background: #ffffff;
    color: #000000;
}

.upload-area {
    margin-bottom: 60px;
}

.upload-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 2px solid #000000;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.upload-card h3 {
    margin-bottom: 24px;
    color: #000000;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #ffffff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.pdf-item {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #eaeaea;
}

.pdf-item:hover {
    border-color: #000000;
}

.pdf-info h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
}

.pdf-info p {
    font-size: 0.85rem;
    color: #666666;
}

.pdf-link {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.pdf-link:hover {
    background: #d4af37;
    color: #000000;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #000000;
}

footer {
    background: #000000;
    color: #888888;
    padding: 56px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-image {
    width: 52px;
    height: 52px;
}

.logo-image svg circle {
    stroke: #d4af37;
    stroke-width: 2;
}

.logo-image svg path {
    stroke: #d4af37;
    stroke-width: 3;
}

.logo-image svg circle:last-child {
    fill: #d4af37;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 4px;
}

.footer-social {
    margin: 24px 0;
}

.linktree-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.12);
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.linktree-link:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.linktree-icon {
    width: 20px;
    height: 20px;
}

.linktree-link span {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.linktree-link:hover span {
    color: #000000;
}

.linktree-link:hover .linktree-icon {
    filter: brightness(0);
}

.copyright {
    font-size: 0.85rem;
    margin: 20px 0 0 0;
    color: #666666;
}

.admin-link {
    margin-top: 16px;
}

.admin-access {
    color: #666666;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.admin-access:hover {
    color: #d4af37;
}

.full-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 32px 36px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #1a1a1a;
    background: #ffffff;
}

.full-content p {
    margin-bottom: 1.4em;
    line-height: 1.7;
}

.full-content h1 {
    font-size: 1.8rem;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #000000;
    font-weight: 700;
}

.full-content h2 {
    font-size: 1.5rem;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    color: #000000;
    font-weight: 700;
}

.full-content h3 {
    font-size: 1.25rem;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    color: #000000;
    font-weight: 600;
}

.full-content ul, .full-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.full-content li {
    margin: 0.5em 0;
    line-height: 1.6;
}

.full-content blockquote {
    border-left: 4px solid #d4af37;
    margin: 1.2em 0;
    padding: 0.5em 0 0.5em 1.5em;
    color: #4a4a4a;
    font-style: italic;
    background: #fafaf8;
    border-radius: 0 8px 8px 0;
}

.full-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1em 0;
}

.full-content code {
    background: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    color: #d4af37;
}

.full-content pre {
    background: #f5f5f5;
    padding: 1em;
    border-radius: 8px;
    overflow-x: auto;
    font-family: monospace;
    margin: 1em 0;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    nav ul {
        gap: 20px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .section-header {
        flex-direction: column;
        gap: 8px;
    }
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    .linktree-link {
        padding: 8px 16px;
    }
    .linktree-link span {
        font-size: 0.85rem;
    }
    .full-content {
        padding: 24px 20px;
    }
}