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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #e5e5e5;
    background: #0a0a0a;
}

/* Navigation */
nav {
    padding: 32px 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 29px;
    width: auto;
    display: block;
    filter: invert(1);
}

.logo:hover .logo-text {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-link {
    font-size: 13px;
    color: #a3a3a3;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.about-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-pic:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    text-align: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #f5f5f5;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.5;
    color: #a3a3a3;
    font-weight: 400;
}

/* Main Content */
main {
    padding-bottom: 120px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Category Filter */
.category-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

.category-filter {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #262626;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #a3a3a3;
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

#scrollRight:hover {
    transform: translateX(2px);
}

#scrollLeft:hover {
    transform: translateX(-2px);
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #262626;
    border-radius: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #0a0a0a;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    padding: 32px;
    border: 1px solid #262626;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0f0f0f;
    text-align: left;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a3a3a3;
    margin-bottom: 12px;
    margin-left: -10px;
    padding: 4px 10px;
    border: 1px solid #262626;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.card-date {
    display: block;
    font-size: 10px;
    color: #737373;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.reading-time {
    display: block;
    font-size: 10px;
    color: #595959;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.card h2 {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    color: #ffffff;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #a3a3a3;
}

/* Blog Post Page */
.post-header {
    padding: 100px 0 60px;
    text-align: center;
}

.post-header-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-date {
    display: block;
    font-size: 10px;
    color: #737373;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.post-header h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.post-header h1 .playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.post-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

.summary-box {
    background: #0f0f0f;
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.summary-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.summary-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-box li {
    font-size: 15px;
    line-height: 1.7;
    color: #d4d4d4;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.summary-box li:last-child {
    margin-bottom: 0;
}

.summary-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #737373;
}

.post-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
    margin-bottom: 22px;
}

/* Article Actions */
.article-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.vote-section,
.share-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vote-label,
.share-label {
    font-size: 13px;
    color: #737373;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.vote-buttons,
.share-buttons {
    display: flex;
    gap: 10px;
}

.vote-btn,
.share-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #737373;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    min-width: 44px;
}

.share-btn {
    padding: 11px;
}

.vote-btn:hover,
.share-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: #e5e5e5;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.vote-btn.voted {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.vote-btn svg,
.share-btn svg {
    flex-shrink: 0;
}

.vote-count {
    min-width: 20px;
    text-align: center;
}

/* LinkedIn CTA */
.linkedin-cta {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #262626;
    display: flex;
    justify-content: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #262626;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #e5e5e5;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.linkedin-link svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.linkedin-link:hover svg {
    transform: translateX(3px);
}

/* About Page */
.about-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 80px 80px 120px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.about-container h1 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    color: #ffffff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
    margin-bottom: 24px;
}

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

