/*
Theme Name: Rekowski Tech
Theme URI: https://rekowski.tech
Author: Maciej Rekowski
Author URI: https://rekowski.tech
Description: A modern WordPress theme for tech blogs with glassmorphism design and animated gradients
Version: 1.0.0
License: GPL v2 or later
Text Domain: rekowski-tech
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Root Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0f;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-color: #667eea;
    --code-bg: rgba(0, 0, 0, 0.5);
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--dark-bg);
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    top: -200px;
    left: -200px;
    animation-duration: 15s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-gradient);
    bottom: -150px;
    right: -150px;
    animation-duration: 18s;
    animation-delay: 5s;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -100px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(-100px, -50px) scale(1.05);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.admin-bar-showing {
    top: 32px;
}

@media screen and (max-width: 782px) {
    nav.admin-bar-showing {
        top: 46px;
    }
}

nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 15, 0.9);
}

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

.logo {
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-new-post {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-new-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Content Area */
.content {
    margin-top: 100px;
    padding: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

body.admin-bar .content {
    margin-top: 132px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .content {
        margin-top: 146px;
    }
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-filter {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tag-filter.active,
.tag-filter:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.07);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    transition: opacity 0.3s ease;
}

.blog-grid.loading {
    opacity: 0.5;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-gradient);
}

.author-name {
    font-size: 14px;
    color: var(--text-secondary);
}

.read-time {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.page-dots {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

/* Single Article Styles */
.article-header {
    margin-top: 100px;
    padding: 80px 50px 50px;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
    text-align: center;
}

body.admin-bar .article-header {
    margin-top: 132px;
}

.article-category {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 16px;
    flex-wrap: wrap;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.article-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.article-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.article-content code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #4facfe;
    font-size: 16px;
}

.article-content pre {
    background: var(--code-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    overflow-x: auto;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #00f2fe;
    display: block;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-content a:hover {
    text-decoration: underline;
}

/* WordPress Block Styles */
.wp-block-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.wp-block-code {
    background: var(--code-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    overflow-x: auto;
}

/* Comments Section */
.comments-area {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 50px;
}

.comments-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 80px;
    display: grid;
    gap: 40px;
}

.comment-item {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-body {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comment-body:hover {
    border-color: rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.comment-author-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.comment-meta {
    margin-bottom: 15px;
}

.comment-author-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.comment-author-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-author-name a:hover {
    color: var(--accent-color);
}

.comment-metadata {
    display: flex;
    gap: 15px;
    align-items: center;
}

.comment-metadata time {
    color: var(--text-secondary);
    font-size: 14px;
}

.edit-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.edit-link a:hover {
    text-decoration: underline;
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.comment-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.comment-awaiting-moderation {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    padding: 10px 15px;
    border-radius: 8px;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.comment-reply-link:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Nested Comments */
.children {
    list-style: none;
    margin-top: 40px;
    margin-left: 40px;
    padding-left: 40px;
    border-left: 3px solid var(--glass-border);
    position: relative;
}

.children::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

.children .comment-body {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Comment Form */
.comment-respond {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.comment-respond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 30px 30px 0 0;
}

.comment-reply-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.required {
    color: #f5576c;
    font-weight: 700;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 18px 25px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    resize: vertical;
    backdrop-filter: blur(10px);
}

.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder {
    color: var(--text-secondary);
    font-style: italic;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.comment-form textarea {
    min-height: 180px;
    line-height: 1.8;
    font-size: 18px;
}

.comment-form-comment {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    justify-self: center;
    width: fit-content;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Comment Navigation */
.comment-navigation {
    margin: 40px 0;
    text-align: center;
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.comment-navigation a {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.no-comments {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin: 40px 0;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

#cancel-comment-reply-link:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 50px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.share-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.share-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Related Articles */
.related-articles {
    background: rgba(255, 255, 255, 0.02);
    padding: 80px 50px;
    margin-top: 50px;
}

.related-articles h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.related-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.related-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.related-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Footer */
.site-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    padding: 50px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px;
    }
    
    .blog-header h1 {
        font-size: 48px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        padding: 15px 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .article-content {
        padding: 30px;
    }
    
    .article-header {
        padding: 60px 30px 30px;
    }
    
    .article-header h1 {
        font-size: 32px;
    }
    
    .article-content p,
    .article-content li {
        font-size: 16px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        width: 100%;
    }
    
    /* Comments Responsive */
    .comments-area {
        padding: 0 30px;
    }
    
    .comment-body {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .comment-author-avatar {
        align-self: flex-start;
    }
    
    .comment-author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .children {
        margin-left: 20px;
        padding-left: 20px;
    }
    
    .comment-respond {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .comment-reply-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    
    /* Comments Mobile */
    .comments-title {
        font-size: 36px;
    }
    
    .comment-reply-title {
        font-size: 28px;
    }
    
    .children {
        margin-left: 10px;
        padding-left: 15px;
        border-left-width: 2px;
    }
    
    .comment-respond {
        padding: 30px 20px;
    }
    
    .comment-form {
        gap: 20px;
    }
}