
        .reverse-tool-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .reverse-tool-header {
            background-color: #B5A642;
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .reverse-tool-header h1 {
            margin: 0;
            font-size: 2.5rem;
            font-weight: 600;
        }
        
        .reverse-tool-header p {
            margin: 10px 0 0 0;
            font-size: 1.1rem;
            opacity: 0.95;
        }
        
        .reverse-tool-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .reverse-tool-textarea {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            border: 2px solid #d0d0d0;
            border-radius: 6px;
            font-size: 16px;
            font-family: 'Courier New', monospace;
            resize: vertical;
            transition: border-color 0.3s;
        }
        
        .reverse-tool-textarea:focus {
            outline: none;
            border-color: #B5A642;
        }
        
        .reverse-tool-btn {
            background-color: #B5A642;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            margin: 5px;
        }
        
        .reverse-tool-btn:hover {
            background-color: #9a8d38;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(181, 166, 66, 0.3);
        }
        
        .reverse-tool-btn:active {
            transform: translateY(0);
        }
        
        .reverse-tool-btn-secondary {
            background-color: #6c757d;
        }
        
        .reverse-tool-btn-secondary:hover {
            background-color: #5a6268;
        }
        
        .reverse-tool-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .reverse-tool-stat-item {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .reverse-tool-stat-label {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 5px;
        }
        
        .reverse-tool-stat-value {
            font-size: 24px;
            font-weight: 600;
            color: #B5A642;
        }
        
        .reverse-tool-options {
            margin: 20px 0;
        }
        
        .reverse-tool-checkbox {
            margin: 10px 0;
        }
        
        .reverse-tool-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            cursor: pointer;
            accent-color: #B5A642;
        }
        
        .reverse-tool-checkbox label {
            cursor: pointer;
            font-size: 16px;
            user-select: none;
        }
        
        .reverse-tool-alert {
            padding: 12px 20px;
            border-radius: 6px;
            margin: 15px 0;
            display: none;
        }
        
        .reverse-tool-alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .reverse-tool-blog {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            margin-top: 40px;
            border: 1px solid #e0e0e0;
        }
        
        .reverse-tool-blog h2 {
            color: #B5A642;
            margin-bottom: 20px;
            font-size: 2rem;
            font-weight: 600;
        }
        
        .reverse-tool-blog h3 {
            color: #333;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .reverse-tool-blog p {
            line-height: 1.8;
            color: #444;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .reverse-tool-blog ul {
            margin: 15px 0;
            padding-left: 25px;
        }
        
        .reverse-tool-blog li {
            margin-bottom: 10px;
            line-height: 1.8;
            color: #444;
        }