* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #1f2937;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #2563eb;
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        nav a {
            color: #4b5563;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #2563eb;
        }
.other-tools{
    margin-top: 70px;
    display: block;
     list-style: none;


}
.other-tools h3{
    margin-left: 10px;
    margin-bottom: 10px;
}
.other-tools li{
    margin-left: 10px;
    font-size: 18px
    
}

        .hero {
            text-align: center;
            padding: 48px 0 32px;
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 20px;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
            margin-left: 10px;
            margin-right: 10px;
        }

        .metric-box {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.2s;
            
        }

        .metric-box:hover {
            background: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .metric-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .metric-value {
            font-size: 32px;
            font-weight: 700;
            color: #2563eb;
        }

        .tool-section {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 32px;
            margin-bottom: 24px;
        }

        textarea {
            width: 100%;
            min-height: 300px;
            padding: 20px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            border: 2px solid #d1d5db;
            border-radius: 8px;
            resize: vertical;
            transition: border-color 0.2s;
        }

        textarea:focus {
            outline: none;
            border-color: #2563eb;
        }

        .button-group {
            display: flex;
            gap: 12px;
            margin-top: 16px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        button {
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: #2563eb;
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
        }

        .btn-secondary {
            background: #e5e7eb;
            color: #374151;
        }

        .btn-secondary:hover {
            background: #d1d5db;
        }

        .results-section {
            margin-top: 24px;
            display: none;
        }

        .results-section.active {
            display: block;
        }

        .line-breakdown {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 20px;
            margin-top: 16px;
        }

        .line-breakdown h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #111827;
        }

        .line-item {
            padding: 12px;
            margin-bottom: 8px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
        }

        .line-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .line-number {
            font-weight: 600;
            color: #2563eb;
        }

        .line-syllables {
            font-weight: 600;
            color: #059669;
        }

        .word-breakdown {
            font-size: 14px;
            color: #6b7280;
        }

        .word-item {
            display: inline-block;
            margin-right: 12px;
            margin-bottom: 4px;
        }

        .word-text {
            font-weight: 500;
            color: #374151;
        }

        .word-syllables {
            color: #2563eb;
            font-size: 12px;
        }

        .article-section {
            max-width: 900px;
            margin: 64px auto;
            padding: 0 20px;
        }

        .article-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .article-section h3 {
            font-size: 24px;
            font-weight: 600;
            color: #111827;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .article-section p {
            font-size: 17px;
            line-height: 1.75;
            color: #374151;
            margin-bottom: 16px;
        }

        .article-section ul, .article-section ol {
            margin-bottom: 16px;
            padding-left: 24px;
        }

        .article-section li {
            font-size: 17px;
            line-height: 1.75;
            color: #374151;
            margin-bottom: 8px;
        }

        .article-section strong {
            font-weight: 600;
            color: #111827;
        }

        footer {
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
            padding: 48px 0 24px;
            margin-top: 64px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            color: #111827;
            margin-bottom: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: #2563eb;
        }

        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
            color: #6b7280;
            font-size: 14px;
        }

        .toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #059669;
            color: #ffffff;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s;
            z-index: 1000;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
            }

            .subtitle {
                font-size: 18px;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .metric-value {
                font-size: 24px;
            }

            .tool-section {
                padding: 20px;
            }

            textarea {
                min-height: 250px;
            }

            .article-section h2 {
                font-size: 28px;
            }

            .article-section h3 {
                font-size: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }