/*
Theme Name: Soclyme
Theme URI: https://yoursite.com
Version: 1.0.0
Requires at least: 5.0
Requires PHP: 5.6
Tested up to: 6.7
Description: A clean, modern dark theme inspired by thedankoe.com. Perfect for personal blogs with a minimalist design.
Author: Soclyme
Author URI: https://yoursite.com
Tags: blog, dark, minimalist, modern, responsive
Text Domain: soclyme

License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* ------------------------------------------------------------------------- *
 *  Reset
/* ------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, 
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, 
samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, 
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, 
section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }

* { box-sizing: border-box; }

body { 
    background: #000; 
    font-size: 1.125rem; 
    line-height: 1.625; 
    color: #e8e8e8; 
    font-weight: 400;
    letter-spacing: 0.01em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: #fff; text-decoration: none; }
a:hover { color: #999; }
img { max-width: 100%; height: auto; display: block; }
a, a:before, a:after { transition: all 0.3s ease; }

.left, .alignleft { float: left; }
.right, .alignright { float: right; }
.aligncenter { margin-left: auto; margin-right: auto; display: block; }

.clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.group:before, .group:after { content: ""; display: table; }
.group:after { clear: both; }

/* ------------------------------------------------------------------------- *
 *  Typography
/* ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { 
    color: #fff; 
    font-weight: 600; 
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
}

h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; margin-bottom: 16px; letter-spacing: -0.025em; }
h3 { font-size: 1.75rem; margin-bottom: 14px; }
h4 { font-size: 1.375rem; margin-bottom: 12px; }
h5 { font-size: 1.125rem; margin-bottom: 10px; }
h6 { font-size: 0.875rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }

p { margin-bottom: 20px; }

/* ------------------------------------------------------------------------- *
 *  Page Wrapper
/* ------------------------------------------------------------------------- */
.page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* ------------------------------------------------------------------------- *
 *  Header
