:root {
    --bg-color: #111111;
    --second-bg-color: #18181b;
    --main-color: #b91c1c;
    --text-color: #f3f4f6;
    --secondary-color: #d1d3d9;
    --card-bg: rgba(24, 24, 27, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --red-glow-shadow: rgba(185, 28, 28, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    /* Soft vignette overlay to blend the matrix rain */
    background-image: radial-gradient(circle at center, transparent 0%, #111 90%);
    background-attachment: fixed;
    /* Ensures it stays over the fixed canvas */
    color: var(--text-color);
    font-family: 'Cairo', 'Roboto', sans-serif;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Changa', 'Almarai', sans-serif;
    font-weight: 700;
}

section {
    min-height: auto;
    padding: 6rem 9% 2rem;
}

.heading {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading span {
    color: var(--main-color);
}

.btn-box {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: start;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--main-color);
    border-radius: 9999px;
    /* Pill shape */
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid var(--main-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn.lets-talk {
    background: transparent;
    color: var(--text-color);
    border-color: var(--glass-border);
}

.btn.lets-talk:hover {
    background: var(--glass-border);
    color: #fff;
    border-color: #fff;
}

.header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 1.2rem 4rem;
    background: rgba(10, 10, 10, 0.95);
    /* Darker, almost opaque like image */
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    /* Full Pill Shape */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Adjust top padding of home section to account for new header flow */
.home {
    padding-top: 18rem;
}

.logo {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    font-family: 'Changa', sans-serif;
}

.logo .dot {
    color: var(--main-color);
}

.navbar a {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-left: 3rem;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid var(--glass-border);
}

.lang-switcher i {
    font-size: 1.4rem;
    color: var(--main-color);
}

#lang-select {
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

#lang-select option {
    background: #111;
}

#menu-icon {
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14rem;
    padding-bottom: 6rem;
}

.home-content {
    max-width: 60rem;
}

.home-content .subtitle {
    font-size: 1.8rem;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Changa', sans-serif;
}

.home-content h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.home-content p {
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
    color: var(--secondary-color);
    max-width: 50rem;
}

.glowing-image {
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--glass-border);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    cursor: pointer;
}

.glowing-image:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 30px rgba(185, 28, 28, 0.4);
    /* Red glow on hover */
    border-color: var(--main-color);
}

.glowing-image .home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Styles */
#image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(185, 28, 28, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 3rem;
    right: 4rem;
    color: #f1f1f1;
    font-size: 5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--main-color);
}

.social-media {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.social-media a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    transform: translateY(-3px);
}

.services-container,
.offers-container,
.portfolio-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Services Box - Reverted to Original Style */
.services-box {
    flex: 1 1 30rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    transition: 0.3s ease;
}

/* Offers Box - Compact & Small */
.offers-box {
    flex: 1 1 280px;
    max-width: 320px;
    /* Even smaller width */
    min-height: 400px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.services-box:hover,
.offers-box:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
    background: rgba(185, 28, 28, 0.05);
}

.icon-box {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.services-box h3,
.offers-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.services-box p,
.offers-box p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-grow: 1;
    /* Pushes content apart */
}

.price-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 9999px;
    padding: 0.5rem 2rem;
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid var(--main-color);
    transition: 0.3s;
}

.price-wrapper:hover {
    box-shadow: 0 0 15px rgba(185, 28, 28, 0.4);
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    filter: blur(8px);
    /* Hidden by default */
    user-select: none;
    transition: 0.4s ease;
    opacity: 0.7;
}

.price-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 1;
    transition: 0.3s;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Revealed State */
.price-wrapper.revealed .price-value {
    filter: blur(0);
    opacity: 1;
}

.price-wrapper.revealed .price-overlay-text {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.8);
}

.portfolio-box {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    width: 350px;
    height: 250px;
    border: 1px solid var(--glass-border);
    background: var(--second-bg-color);
}

