/* Dark comment form */
.cool-comment-form {
    background: #5a5a5a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    border: 1px solid #444;
    box-sizing: border-box;
}

.form-title {
    color: #DCDCDC;
    margin: 0 0 15px 0;
    font-size: 1.3em;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-group {
    grid-column: span 2;
}

.input-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #AFEEEE;
    font-size: 0.9em;
}

.cool-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    background: #696969;
  color: white;
    box-sizing: border-box;
}

.cool-input:focus {
    border-color: #00BFFF;
    background: #5a5a5a;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2);
    outline: none;
}

.cool-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    resize: vertical;
    font-size: 14px;
    transition: all 0.2s;
    line-height: 1.5;
    box-sizing: border-box;
    font-family: inherit;
    background: #696969;
    color: white;
}

.cool-textarea:focus {
    border-color: #00BFFF;
    background: #5a5a5a;
    box-shadow: 0 0 0 2px rgba(0, 191, 255, 0.2);
    outline: none;
}

.submit-btn {
    background: #00BFFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn:hover {
    background: #009ACD;
}

.btn-icon {
    font-size: 1em;
}

@media (max-width: 650px) {
    .cool-comment-form {
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .comment-group {
        grid-column: span 1;
    }

    .cool-input, .cool-textarea {
        padding: 8px 10px;
    }

    .submit-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Dark comment section */
.comments-section {
    margin-top: 40px;
    padding: 25px;
    background: #696969;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.comments-section h3 {
    font-size: 1.5rem;
    color: #DCDCDC;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
}

.comment-item {
    position: relative;
    padding: 18px;
    margin-bottom: 20px;
    background: #5a5a5a;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.comment-author {
    font-weight: 600;
    color: #00BFFF;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 8px;
}

.comment-author::before {
    content: "😊";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f0f4f8;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.comment-item:hover .comment-author::before {
    transform: scale(1.1) rotate(10deg);
    background: #00BFFF;
    color: white;
}

.comment-date {
    font-weight: 100;
    color: #708090;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 8px;
}

.comment-text {
    display: block;
    color: #AFEEEE;
    line-height: 1.5;
    font-size: 0.95rem;
}

.comment-text a {
    color: #a0c4ff;
    text-decoration: underline;
}

.comment-text a:hover {
    color: #7fb2ff;
}

.comment-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 20px;
    width: 2px;
    height: calc(100% - 40px);
    background: #00BFFF;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .comments-section {
        padding: 15px;
    }

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