 :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #7c3aed;
            --dark: #1e293b;
            --darker: #0f172a;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
            --success: #10b981;
            --border-radius: 12px;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        .main-container {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            padding: 0;
        }

        .container {
            width: 95%;
            margin: 0 auto;
            padding: 20px;
        }

        .header-title {
            text-align: center;
            padding: 40px 20px 30px;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            letter-spacing: -0.05em;
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 400;
        }

        .main-tool {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .tool-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .tool-grid {
                grid-template-columns: 1fr;
            }
        }

        .text-area-container {
            position: relative;
        }

        .text-area-label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: var(--darker);
            display: flex;
            align-items: center;
        }

        .text-area-label i {
            margin-right: 10px;
            color: var(--primary);
        }

        textarea {
            width: 100%;
            min-height: 200px;
            padding: 20px;
            border: 2px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-size: 1rem;
            resize: vertical;
            transition: var(--transition);
            line-height: 1.6;
        }

        textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn i {
            margin-right: 8px;
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--light-gray);
        }

        .btn-success {
            background: var(--success);
        }

        .btn-success:hover {
            background: #0ea472;
        }

        .options {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 20px;
            margin-top: 30px;
        }

        .options-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin-bottom: 15px;
        }

        .options-title {
            font-weight: 600;
            color: var(--darker);
            display: flex;
            align-items: center;
        }

        .options-title i {
            margin-right: 10px;
            color: var(--primary);
        }

        .options-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .option {
            display: flex;
            align-items: center;
        }

        .option input {
            margin-right: 10px;
        }

        .option label {
            font-size: 0.95rem;
        }

        .counter {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .history {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 40px;
        }

        .history-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--darker);
            display: flex;
            align-items: center;
        }

        .history-title i {
            margin-right: 10px;
            color: var(--primary);
        }

        .history-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }

        .history-item {
            background: var(--light);
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .history-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .history-item-content {
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .history-item-date {
            font-size: 0.75rem;
            color: var(--gray);
            text-align: right;
        }

        .info-section {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
        }

        .info-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--darker);
            text-align: center;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .info-card {
            padding: 20px;
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .info-card h3 i {
            margin-right: 10px;
        }

        .info-card p {
            margin-bottom: 15px;
            color: var(--dark);
        }

        .info-card ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .info-card li {
            margin-bottom: 8px;
        }

        .example {
            background: var(--light-gray);
            padding: 15px;
            border-radius: 8px;
            font-family: monospace;
            margin: 15px 0;
        }

       

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: var(--success);
            color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification i {
            margin-right: 10px;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }
            
            .main-tool {
                padding: 25px;
            }
            
            .btn {
                width: 100%;
            }
            
            .actions {
                flex-direction: column;
            }
        }

/* ===== ARTICLE SPECIFIC STYLES - NO BODY STYLES ===== */
#reverse-guide-article {
      width: 95%;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem 1.5rem;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Hero Section */
    .reverse-guide-hero {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 2rem 1.5rem;
      background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
      border-radius: 32px;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
    }

    .reverse-guide-hero h2 {
      font-size: 2.6rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      font-family: 'Montserrat', serif;
    }

    .reverse-guide-hero .reverse-hero-sub {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .reverse-guide-meta {
      display: flex;
      justify-content: center;
      gap: 2rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      margin-top: 1.2rem;
      flex-wrap: wrap;
    }

    .reverse-guide-meta span i {
      margin-right: 0.5rem;
    }

    /* Main Content */
    .reverse-main-content {
      background: white;
      border-radius: 28px;
      padding: 2rem 2rem 2.5rem 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(37, 99, 235, 0.15);
    }

    .reverse-main-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #2563eb;
      border-left: 5px solid #7c3aed;
      padding-left: 1rem;
      font-family: 'Montserrat', serif;
    }

    .reverse-main-content h2:first-of-type {
      margin-top: 0;
    }

    .reverse-main-content h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 1.5rem 0 0.75rem 0;
      color: #7c3aed;
    }

    .reverse-main-content p {
      font-size: 1.05rem;
      color: #2d3748;
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }

    .reverse-main-content ul, .reverse-main-content ol {
      margin: 1rem 0 1.2rem 1.8rem;
      color: #2d3748;
      line-height: 1.6;
    }

    .reverse-main-content li {
      margin-bottom: 0.5rem;
    }

    .reverse-highlight-box {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.05));
      border-left: 6px solid #7c3aed;
      padding: 1.25rem 1.5rem;
      border-radius: 20px;
      margin: 1.75rem 0;
    }

    .reverse-pro-tip {
      background: rgba(124, 58, 237, 0.1);
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      border: 1px solid rgba(37, 99, 235, 0.3);
    }

    .reverse-pro-tip i {
      font-size: 1.8rem;
      color: #7c3aed;
    }

    .reverse-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin: 2rem 0;
    }

    .reverse-stat-card {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 1.2rem;
      text-align: center;
      transition: all 0.2s;
      border: 1px solid rgba(37, 99, 235, 0.2);
    }

    .reverse-stat-card .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #2563eb;
      margin-bottom: 0.25rem;
    }

    .reverse-quote-block {
      background: #f8f9fa;
      padding: 1.5rem;
      border-radius: 24px;
      text-align: center;
      font-style: italic;
      margin: 1.5rem 0;
      border: 1px solid rgba(37, 99, 235, 0.2);
    }

    .reverse-quote-block i {
      font-size: 2rem;
      color: #7c3aed;
      margin-bottom: 0.5rem;
      display: inline-block;
    }

    .reverse-table-wrapper {
      overflow-x: auto;
      margin: 1.5rem 0;
    }

    .reverse-examples-table {
      width: 100%;
      border-collapse: collapse;
      background: #f8f9fa;
      border-radius: 16px;
      overflow: hidden;
    }

    .reverse-examples-table th, .reverse-examples-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    }

    .reverse-examples-table th {
      background: rgba(37, 99, 235, 0.1);
      font-weight: 600;
      color: #2563eb;
    }

    .reverse-examples-table tr:hover {
      background: rgba(124, 58, 237, 0.05);
    }

    .reverse-applications-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.2rem;
      margin: 1.5rem 0;
    }

    .reverse-app-card {
      background: #f8f9fa;
      border-radius: 16px;
      padding: 1.2rem;
      border: 1px solid rgba(37, 99, 235, 0.2);
      transition: all 0.2s;
    }

    .reverse-app-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    }

    .reverse-app-title {
      font-weight: 700;
      color: #2563eb;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .reverse-footer-note {
      margin-top: 2.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #718096;
      border-top: 1px solid #e2e8f0;
      padding-top: 2rem;
    }

    @media (max-width: 768px) {
      .reverse-guide-hero h2 {
        font-size: 2rem;
      }
      .reverse-main-content {
        padding: 1.5rem;
      }
      #reverse-guide-article {
        padding: 1rem;
      }
    }