.tool-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    .tool-textarea {
        width: 100%;
        height: 220px;
        padding: 16px;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 15px;
        line-height: 1.6;
        resize: vertical;
        background: var(--bg-light);
        color: var(--text-dark);
        transition: border-color 0.2s;
    }
    .tool-textarea:focus {
        outline: none;
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    .btn-tool {
        padding: 8px 16px;
        border: none;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .btn-tool:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-tool-outline {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--border-light);
    }
    .btn-tool-outline:hover { background: var(--bg-light); border-color: var(--primary-light); }
    .tool-status {
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 13px;
        margin-bottom: 12px;
        font-weight: 500;
    }
    .tool-status.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
    .tool-status.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
    .stat-card {
        background: var(--bg-white);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 20px 16px;
        text-align: center;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .stat-card:hover {
        border-color: var(--primary-light);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
    }
    .stat-number {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1;
        margin-bottom: 6px;
    }
    .stat-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .stat-sub {
        font-size: 11px;
        color: var(--text-light);
        margin-top: 4px;
    }

    /* Platform Limits */
    .limit-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .limit-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .limit-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .limit-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
    }
    .limit-count {
        font-size: 12px;
        font-weight: 500;
        color: var(--text-light);
        font-variant-numeric: tabular-nums;
    }
    .limit-bar-bg {
        width: 100%;
        height: 8px;
        background: var(--bg-light);
        border-radius: 4px;
        overflow: hidden;
    }
    .limit-bar {
        height: 100%;
        border-radius: 4px;
        transition: width 0.3s ease, background-color 0.3s ease;
        background: #22c55e;
    }
    .limit-bar.warning { background: #eab308; }
    .limit-bar.danger { background: #ef4444; }

    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .stat-number { font-size: 26px; }
        .tool-textarea { height: 180px; font-size: 16px; }
    }
    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-card { padding: 16px 12px; }
        .stat-number { font-size: 24px; }
    }