    /* Password Strength Checker Tool Specific Styles - Scoped to prevent header/footer conflicts */
    .psc-tool-section {
        font-family: 'Poppins', sans-serif;
    }
    
    .psc-tool-section * {
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .psc-hero {
        background: linear-gradient(135deg, #241553 0%, #3a2475 50%, #241553 100%);
        padding: 70px 0 120px;
        position: relative;
        overflow: hidden;
    }
    
    .psc-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234fb649' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }
    
    .psc-hero-title {
        color: #ffffff;
        font-size: 3rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        position: relative;
        z-index: 1;
    }
    
    .psc-hero-subtitle {
        color: #57baf6;
        font-size: 1.25rem;
        font-weight: 400;
        position: relative;
        z-index: 1;
    }
    
    .psc-hero-badge {
        background: linear-gradient(135deg, #4fb649, #3d9140);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 15px;
        position: relative;
        z-index: 1;
    }
    
    /* Main Tool Card */
    .psc-main-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 25px 80px rgba(36, 21, 83, 0.2);
        padding: 50px;
        margin-top: -80px;
        position: relative;
        z-index: 10;
    }
    
    /* Password Input Section */
    .psc-input-wrapper {
        position: relative;
        margin-bottom: 30px;
    }
    
    .psc-password-input {
        width: 100%;
        padding: 25px 60px 25px 25px;
        font-size: 1.4rem;
        font-family: 'JetBrains Mono', monospace;
        border: 3px solid #e0e0e0;
        border-radius: 16px;
        transition: all 0.3s ease;
        background: #fafafa;
    }
    
    .psc-password-input:focus {
        outline: none;
        border-color: #4fb649;
        box-shadow: 0 0 0 4px rgba(79, 182, 73, 0.15);
        background: #ffffff;
    }
    
    .psc-password-input::placeholder {
        color: #adb5bd;
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
    }
    
    .psc-toggle-visibility {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #6c757d;
        font-size: 1.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 10px;
    }
    
    .psc-toggle-visibility:hover {
        color: #241553;
    }
    
    /* Strength Meter */
    .psc-strength-container {
        margin-bottom: 30px;
    }
    
    .psc-strength-bar-wrapper {
        height: 16px;
        background: #e9ecef;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    
    .psc-strength-bar {
        height: 100%;
        border-radius: 8px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        width: 0%;
    }
    
    .psc-strength-segments {
        display: flex;
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .psc-segment {
        flex: 1;
        height: 8px;
        background: #e9ecef;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .psc-segment.active-very-weak { background: #dc3545; }
    .psc-segment.active-weak { background: #fd7e14; }
    .psc-segment.active-fair { background: #ffc107; }
    .psc-segment.active-strong { background: #57baf6; }
    .psc-segment.active-very-strong { background: #4fb649; }
    
    .psc-strength-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }
    
    .psc-strength-text {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .psc-strength-very-weak { color: #dc3545; }
    .psc-strength-weak { color: #fd7e14; }
    .psc-strength-fair { color: #ffc107; }
    .psc-strength-strong { color: #57baf6; }
    .psc-strength-very-strong { color: #4fb649; }
    
    /* Crack Time Display */
    .psc-crack-time-card {
        background: linear-gradient(135deg, #241553 0%, #3a2475 100%);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .psc-crack-time-label {
        color: #57baf6;
        font-size: 0.95rem;
        font-weight: 500;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .psc-crack-time-value {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
    }
    
    .psc-crack-time-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    /* Analysis Cards */
    .psc-analysis-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    @media (max-width: 767px) {
        .psc-analysis-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .psc-analysis-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 25px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .psc-analysis-card:hover {
        border-color: #57baf6;
        box-shadow: 0 10px 30px rgba(87, 186, 246, 0.15);
    }
    
    .psc-analysis-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .psc-analysis-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
    }
    
    .psc-analysis-icon.length { background: linear-gradient(135deg, #241553, #3a2475); }
    .psc-analysis-icon.uppercase { background: linear-gradient(135deg, #4fb649, #3d9140); }
    .psc-analysis-icon.lowercase { background: linear-gradient(135deg, #57baf6, #3498db); }
    .psc-analysis-icon.numbers { background: linear-gradient(135deg, #fd7e14, #e67e22); }
    .psc-analysis-icon.symbols { background: linear-gradient(135deg, #e74c3c, #c0392b); }
    .psc-analysis-icon.entropy { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
    
    .psc-analysis-title {
        font-weight: 600;
        color: #241553;
        font-size: 1rem;
        margin: 0;
    }
    
    .psc-analysis-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: #241553;
        margin: 0;
    }
    
    .psc-analysis-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 10px;
    }
    
    .psc-status-pass {
        background: rgba(79, 182, 73, 0.15);
        color: #4fb649;
    }
    
    .psc-status-fail {
        background: rgba(220, 53, 69, 0.15);
        color: #dc3545;
    }
    
    .psc-status-warning {
        background: rgba(255, 193, 7, 0.15);
        color: #d39e00;
    }
    
    /* Detailed Analysis Section */
    .psc-detailed-section {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .psc-detailed-title {
        color: #241553;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .psc-check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .psc-check-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .psc-check-item:last-child {
        border-bottom: none;
    }
    
    .psc-check-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .psc-check-icon.pass {
        background: #4fb649;
        color: white;
    }
    
    .psc-check-icon.fail {
        background: #dc3545;
        color: white;
    }
    
    .psc-check-icon.warning {
        background: #ffc107;
        color: #241553;
    }
    
    .psc-check-text {
        font-size: 1rem;
        color: #495057;
    }
    
    .psc-check-text strong {
        color: #241553;
    }
    
    /* Tips Section */
    .psc-tips-section {
        background: linear-gradient(135deg, rgba(79, 182, 73, 0.1), rgba(87, 186, 246, 0.1));
        border-radius: 20px;
        padding: 30px;
        border: 2px solid #4fb649;
    }
    
    .psc-tips-title {
        color: #4fb649;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .psc-tip-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .psc-tip-item:last-child {
        margin-bottom: 0;
    }
    
    .psc-tip-bullet {
        width: 24px;
        height: 24px;
        background: #4fb649;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    .psc-tip-text {
        color: #495057;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Ad Spaces */
    .psc-ad-space {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border: 2px dashed #dee2e6;
        border-radius: 16px;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #6c757d;
        font-weight: 500;
        position: sticky;
        top: 20px;
    }
    
    .psc-ad-space i {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }
    
    /* Feature Boxes */
    .psc-features-section {
        padding: 60px 0;
        background: #ffffff;
    }
    
    .psc-feature-box {
        background: #ffffff;
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(36, 21, 83, 0.08);
        transition: all 0.4s ease;
        height: 100%;
        border: 2px solid transparent;
    }
    
    .psc-feature-box:hover {
        transform: translateY(-10px);
        border-color: #4fb649;
        box-shadow: 0 20px 50px rgba(79, 182, 73, 0.15);
    }
    
    .psc-feature-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #241553, #3a2475);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.2rem;
        color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .psc-feature-box:hover .psc-feature-icon {
        background: linear-gradient(135deg, #4fb649, #3d9140);
        transform: scale(1.1);
    }
    
    .psc-feature-title {
        color: #241553;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .psc-feature-text {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Rating Section */
    .psc-rating-section {
        background: linear-gradient(135deg, #241553 0%, #3a2475 100%);
        padding: 50px 0;
        text-align: center;
    }
    
    .psc-rating-stars {
        color: #ffc107;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .psc-rating-value {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .psc-rating-count {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin-top: 5px;
    }
    
    /* Content Section */
    .psc-content-section {
        padding: 70px 0;
        background: #f8f9fa;
    }
    
    .psc-section-title {
        color: #241553;
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }
    
    .psc-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #4fb649, #57baf6);
        border-radius: 2px;
    }
    
    .psc-content-text {
        color: #495057;
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    .psc-content-text h3 {
        color: #241553;
        font-size: 1.5rem;
        font-weight: 700;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    
    .psc-content-list {
        padding-left: 0;
        list-style: none;
    }
    
    .psc-content-list li {
        padding: 10px 0;
        padding-left: 35px;
        position: relative;
    }
    
    .psc-content-list li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #4fb649;
        font-size: 1rem;
    }
    
    /* FAQ Section */
    .psc-faq-section {
        padding: 70px 0;
        background: #ffffff;
    }
    
    .psc-accordion-item {
        background: #ffffff;
        border: none;
        border-radius: 16px !important;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(36, 21, 83, 0.08);
        overflow: hidden;
    }
    
    .psc-accordion-button {
        background: #ffffff;
        color: #241553;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 25px 30px;
        border: none;
    }
    
    .psc-accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #241553, #3a2475);
        color: #ffffff;
        box-shadow: none;
    }
    
    .psc-accordion-button:focus {
        box-shadow: none;
    }
    
    .psc-accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23241553'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .psc-accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .psc-accordion-body {
        padding: 25px 30px;
        font-size: 1rem;
        line-height: 1.8;
        color: #495057;
        background: #f8f9fa;
    }
    
    /* Related Tools */
    .psc-related-section {
        padding: 60px 0;
        background: #f8f9fa;
    }
    
    .psc-tool-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 5px 25px rgba(36, 21, 83, 0.08);
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
        height: 100%;
        border: 2px solid transparent;
    }
    
    .psc-tool-card:hover {
        transform: translateY(-8px);
        border-color: #57baf6;
        box-shadow: 0 15px 40px rgba(87, 186, 246, 0.2);
    }
    
    .psc-tool-card-icon {
        font-size: 2.8rem;
        color: #241553;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    
    .psc-tool-card:hover .psc-tool-card-icon {
        color: #4fb649;
        transform: scale(1.1);
    }
    
    .psc-tool-card-title {
        color: #241553;
        font-weight: 600;
        font-size: 1.05rem;
        margin: 0;
    }
    
    /* Toast Notification */
    .psc-toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
    }
    
    .psc-toast {
        background: linear-gradient(135deg, #4fb649, #3d9140);
        color: #ffffff;
        padding: 20px 30px;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(79, 182, 73, 0.4);
        display: none;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        font-size: 1rem;
        animation: pscSlideIn 0.5s ease;
    }
    
    .psc-toast.psc-toast-error {
        background: linear-gradient(135deg, #dc3545, #c82333);
        box-shadow: 0 15px 50px rgba(220, 53, 69, 0.4);
    }
    
    .psc-toast.psc-toast-show {
        display: flex;
    }
    
    @keyframes pscSlideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    /* Action Buttons */
    .psc-action-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 30px;
    }
    
    .psc-btn-primary {
        background: linear-gradient(135deg, #4fb649, #3d9140);
        border: none;
        color: white;
        padding: 16px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(79, 182, 73, 0.35);
        cursor: pointer;
    }
    
    .psc-btn-primary:hover {
        background: linear-gradient(135deg, #3d9140, #2d7030);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(79, 182, 73, 0.45);
        color: white;
    }
    
    .psc-btn-secondary {
        background: linear-gradient(135deg, #57baf6, #3498db);
        border: none;
        color: white;
        padding: 16px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(87, 186, 246, 0.35);
        cursor: pointer;
    }
    
    .psc-btn-secondary:hover {
        background: linear-gradient(135deg, #3498db, #2980b9);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(87, 186, 246, 0.45);
        color: white;
    }
    
    .psc-btn-outline {
        background: transparent;
        border: 2px solid #241553;
        color: #241553;
        padding: 14px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .psc-btn-outline:hover {
        background: #241553;
        color: white;
        transform: translateY(-3px);
    }
    
    /* Character Preview */
    .psc-char-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 20px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 12px;
    }
    
    .psc-char {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .psc-char-upper { background: #e8f5e9; color: #4fb649; }
    .psc-char-lower { background: #e3f2fd; color: #57baf6; }
    .psc-char-number { background: #fff3e0; color: #fd7e14; }
    .psc-char-symbol { background: #fce4ec; color: #e74c3c; }
    
    /* Responsive */
    @media (max-width: 991px) {
        .psc-hero-title {
            font-size: 2.2rem;
        }
        
        .psc-main-card {
            padding: 30px 20px;
            margin-top: -50px;
        }
        
        .psc-password-input {
            font-size: 1.1rem;
            padding: 20px 50px 20px 20px;
        }
        
        .psc-crack-time-value {
            font-size: 1.8rem;
        }
        
        .psc-ad-space {
            min-height: 250px;
            margin-bottom: 30px;
        }
    }
    
    @media (max-width: 575px) {
        .psc-hero-title {
            font-size: 1.8rem;
        }
        
        .psc-analysis-value {
            font-size: 1.4rem;
        }
        
        .psc-action-buttons {
            flex-direction: column;
        }
        
        .psc-btn-primary,
        .psc-btn-secondary,
        .psc-btn-outline {
            width: 100%;
        }
    }
    
    /* Entropy Gauge */
    .psc-entropy-gauge {
        position: relative;
        width: 150px;
        height: 75px;
        margin: 0 auto 20px;
    }
    
    .psc-gauge-bg {
        width: 150px;
        height: 75px;
        border-radius: 75px 75px 0 0;
        background: #e9ecef;
        position: relative;
        overflow: hidden;
    }
    
    .psc-gauge-fill {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 75px;
        border-radius: 75px 75px 0 0;
        transform-origin: bottom center;
        transition: all 0.5s ease;
    }
    
    .psc-gauge-center {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 50px;
        background: #ffffff;
        border-radius: 50px 50px 0 0;
    }
    
    .psc-gauge-value {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        font-weight: 700;
        color: #241553;
    }
    
    /* Comparison Table */
    .psc-comparison-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin: 30px 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(36, 21, 83, 0.1);
    }
    
    .psc-comparison-table th {
        background: linear-gradient(135deg, #241553, #3a2475);
        color: #ffffff;
        padding: 20px;
        font-weight: 600;
        text-align: left;
    }
    
    .psc-comparison-table td {
        padding: 18px 20px;
        border-bottom: 1px solid #e9ecef;
        background: #ffffff;
    }
    
    .psc-comparison-table tr:last-child td {
        border-bottom: none;
    }
    
    .psc-comparison-table tr:hover td {
        background: #f8f9fa;
    }