/* Scoped styles for paragraph counter tool */
        .pc-tool-wrapper * {
            box-sizing: border-box;
        }
        
        .pc-tool-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            padding: 20px 0;
            background-color: #f8f9fa;
        }
        
        .pc-primary-color {
            color: #9d00b3;
        }
        
        .pc-bg-primary {
            background-color: #9d00b3;
        }
        
        .pc-border-primary {
            border-color: #9d00b3 !important;
        }
        
        .pc-btn-primary {
            background-color: #9d00b3;
            border-color: #9d00b3;
            color: white;
            transition: all 0.3s ease;
        }
        
        .pc-btn-primary:hover {
            background-color: #c000dd;
            border-color: #c000dd;
            color: white;
        }
        
        .pc-hero-section {
            background: linear-gradient(135deg, #9d00b3 0%, #9d00b3 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 20px;
            margin-bottom: 40px;
        }
        
        .pc-hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .pc-hero-section p {
            font-size: 1.2rem;
            opacity: 0.95;
        }
        
        .pc-counter-container {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .pc-textarea {
            width: 100%;
            min-height: 300px;
            padding: 20px;
            border: 2px solid #dee2e6;
            border-radius: 10px;
            font-size: 16px;
            line-height: 1.6;
            transition: border-color 0.3s ease;
            resize: vertical;
        }
        
        .pc-textarea:focus {
            outline: none;
            border-color: #9d00b3;
            box-shadow: 0 0 0 0.2rem rgba(225, 0, 255, 0.15);
        }
        
        .pc-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .pc-stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .pc-stat-card:hover {
            border-color: #9d00b3;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(225, 0, 255, 0.2);
        }
        
        .pc-stat-label {
            font-size: 14px;
            color: #6c757d;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .pc-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #9d00b3;
            line-height: 1;
        }
        
        .pc-action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .pc-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .pc-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #9d00b3, #9d00b3);
            border-radius: 2px;
        }
        
        .pc-how-to-use {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .pc-step {
            display: flex;
            align-items: start;
            margin-bottom: 30px;
        }
        
        .pc-step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #9d00b3, #9d00b3);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .pc-step-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 10px;
        }
        
        .pc-step-content p {
            color: #6c757d;
            margin: 0;
            line-height: 1.6;
        }
        
        .pc-faq-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .pc-faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 25px;
        }
        
        .pc-faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .pc-faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .pc-faq-question i {
            color: #9d00b3;
            margin-right: 15px;
            font-size: 1.1rem;
        }
        
        .pc-faq-answer {
            color: #6c757d;
            line-height: 1.7;
            margin-left: 40px;
        }
        
        .pc-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #9d00b3, #9d00b3);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px;
        }
        
        @media (max-width: 768px) {
            .pc-hero-section h1 {
                font-size: 2rem;
            }
            
            .pc-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pc-stat-value {
                font-size: 24px;
            }
        }