/* About Section on Homepage */
.about-section {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.about-item h3 {
    font-size: 11px;
    font-weight: 500;
    color: #737373;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #a3a3a3;
    max-width: 700px;
}

/* Mobile */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 60px;
    }

    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 24px 0;
    }

    .nav-container {
        padding: 0 32px;
    }

    .logo {
        font-size: 13px;
    }

    .about-link {
        font-size: 12px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-container {
        padding: 0 32px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .container {
        padding: 0 32px;
    }

    .category-filter-wrapper {
        gap: 12px;
        margin-bottom: 32px;
    }

    .scroll-btn {
        width: 32px;
        height: 32px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 7px 14px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 28px;
    }

    .card h2 {
        font-size: 18px;
    }

    main {
        padding-bottom: 80px;
    }

    .post-header {
        padding: 60px 0 40px;
    }

    .post-header-container {
        padding: 0 32px;
    }

    .post-header h1 {
        font-size: 28px;
    }

    .post-content {
        padding: 0 32px 80px;
    }

    .article-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .vote-section,
    .share-section {
        width: 100%;
    }

    .about-container {
        padding: 60px 32px 80px;
    }

    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .profile-image {
        width: 70px;
        height: 70px;
    }

    .linkedin-cta {
        margin-top: 60px;
        padding-top: 48px;
    }

    .linkedin-link {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {

    /* Navigation mobile */
    nav {
        padding: 20px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 24px;
    }

    .nav-links {
        gap: 8px;
    }

    .about-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Hero mobile */
    .hero {
        padding: 60px 0 50px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Main container mobile */
    .container {
        padding: 0 20px;
    }

    main {
        padding-bottom: 60px;
    }

    /* Category filter mobile */
    .category-filter-wrapper {
        margin-bottom: 24px;
        gap: 12px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
        white-space: nowrap;
    }

    /* Posts grid mobile */
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 20px;
    }

    .post-date {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .card h2 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .post-excerpt {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .reading-time {
        font-size: 12px;
    }

    /* Post header mobile */
    .post-header-container {
        padding: 0 20px;
    }

    .post-header {
        padding: 60px 0 40px;
    }

    .post-header h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .post-meta {
        font-size: 13px;
    }

    /* Post content mobile */
    .post-content {
        padding: 0 20px 60px;
    }

    .post-content h2 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .post-content h3 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .post-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .post-content ul,
    .post-content ol {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Summary box mobile */
    .summary-box {
        padding: 20px;
        margin: 32px 0;
    }

    .summary-box h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .summary-box ul {
        font-size: 14px;
    }

    /* Chart mobile */
    .chart {
        margin: 32px 0;
    }

    .chart img {
        border-radius: 8px;
    }

    /* Sources section mobile */
    .sources-section {
        padding: 20px;
        margin-top: 40px;
    }

    .sources-section h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .source-item {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .data-disclaimer {
        padding: 16px;
        margin-top: 20px;
    }

    .data-disclaimer p {
        font-size: 12px;
        line-height: 1.6;
    }

    .last-updated {
        font-size: 12px;
        margin-top: 16px;
    }

    /* Vote and share mobile */
    .vote-share-container {
        padding: 24px 20px;
        margin-top: 40px;
    }

    .vote-section h3,
    .share-section h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .vote-buttons,
    .share-buttons {
        gap: 8px;
    }

    .vote-btn,
    .share-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Related posts mobile */
    .related-posts {
        margin-top: 40px;
        padding: 0 20px;
    }

    .related-posts h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .related-post-card {
        padding: 16px 18px;
    }

    .related-post-card h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Load more button mobile */
    .load-more-container {
        padding: 0 20px;
        margin-top: 32px;
    }

    .load-more-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }

    /* About section mobile */
    .about-section {
        padding: 0 20px;
        margin: 40px auto 32px;
        gap: 24px;
    }

    .about-item {
        padding: 20px 0;
    }

    .about-item h3 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .about-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Newsletter mobile */
    .newsletter-section {
        padding: 0 20px;
        margin: 40px auto;
    }

    .newsletter-container {
        padding: 24px 20px;
    }

    .newsletter-container h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .newsletter-container p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input {
        width: 100%;
        font-size: 14px;
        padding: 14px 16px;
    }

    .newsletter-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 16px;
    }

    /* Calendar newsletter mobile */
    .calendar-newsletter {
        padding: 32px 24px;
        margin: 40px 20px;
        border-radius: 12px;
    }

    .calendar-newsletter h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .calendar-newsletter p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .newsletter-form {
        gap: 10px;
    }

    .newsletter-input {
        font-size: 15px;
        padding: 14px 16px;
    }

    .newsletter-btn {
        font-size: 15px;
        padding: 14px 24px;
    }

    /* Events list mobile */
    .events-list {
        gap: 12px;
    }

    .event-card {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .event-date {
        min-width: auto;
        width: auto;
    }

    .event-day {
        font-size: 18px;
    }

    .event-month {
        font-size: 11px;
    }

    .event-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .event-description {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Calendar header mobile */
    .calendar-header {
        padding: 60px 0 40px;
    }

    .calendar-header-container {
        padding: 0 20px;
    }

    .calendar-header h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .calendar-subtitle {
        font-size: 15px;
    }

    .calendar-container {
        padding: 0 20px 60px;
    }

    /* Calendar actions mobile */
    .calendar-actions {
        padding: 20px;
        margin-bottom: 40px;
    }

    .calendar-action-label {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .calendar-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Footer mobile */
    .site-footer {
        padding: 40px 0;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 13px;
        white-space: nowrap;
    }

    .footer-copyright {
        font-size: 12px;
        margin-top: 0;
        text-align: center;
    }

    /* Legal pages mobile */
    .legal-container {
        padding: 60px 20px;
    }

    .legal-container h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .legal-section h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .legal-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .legal-section p,
    .legal-section ul {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 404 page mobile */
    .error-container {
        padding: 80px 20px;
    }

    .error-code {
        font-size: 72px;
        margin-bottom: 16px;
    }

    .error-message {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .error-submessage {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .error-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .error-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px;
    }

    .popular-posts h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .popular-posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Calendar Page */
.calendar-header {
    padding: 100px 0 60px;
    text-align: center;
}

.calendar-header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.calendar-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: #ffffff;
}

.calendar-subtitle {
    font-size: 17px;
    color: #a3a3a3;
    font-weight: 400;
}

.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* Calendar Actions */
.calendar-actions {
    margin-bottom: 40px;
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.calendar-container .calendar-actions {
    max-width: none !important;
}

.calendar-action-label {
    display: block;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.calendar-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #a3a3a3;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendar-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-1px);
}

.calendar-btn svg {
    opacity: 0.6;
    transition: opacity 0.25s;
}

.calendar-btn:hover svg {
    opacity: 1;
}

/* Events List */
.events-list {
    margin-bottom: 40px;
}

.calendar-container .events-list {
    max-width: none !important;
}

.events-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.event-card {
    display: flex;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.event-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.event-day {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.event-month {
    display: block;
    font-size: 12px;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.event-description {
    font-size: 14px;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.event-category {
    font-size: 12px;
    color: #737373;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.event-time {
    font-size: 12px;
    color: #737373;
}

/* Newsletter Section */
.calendar-newsletter {
    padding: 40px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
    margin-top: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-container .calendar-newsletter {
    max-width: none !important;
}

.calendar-newsletter h3 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.calendar-newsletter p {
    font-size: 15px;
    color: #a3a3a3;
    margin-bottom: 28px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: #737373;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.newsletter-btn {
    padding: 14px 28px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    margin: 32px 0 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.load-more-btn svg {
    transition: transform 0.25s;
}

.load-more-btn:hover svg {
    transform: translateY(2px);
}

.load-more-btn.hidden {
    display: none;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Sources & Methodology Section */
.sources-section {
    margin-top: 60px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.sources-section h3 {
    font-size: 12px;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.source-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #a3a3a3;
}

.source-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #737373;
}

.source-content a {
    color: #e5e5e5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s;
}

.source-content a:hover {
    border-bottom-color: #ffffff;
}

.data-disclaimer {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.data-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #8a8a8a;
    margin: 0;
}

.data-disclaimer strong {
    color: #a3a3a3;
    font-weight: 500;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: #737373;
}

.last-updated svg {
    opacity: 0.6;
}

/* Related Posts Section */
.related-posts {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.related-posts h2 {
    font-size: 14px;
    font-weight: 500;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.related-post-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
}

.related-post-card:visited {
    color: #ffffff;
}

.related-post-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.related-post-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.related-post-card:visited h3 {
    color: #ffffff;
}

.related-post-card svg {
    opacity: 0.4;
    transition: opacity 0.25s;
    margin-left: 16px;
    flex-shrink: 0;
}

.related-post-card:hover svg {
    opacity: 1;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.legal-container h1 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 32px 0 16px;
    letter-spacing: -0.01em;
}

.legal-section h3 {
    font-size: 16px;
    font-weight: 500;
    color: #e5e5e5;
    margin: 20px 0 12px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.legal-section ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #595959;
}

.legal-section a {
    color: #e5e5e5;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s;
}

.legal-section a:hover {
    border-bottom-color: #ffffff;
}

.legal-updated {
    font-size: 13px;
    color: #595959;
    margin-top: 40px;
}

/* Footer */
.site-footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    font-size: 13px;
    color: #595959;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 80px 24px 60px;
    }

    .legal-container h1 {
        font-size: 28px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}