.portfolio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-box:hover img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.portfolio-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.portfolio-box:hover .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.portfolio-info a {
    position: absolute;
    top: -50px;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-details {
    padding: 2.5rem;
}

.video-details h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.interaction-bar {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.action-btn {
    background: none;
    color: var(--secondary-color);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.3s;
}

.action-btn:hover,
.action-btn.active {
    color: var(--main-color);
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    background: var(--card-bg);
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #fff;
    padding: 2rem;
    text-align: left;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-item.active {
    border-color: var(--glass-border);
    background: var(--second-bg-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 2rem;
    color: var(--secondary-color);
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
}

/* Contact Layout */
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Form Styles (Left) */
.contact form {
    flex: 1.5;
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact form .input-box {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.contact form label {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 600;
    margin-left: 0.5rem;
}

.contact form input,
.contact form textarea {
    width: 100%;
    background: #0b0b0b;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.6rem;
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: var(--main-color);
    background: #111;
}

.contact form .btn {
    width: 100%;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 1.8rem;
}

/* Info Column (Right) */
.contact-info-container {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Cards */
.info-card {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--main-color);
}

.icon-circle {
    width: 5rem;
    height: 5rem;
    background: rgba(185, 28, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card div h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-card div p {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/* Social & Response Sections */
.social-section,
.response-section {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 2.5rem;
    border-radius: 1.5rem;
}

.social-section h3,
.response-section h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.response-section p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Form Override for Input Box flex direction */
.contact form .input-box {
    flex-direction: column;
}

.footer {
    padding: 3rem 9%;
    background: #0b0b0b;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.footer-icon-top a {
    padding: 1rem;
    background: var(--main-color);
    border-radius: 1rem;
    color: #fff;
    font-size: 2rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 4rem 4% 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 2rem 4%;
        background: rgba(17, 17, 17, 0.95);
        border: none;
        border-bottom: 1px solid var(--glass-border);
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        padding: 1rem 4%;
        background: #111;
        border: none;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0;
        display: none;
        box-shadow: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        margin: 2rem 0;
        font-size: 2rem;
    }

    .home {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 12rem;
    }

    .home-content {
        max-width: 100%;
    }

    .btn-box {
        justify-content: center;
    }

    .glowing-image {
        width: 25rem;
        height: 25rem;
        margin-bottom: 4rem;
    }

    .contact form .input-box {
        flex-direction: column;
    }
}

/* --- Luxury Tech Intro Styles --- */
#tech-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

.tech-container {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 2;
}

/* Glitch Text */
.glitch {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #0ff;
    z-index: -1;
    animation: glitch-anim-1 0.3s infinite linear alternate-reverse;
}

.glitch::after {
    color: #f0f;
    z-index: -2;
    animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 9999px, 10px, 0);
        transform: translate(-2px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 80px, 0);
        transform: translate(2px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(80px, 9999px, 90px, 0);
        transform: translate(2px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 40px, 0);
        transform: translate(-2px, 0);
    }
}

/* Counter */
.counter-wrapper {
    font-size: 8rem;
    color: var(--main-color);
    font-weight: 900;
    text-shadow: 0 0 20px rgba(185, 28, 28, 0.5);
    margin-bottom: 2rem;
}

.symbol {
    font-size: 4rem;
    vertical-align: super;
}

/* Loading Bar */
.loading-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
    transition: width 0.1s linear;
}

/* Scanlines */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* --- Secure Media Terminal --- */
.video-card {
    background: #050505 !important;
    border: 1px solid #333 !important;
    border-radius: 1rem !important;
    overflow: hidden;
    padding: 0 !important;
    /* Reset padding for terminal look */
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.secure-header {
    background: #111;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.terminal-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-title {
    color: #666;
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.terminal-title i {
    color: var(--main-color);
}

.video-wrapper {
    background: #000;
    border-bottom: 1px solid #333;
    margin: 0;
}

.video-details {
    padding: 2rem;
    text-align: left;
}

.video-details h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.video-details p {
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Secure Comments Section */
.comments-section {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Improved Input Section */
.input-comment {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #0f0f0f;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #333;
}

.input-comment input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 0.5rem;
    padding: 1.2rem 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-family: inherit;
    /* Remove courier font for inputs */
    outline: none;
    transition: 0.3s;
}

.input-comment input:focus {
    border-color: var(--main-color);
    background: #222;
    box-shadow: 0 0 10px rgba(185, 28, 28, 0.2);
}

.input-group {
    display: flex;
    gap: 1rem;
}

.send-comment {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    width: 5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.send-comment:hover {
    background: #a31616;
    transform: scale(1.05);
}

/* Scrollable Comments List */
#comments-list-container {
    max-height: 300px;
    /* Limit height */
    overflow-y: auto;
    /* Enable vertical scroll */
    padding-right: 1rem;
    /* Space for scrollbar */
    margin-top: 1.5rem;
}

/* Custom Scrollbar for Comments */
#comments-list-container::-webkit-scrollbar {
    width: 6px;
}

#comments-list-container::-webkit-scrollbar-track {
    background: #0f0f0f;
    border-radius: 3px;
}

#comments-list-container::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

#comments-list-container::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

/* Comment Item Compact Override */
.comment-item {
    border-bottom: 1px solid #222;
    padding: 1.2rem 0;
    /* Reduced padding */
    display: flex;
    gap: 1.2rem;
    /* Reduced gap */
}

.comment-avatar {
    width: 3.5rem;
    /* Smaller avatar */
    height: 3.5rem;
    font-size: 1.4rem;
    /* Smaller icon */
}

.comment-content h4 {
    font-size: 1.5rem;
    /* Smaller text */
    margin-bottom: 0.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.comment-date {
    font-size: 1.1rem;
    /* Smaller date */
}

.comment-content p {
    font-size: 1.3rem;
    /* Smaller comment body */
}

/* Ensure avatar and content are aligned */
gap: 1.5rem;
}

.comment-avatar {
    width: 4.5rem;
    height: 4.5rem;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--main-color);
    border: 1px solid #333;
    flex-shrink: 0;
}

.comment-content h4 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.comment-date {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    opacity: 0.8;
}

.comment-content p {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.5;
}

```