/* ==========================================================================
   Colin's Forge - Main Stylesheet
   A forge-inspired theme with flames, embers, and warm metallic tones
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Forge Theme)
   -------------------------------------------------------------------------- */
:root {
    /* Core Colors */
    --primary-dark: #1A1614;
    --background-warm: #2D2926;
    --background-soft: #F5F0EB;
    --background-white: #FFFAF5;

    /* Fire/Ember Colors */
    --accent-ember: #FF6B35;
    --accent-ember-hover: #E85A24;
    --accent-flame: #FFB347;
    --accent-flame-light: #FFD699;
    --accent-molten: #DC2626;
    --accent-heat: #FF4500;

    /* Metallic Accents */
    --metallic-gold: #D4A14A;
    --metallic-copper: #B87333;
    --metallic-silver: #A8A5A0;

    /* Text Colors */
    --text-light: #FFFAF5;
    --text-dark: #4A4543;
    --text-muted: #7A7573;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.1);
    --shadow-md: 0 4px 6px rgba(26, 22, 20, 0.12);
    --shadow-lg: 0 10px 25px rgba(26, 22, 20, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.4);
    --shadow-ember: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 70px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-ember);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-ember-hover);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Flame Text Effect */
.text-flame {
    background: linear-gradient(
        180deg,
        var(--text-light) 0%,
        var(--accent-flame-light) 20%,
        var(--accent-flame) 40%,
        var(--accent-ember) 70%,
        var(--accent-molten) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ember Glow Text */
.text-ember {
    color: var(--accent-ember);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* --------------------------------------------------------------------------
   Layout Containers
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.section-warm {
    background-color: var(--background-warm);
    color: var(--text-light);
}

.section-soft {
    background-color: var(--background-soft);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.logo:hover {
    color: var(--accent-flame);
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-flame));
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-flame);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-dark);
    overflow: hidden;
    padding-top: var(--nav-height);
}

/* Forge Glow Effects */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 600px at 30% 70%, rgba(255, 107, 53, 0.25) 0%, transparent 50%),
        radial-gradient(circle 400px at 70% 40%, rgba(255, 179, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle 800px at 50% 100%, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Noise Texture Overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Floating Ember Particles */
.ember-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-flame);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-ember), 0 0 12px var(--accent-flame);
    animation: ember-float 8s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes ember-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Page Header (for non-homepage) */
.page-header {
    padding: 120px 0 60px;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 400px at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle 300px at 80% 30%, rgba(255, 179, 71, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-ember), var(--accent-ember-hover));
    color: var(--text-light);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-ember);
    border: 2px solid var(--accent-ember);
}

.btn-secondary:hover {
    background: var(--accent-ember);
    color: var(--text-light);
}

.btn-light {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-light:hover {
    background: var(--accent-flame);
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Portfolio Card */
.portfolio-card {
    position: relative;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-flame));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-ember);
}

.portfolio-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--background-warm);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.portfolio-card-content {
    padding: 20px;
}

.portfolio-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.portfolio-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.portfolio-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-card-price {
    font-weight: 700;
    color: var(--accent-ember);
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Tags
   -------------------------------------------------------------------------- */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-ember);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--accent-ember);
    color: var(--text-light);
}

.tag-filter {
    cursor: pointer;
}

.tag-filter.active {
    background: var(--accent-ember);
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Grid Layouts
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e0dcd8;
    border-radius: 8px;
    background: var(--background-white);
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-ember);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-error {
    color: var(--accent-molten);
    font-size: 0.875rem;
    margin-top: 5px;
}

/* --------------------------------------------------------------------------
   Search Box
   -------------------------------------------------------------------------- */
.search-box {
    position: relative;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    font-size: 1rem;
    border: 2px solid #e0dcd8;
    border-radius: 30px;
    background: var(--background-white);
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-ember);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--metallic-silver);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--accent-flame);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--metallic-silver);
}

.footer-links a:hover {
    color: var(--accent-flame);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--metallic-silver);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Featured Section
   -------------------------------------------------------------------------- */
.featured-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-warm) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--metallic-silver);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Flash Messages
   -------------------------------------------------------------------------- */
.flash-message {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: flashSlideIn 0.4s ease-out;
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-success {
    background: rgba(76, 175, 80, 0.95);
    color: white;
    border: none;
}

.flash-error {
    background: rgba(220, 38, 38, 0.95);
    color: white;
    border: none;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin-left: 0 !important;
    }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden { display: none; }
.visible { display: block; }

/* --------------------------------------------------------------------------
   Comments Section
   -------------------------------------------------------------------------- */
.comments-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.comments-heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.comment-count {
    color: #666;
    font-weight: 400;
}

.no-comments {
    color: #666;
    font-style: italic;
    padding: 30px 0;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.comment-item {
    background: #f5f5f0;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #888;
}

.comment-content {
    line-height: 1.7;
    color: #333;
}

.comment-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.report-comment-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.report-comment-btn:hover {
    color: #dc2626;
}

.comment-replies {
    margin-top: 20px;
    padding-left: 30px;
    border-left: 2px solid var(--accent-ember);
}

.comment-reply {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 8px;
}

.comment-reply:first-child {
    margin-top: 0;
}

.owner-badge {
    display: inline-block;
    background: var(--accent-ember);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* Comment Form */
.comment-form-container {
    background: var(--background-soft);
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
}

.comment-form-container h3 {
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 500;
}

.comment-form .required {
    color: var(--accent-ember);
}

.comment-form input,
.comment-form textarea,
.comment-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--background-warm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus,
.comment-form select:focus {
    outline: none;
    border-color: var(--accent-ember);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--text-muted);
}

.char-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: right;
}

.char-counter.warning {
    color: var(--flame-gold);
}

.char-counter.error {
    color: var(--accent-molten);
}

.captcha-group {
    max-width: 200px;
}

.captcha-input {
    width: 100px !important;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.comments-closed {
    background: var(--background-soft);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

/* Report Modal */
.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.report-modal.active {
    display: flex;
}

.report-modal-content {
    background: var(--background-warm);
    padding: 35px;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    position: relative;
}

.report-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.report-modal-close:hover {
    color: var(--accent-ember);
}

.report-modal h3 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.report-modal .form-group {
    margin-bottom: 20px;
}

.report-modal label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
}

.report-modal select,
.report-modal textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--background-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
}

.report-modal select:focus,
.report-modal textarea:focus {
    outline: none;
    border-color: var(--accent-ember);
}

/* Responsive */
@media (max-width: 768px) {
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }

    .comment-replies {
        padding-left: 15px;
    }

    .comment-item {
        padding: 20px;
    }
}
