/*
Theme Name: fast seo
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A brief description of your theme.
Version: 1.0
License: GPL v2 or later
Text Domain: your-theme-textdomain
*/
   /* ... existing CSS ... */
           :root {
            --primary-color: #2C3E50;
            --secondary-color: #B7957A;
            --background: #F8F9FA;
            --text-color: #2D3436;
            --accent-color: #F1C40F;
            --banner-height: 40px;
            --nav-height: 60px;
        }

        * {
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            text-decoration: none;
        }

        body {
            background: var(--background);
            color: var(--text-color);
            padding-top: calc(var(--banner-height) + var(--nav-height));
        }

        /* Donation Banner */
        .donation-banner {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1002;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: var(--banner-height);
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 250, 0.97);
            backdrop-filter: blur(10px);
            padding: 1rem;
            position: fixed;
            top: var(--banner-height);
            width: 100%;
            height: var(--nav-height);
            z-index: 1001;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-list {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .nav-item a:hover {
            background: rgba(44, 62, 80, 0.05);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        .logo {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .donation-btn {
            background: white;
            color: var(--secondary-color);
            border: none;
            padding: 0.3rem 1rem;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 700;
            white-space: nowrap;
        }

        /* Main Content */
        main {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Ads Section */
        .ads-section {
            margin: 2rem auto;
            max-width: 728px;
            text-align: center;
        }

        .ad-content {
            background: white;
            border: 2px solid #E5E7E9;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            color: var(--text-color);
        }

        /* Calculator Section */
        .converter-section {
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .calculator {
            display: grid;
            gap: 1rem;
            grid-template-columns: 1fr;
        }

        .calculator input {
            padding: 0.8rem;
            border: 2px solid var(--secondary-color);
            border-radius: 8px;
            font-size: 1.1rem;
        }

        #result {
            padding: 1rem;
            background: rgba(183, 149, 122, 0.05);
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 2rem;
        }

        .converter-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: rgba(255, 255, 250, 0.97);
                width: 100%;
                padding: 1rem;
                box-shadow: 0 2px 15px rgba(0,0,0,0.1);
                flex-direction: column;
                gap: 1rem;
                z-index: 999;
            }

            .nav-list.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            :root {
                --banner-height: 35px;
                --nav-height: 50px;
            }

            body {
                padding-top: calc(var(--banner-height) + var(--nav-height));
            }

            .donation-banner {
                padding: 0.4rem 0.5rem;
            }

            .donation-btn {
                padding: 0.2rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, var(--primary-color), #1A252F);
            color: white;
            padding: 4rem 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

/* Table Styles */
.compact-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow-x: auto;
    margin: 1rem 0;
}

.compact-conversion-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.compact-conversion-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
}

.compact-conversion-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.compact-conversion-table tr:nth-child(even) {
    background-color: rgba(183, 149, 122, 0.03);
}

.inch-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.inch-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.table-search {
    display: flex;
    gap: 0.5rem;
    max-width: 300px;
}

.table-search input {
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    width: 100%;
}

.table-search button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 25px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .compact-conversion-table {
        font-size: 0.9rem;
    }
    
    .compact-conversion-table td {
        padding: 0.6rem;
    }
    
    .table-controls {
        flex-direction: column;
    }
    
    .table-search {
        width: 100%;
        max-width: none;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.faq-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-question i.fa-question-circle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 25px;
}

.faq-question .fa-chevron-down {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-section {
        margin: 2rem auto;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}

.conversion-guide {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: justify;
}

.conversion-guide h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.guide-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 1.2rem 0;
    font-size: 1rem;
}



@media (max-width: 768px) {
    .conversion-guide {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .conversion-guide h2 {
        font-size: 1.5rem;
    }
    
    .guide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
 
}

@media (max-width: 480px) {
    .conversion-guide {
        padding: 1rem;
    }
    
    .conversion-guide h2 {
        font-size: 1.3rem;
    }
    
    .guide-content p {
        font-size: 0.9rem;
    }
}

   .conversion-info {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            padding: 15px;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.1rem;
            border-left: 4px solid var(--secondary-color);
        }

        .conversion-info strong {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .table-container {
            overflow-x: auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            margin-bottom: 25px;
        }

        .conversion-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .conversion-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            font-size: 1rem;
        }

        .conversion-table tr:nth-child(even) {
            background-color: rgba(0,0,0,0.02);
        }

        .conversion-table tr:hover {
            background-color: rgba(183, 149, 122, 0.05);
        }

        .conversion-unit {
            font-weight: 500;
            color: var(--primary-color);
        }

        .conversion-value {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .pagination button {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }

        .pagination button:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            border-color: var(--accent-color);
        }

        .pagination button.active {
            background: var(--secondary-color);
            color: var(--primary-color);
            border-color: var(--secondary-color);
            font-weight: 600;
        }

        .note {
            background: rgba(241, 196, 15, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-top: 20px;
            font-size: 0.95rem;
            border-left: 3px solid var(--secondary-color);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .conversion-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
            
            .conversion-info {
                font-size: 1rem;
            }
            
            .container {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.6rem;
            }
            
            .conversion-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .pagination button {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }




    /* Design Option 1: Minimalist Line Style */
        .author-byline-1 {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #E5E7E9;
        }
        
        .author-avatar-1 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info-1 {
            flex: 1;
        }
        
        .author-name-1 {
            font-weight: 600;
            color: #2C3E50;
            font-size: 0.95rem;
        }
        
        .author-meta-1 {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: #666;
            margin-top: 0.2rem;
        }
        
        .meta-item-1 {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
   
#link{
color: var(--primary-color);
 }       

    /* Author Header */
        .author-header {
            background: linear-gradient(135deg, var(--primary-color), #1A252F);
            color: white;
            padding: 4rem 1rem 3rem;
            margin-top: 0;
        }
        .author-header-content {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        .author-avatar-large {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 5px solid var(--secondary-color);
            object-fit: cover;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        .author-info-header {
            flex: 1;
        }
        .author-info-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .author-title {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .author-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Social Links */
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-link:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1rem;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        
        /* Bio Section */
        .bio-section {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .bio-section h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-color);
        }
        .bio-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .sidebar-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .sidebar-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card h3 i {
            color: var(--secondary-color);
        }
        
        .expertise-list {
            list-style: none;
            padding: 0;
        }
        .expertise-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(44, 62, 80, 0.1);
        }
        .expertise-list li:last-child {
            border-bottom: none;
        }
        .expertise-list li i {
            color: var(--secondary-color);
            margin-right: 0.5rem;
        }
        
      
         /* Responsive Design */
        @media (max-width: 768px) {
            .author-header-content {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            .author-info-header h1 {
                font-size: 2rem;
            }
            .author-avatar-large {
                width: 140px;
                height: 140px;
            }
            .author-stats {
                justify-content: center;
            }
            .social-links {
                justify-content: center;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .nav-list {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: rgba(255, 255, 250, 0.97);
                width: 100%;
                padding: 1rem;
                box-shadow: 0 2px 15px rgba(0,0,0,0.1);
                flex-direction: column;
                gap: 1rem;
                z-index: 999;
            }
            .nav-list.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            :root {
                --banner-height: 35px;
                --nav-height: 50px;
            }
            body {
                padding-top: calc(var(--banner-height) + var(--nav-height));
            }
        }


  /* TV Size Table — unique differentiator vs competitors */
        .tv-table-section {
            max-width: 900px;
            margin: 2rem auto;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .tv-table-section h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .tv-guide-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .tv-guide-table th {
            background: var(--primary-color);
            color: white;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .tv-guide-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eee;
        }
        .tv-guide-table tr:nth-child(even) td {
            background: rgba(183, 149, 122, 0.04);
        }
        .tv-guide-table .tag-ok { color: #27ae60; font-weight: 600; }
        .tv-guide-table .tag-warn { color: #e67e22; font-weight: 600; }
        .tv-guide-table .tag-big { color: #c0392b; font-weight: 600; }