/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-image: url('/images/image.png');
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    position: relative;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Site Background Pattern */
.site-background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/images/image.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-image {
    height: 32px;
    width: auto;
}

.logo-text {
    font-weight: 600;
    color: #0ea5e9;
    font-size: 1.125rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.1);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .header-right-section {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .search-widget {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Posts Section */
.posts-section {
    padding: 0;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}


.posts-header h2 {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 600;
}

.posts-count {
    color: #64748b;
    font-size: 0.875rem;
}

/* Header Right Section */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Search Widget */
.search-widget {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-icon-btn:hover {
    background: rgba(14, 165, 233, 0.2);
    transform: scale(1.05);
}

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

.search-input-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #0ea5e9;
    border-radius: 25px;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.search-input-container.active {
    width: 300px;
    opacity: 1;
    visibility: visible;
}

.search-input-container .search-input {
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    flex: 1;
    color: #374151;
    transition: all 0.2s ease;
}

.search-input-container .search-input::placeholder {
    color: #9ca3af;
}

.search-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: #64748b;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

.search-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .header-right-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input-container.active {
        width: 280px;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .posts-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.post-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #14b8a6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}

.post-card-text-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    flex-grow: 1;
}

.post-excerpt {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Individual Post Styles */
.breadcrumb {
    margin-bottom: 2rem;
    color: #64748b;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #0ea5e9;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.post-content {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-content .post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0f172a;
}

.post-content .post-meta {
    justify-content: center;
    font-size: 1rem;
}

.post-body {
    prose-max-width: none;
    line-height: 1.7;
}

.post-body h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-body h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.post-body p {
    margin-bottom: 1rem;
    color: #374151;
}

.post-body a {
    color: #0ea5e9;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.post-body a:hover {
    color: #0284c7;
}

.post-body ul,
.post-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.post-body blockquote {
    border-left: 4px solid #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Contact Info Section */
.contact-info-section {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-table {
    width: 100%;
    max-width: 500px;
    margin: 0;
    border-collapse: collapse;
    background: rgba(14, 165, 233, 0.02);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-table tr:last-child .contact-label,
.contact-table tr:last-child .contact-links {
    border-bottom: none;
}

.contact-label {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    vertical-align: top;
    font-weight: 600;
    color: #0f172a;
    width: 100px;
    min-width: 100px;
    background: rgba(14, 165, 233, 0.03);
}

.contact-links {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    vertical-align: top;
    color: #374151;
}

.contact-links a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.contact-links a:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
    transform: translateY(-1px);
}

/* Responsive contact table styling */
@media (max-width: 768px) {
    .contact-table {
        font-size: 0.875rem;
    }
    
    .contact-label,
    .contact-links {
        padding: 0.5rem 0.75rem;
    }
    
    .contact-label {
        width: 80px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .contact-table,
    .contact-table tbody,
    .contact-table tr,
    .contact-table .contact-label,
    .contact-table .contact-links {
        display: block;
        width: 100%;
    }
    
    .contact-table tr {
        margin-bottom: 1rem;
        border: 1px solid rgba(14, 165, 233, 0.1);
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .contact-label,
    .contact-links {
        border: none;
        padding: 0.75rem;
    }
    
    .contact-label {
        background: rgba(14, 165, 233, 0.08);
        font-weight: 700;
        border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    }
    
    .contact-links {
        background: white;
    }
}

/* Contact Tables Styling */
.post-body table {
    width: 100%;
    max-width: 500px;
    margin: 2rem 0;
    border-collapse: collapse;
    background: rgba(14, 165, 233, 0.02);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.post-body table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.08);
    vertical-align: top;
}

.post-body table tr:last-child td {
    border-bottom: none;
}

.post-body table td:first-child {
    font-weight: 600;
    color: #0f172a;
    width: 100px;
    min-width: 100px;
    background: rgba(14, 165, 233, 0.03);
}

.post-body table td:last-child {
    color: #374151;
}

.post-body table a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.post-body table a:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
    transform: translateY(-1px);
}

/* Responsive table styling */
@media (max-width: 768px) {
    .post-body table {
        font-size: 0.875rem;
    }
    
    .post-body table td {
        padding: 0.5rem 0.75rem;
    }
    
    .post-body table td:first-child {
        width: 80px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .post-body table,
    .post-body table tbody,
    .post-body table tr,
    .post-body table td {
        display: block;
        width: 100%;
    }
    
    .post-body table tr {
        margin-bottom: 1rem;
        border: 1px solid rgba(14, 165, 233, 0.1);
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .post-body table td {
        border: none;
        padding: 0.75rem;
    }
    
    .post-body table td:first-child {
        background: rgba(14, 165, 233, 0.08);
        font-weight: 700;
        border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    }
    
    .post-body table td:last-child {
        background: white;
    }
}

/* Responsive Video Styles */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem;
}

/* Remove extra margin from paragraphs containing videos */
.post-body p:has(.video-responsive) {
    margin-bottom: 0;
}

/* Fallback for browsers that don't support :has() */
.post-body p .video-responsive {
    margin-top: 0;
}

/* Gallery Styles */
.post-gallery {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.post-gallery h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Gallery Slider Styles */
.gallery-slider-container {
    position: relative;
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.gallery-slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-slide a {
    display: block;
    text-decoration: none;
}

.gallery-slide a:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-caption {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    text-align: left;
    color: #374151;
    font-style: italic;
    line-height: 1.4;
}

/* Navigation Buttons */
.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-button:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-nav-button:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.slider-nav-button.prev {
    left: 1rem;
}

.slider-nav-button.next {
    right: 1rem;
}

.slider-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-nav-button:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-slide img {
        aspect-ratio: 4 / 3;
    }
    
    .slider-nav-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav-button.prev {
        left: 0.5rem;
    }
    
    .slider-nav-button.next {
        right: 0.5rem;
    }
    
    .gallery-caption {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-slide img {
        padding: 0.75rem 1rem;
    }
    
    .slider-nav-button {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .post-content {
        padding: 1.5rem;
    }
    
    .post-content .post-title {
        font-size: 2rem;
    }
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.nav-post {
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: block;
}

.nav-post:hover {
    border-color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.nav-post.next-post {
    text-align: right;
}

.nav-label {
    font-size: 0.875rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.25rem;
}

.nav-title {
    font-weight: 600;
    color: #0f172a;
    display: block;
}

@media (max-width: 768px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-post.next-post {
        text-align: left;
    }
}

/* Page Content Styles */
.page-content {
    background: white;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.5;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(14, 165, 233, 0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #0ea5e9;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #374151;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.form-status.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.archive-note {
    background: rgba(14, 165, 233, 0.05);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 2.5rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #0ea5e9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-1px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card {
    animation: fadeInUp 0.5s ease forwards;
}

.post-card:nth-child(even) {
    animation-delay: 0.1s;
}

.post-card:nth-child(3n) {
    animation-delay: 0.2s;
}