/* ------------------------------------------------------------------------- */
.header {
    padding: 24px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-branding {
    flex-shrink: 0;
}

.header-logo {
    display: block;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.custom-logo-link {
    display: block;
}

.custom-logo-link img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.header-cta-link {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-cta-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  Main Content
/* ------------------------------------------------------------------------- */
.main {
    padding-top: 80px;
}

/* ------------------------------------------------------------------------- *
 *  Hero Section
/* ------------------------------------------------------------------------- */
.hero-section {
    padding: 120px 40px 100px;
    text-align: center;
    background: #000;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: 0.06em;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    color: #888;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-cta-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #ddd;
    transform: translateY(-2px);
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
}

.hero-cta-btn-secondary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  Resources Section
/* ------------------------------------------------------------------------- */
.resources-section {
    padding: 80px 40px;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-heading {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #444;
    margin-bottom: 8px;
}

.resources-subheading {
    text-align: center;
    font-size: 24px;
    color: #888;
    margin-bottom: 60px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.resource-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.resource-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-card-link {
    display: block;
    color: inherit;
}

.resource-card-link:hover {
    color: inherit;
}

.resource-content {
    padding: 24px;
}

.resource-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.resource-content p {
    font-size: 15px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-link {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}

.resource-link:hover {
    color: #999;
    border-color: #999;
    background: none;
    padding: 0;
}

.resource-card-cta {
    background: #fff;
    color: #000;
    grid-column: span 2;
    text-align: center;
    padding: 40px;
}

.resource-card-cta .resource-content h3 {
    color: #000;
}

.resource-card-cta .resource-content p {
    color: #333;
    max-width: 500px;
    margin: 0 auto 20px;
}

.resource-card-cta .resource-link {
    color: #000;
    border-bottom-color: #000;
}

.resource-card-cta .resource-link:hover {
    color: #666;
    border-color: #666;
}

/* ------------------------------------------------------------------------- *
 *  Blog Section
/* ------------------------------------------------------------------------- */
.blog-section {
    padding: 80px 40px;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-heading {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 8px;
}

.blog-subheading {
    text-align: center;
    font-size: 24px;
    color: #aaa;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-home {
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-home .blog-card-thumb {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.blog-card-home .blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-home:hover .blog-card-thumb img {
    transform: scale(1.03);
}

.blog-card-home .blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-home .blog-card-title a {
    color: #fff;
}

.blog-card-home .blog-card-title a:hover {
    color: #999;
}

.blog-card-home .blog-card-excerpt {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-read-more {
    margin-top: auto;
}

.blog-card-home .blog-card-meta {
    font-size: 14px;
    color: #555;
    display: flex;
    gap: 12px;
}

.blog-card-home .blog-card-meta a {
    color: #666;
}

.blog-card-home .blog-card-meta a:hover {
    color: #fff;
}

.blog-card-separator {
    color: #444;
}

.blog-card-read-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.blog-card-read-more:hover {
    color: #999;
    border-color: #999;
}

.blog-card-thumb-link {
    display: block;
}

.blog-card-thumb-link:hover .blog-card-thumb img {
    transform: scale(1.03);
}

.blog-load-more {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    display: inline-block;
    background: transparent;
    color: #888;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border: 1px solid #333;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  About Section
/* ------------------------------------------------------------------------- */
.about-section {
    padding: 100px 40px;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.about-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #444;
    margin-bottom: 8px;
}

.about-subheading {
    font-size: 42px;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    text-align: left;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bio {
    text-align: left;
}

.about-bio .about-lead {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-bio p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ------------------------------------------------------------------------- *
 *  Footer
/* ------------------------------------------------------------------------- */
.site-footer {
    padding: 80px 40px 40px;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

.site-footer-simple {
    padding: 40px;
    background: #000;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .custom-logo-link {
    display: inline-block;
}

.footer-logo .custom-logo-link img,
.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-tagline {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-description {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #888;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    border-color: #fff;
    background: #1a1a1a;
}

.footer-subscribe {
    margin-bottom: 30px;
}

.footer-subscribe-title {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-subscribe p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-subscribe-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-subscribe-btn:hover {
    background: #ddd;
    transform: translateY(-2px);
}

.footer-copyright {
    font-size: 0.875rem;
    color: #555;
}

/* ------------------------------------------------------------------------- *
 *  Archive / Category Page
/* ------------------------------------------------------------------------- */
.archive-header {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 60px 40px 40px;
    text-align: center;
}

.archive-header .single-post-title {
    font-size: 42px;
    margin-bottom: 0;
}

.site-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.blog-card-list {
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
}

.blog-card-list:first-child {
    padding-top: 0;
}

.blog-card-list:last-child {
    border-bottom: none;
}

.blog-card-list .blog-card-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 12px;
}

.blog-card-list .blog-card-category a {
    color: #888;
}

.blog-card-list .blog-card-category a:hover {
    color: #fff;
}

.blog-card-list .blog-card-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-card-list .blog-card-title a {
    color: #fff;
    transition: color 0.3s ease;
}

.blog-card-list .blog-card-title a:hover {
    color: #888;
}

.blog-card-list .blog-card-excerpt {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-list .blog-card-meta {
    font-size: 14px;
    color: #555;
    display: flex;
    gap: 12px;
}

.blog-card-list .blog-card-meta a {
    color: #666;
}

.blog-card-list .blog-card-meta a:hover {
    color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  Single Post
/* ------------------------------------------------------------------------- */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
}

.single-post-header {
    margin-bottom: 40px;
}

.single-post-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 16px;
}

.single-post-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.single-post-meta {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-post-meta .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.single-post-meta .byline {
    color: #888;
}

.single-post-meta .byline a {
    color: #fff;
}

.single-post-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
}

.entry {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e0e0e0;
    letter-spacing: 0.01em;
}

.entry p {
    margin-bottom: 1.75rem;
}

.entry a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry a:hover {
    color: #999;
}

.entry h1, .entry h2, .entry h3, .entry h4 {
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.entry h2 { font-size: 2rem; }
.entry h3 { font-size: 1.625rem; }
.entry h4 { font-size: 1.375rem; }

.entry img {
    border-radius: 12px;
    margin: 2rem 0;
}

.entry blockquote {
    border-left: 3px solid #444;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #999;
    line-height: 1.75;
}

.entry ul, .entry ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry li {
    margin-bottom: 8px;
    list-style: disc;
}

.entry ol li {
    list-style: decimal;
}

.entry code {
    background: #1a1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 0.9em;
}

.entry pre {
    background: #1a1a1a;
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------------------- *
 *  Post Tags
/* ------------------------------------------------------------------------- */
.post-tags {
    margin: 40px 0;
}

.post-tags a {
    display: inline-block;
    background: #111;
    color: #888;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.post-tags a:hover {
    background: #222;
    color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  Author Bio
/* ------------------------------------------------------------------------- */
.author-bio {
    margin: 60px 0;
    padding: 40px;
    background: #0a0a0a;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.author-bio-avatar {
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-bio-content {
    flex-grow: 1;
}

.author-bio-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.author-bio-description {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ------------------------------------------------------------------------- *
 *  Post Navigation
/* ------------------------------------------------------------------------- */
.post-navigation {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    display: flex;
    flex-direction: column;
}

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

.post-navigation .nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 8px;
}

.post-navigation .nav-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.post-navigation a:hover .nav-title {
    color: #888;
}

/* ------------------------------------------------------------------------- *
 *  Related Posts
/* ------------------------------------------------------------------------- */
.related-posts {
    margin-top: 80px;
}

.related-posts-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #444;
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.related-post-thumb {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-thumb img {
    transform: scale(1.05);
}

.related-post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-title a {
    color: #fff;
}

.related-post-title a:hover {
    color: #888;
}

.related-post-meta {
    font-size: 13px;
    color: #444;
    margin-top: 8px;
}

/* ------------------------------------------------------------------------- *
 *  Comments
/* ------------------------------------------------------------------------- */
.comments-area {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #1a1a1a;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 40px;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-content {
    flex-grow: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.comment-author a {
    color: #fff;
}

.comment-meta {
    font-size: 13px;
    color: #444;
    margin-bottom: 12px;
}

.comment-meta a {
    color: #444;
}

.comment-text {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
}

.comment-reply {
    margin-top: 12px;
}

.comment-reply a {
    font-size: 13px;
    color: #666;
}

.comment-reply a:hover {
    color: #fff;
}

/* ------------------------------------------------------------------------- *
 *  Comments Form
/* ------------------------------------------------------------------------- */
.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.themeform input[type="text"],
.themeform input[type="email"],
.themeform textarea {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    color: #aaa;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 16px;
}

.themeform input:focus,
.themeform textarea:focus {
    outline: none;
    border-color: #333;
    color: #fff;
}

.themeform input[type="submit"] {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.themeform input[type="submit"]:hover {
    background: #ddd;
}

/* ------------------------------------------------------------------------- *
 *  Pagination
/* ------------------------------------------------------------------------- */
.pagination {
    margin: 60px 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #111;
    color: #888;
    border-radius: 50%;
    margin: 0 4px;
    font-size: 14px;
    font-weight: 500;
}

.pagination .page-numbers:hover {
    background: #222;
    color: #fff;
}

.pagination .page-numbers.current {
    background: #fff;
    color: #000;
}

/* ------------------------------------------------------------------------- *
 *  404 Page
/* ------------------------------------------------------------------------- */
.error404-content {
    text-align: center;
    padding: 100px 40px;
}

.error404-title {
    font-size: 120px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.error404-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typewriter-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    font-size: 0.5em;
    font-weight: 700;
}

/* ------------------------------------------------------------------------- *
 *  Responsive
/* ------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }
    
    .hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card-cta {
        grid-column: span 1;
    }
    
    .blog-card-home .blog-card-title {
        font-size: 18px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-navigation .nav-next {
        text-align: left;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio-avatar {
        margin: 0 auto;
    }
    
    .single-post {
        max-width: 100%;
        padding: 60px 20px;
    }
    
    .site-content {
        max-width: 100%;
        padding: 60px 20px;
    }
    
    .site-footer {
        max-width: 100%;
        padding: 60px 20px;
    }
    
    .single-post-title {
        font-size: 32px;
    }
    
    .about-section,
    .resources-section,
    .blog-section,
    .site-footer {
        padding: 60px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .about-bio {
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
    }
}
