.wcrt-container {
    max-width: 950px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.wcrt-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.wcrt-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wcrt-icon i {
    font-size: 38px;
    color: #fff;
}

.wcrt-header h2 {
    margin: 0;
    font-size: 42px;
    color: #111827;
    font-weight: 700;
}

.wcrt-header p {
    margin-top: 8px;
    color: #6b7280;
    font-size: 16px;
}

.wcrt-textarea-box {
    margin-top: 20px;
}

#wcrt-text {
    width: 100%;
    min-height: 260px;
    border: 2px dashed #d1d5db;
    border-radius: 18px;
    padding: 25px;
    font-size: 18px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#wcrt-text:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.wcrt-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.wcrt-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

.wcrt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.wcrt-card i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 15px;
}

.wcrt-card h3 {
    font-size: 34px;
    margin: 0;
    color: #111827;
}

.wcrt-card span {
    display: block;
    margin-top: 10px;
    color: #6b7280;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .wcrt-container {
        padding: 20px;
    }

    .wcrt-header {
        flex-direction: column;
        text-align: center;
    }

    .wcrt-header h2 {
        font-size: 32px;
    }

}