/*
Theme Name: YTMonetizationChecker
Theme URI: https://youtubemonetizationchecker.org
Author: techwinks
Description: Custom, SEO-optimized WordPress theme for YouTube monetization tools.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ytmonetizationchecker
*/

:root {
    --primary-blue: #3498db;
    --white: #fff;
    --dark: #222;
    --gray: #f5f5f5;
    --font-main: 'Roboto', 'Arial', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 15px 5px 15px;
}

.logo-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.2em;
    letter-spacing: 2px;
    color: #3498db;
    background: #fff;
    padding: 8px 28px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(52,152,219,0.08);
}

/* Top Bar Styles */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 102;
    background: linear-gradient(90deg, #222 0%, #444 100%);
    color: #fff;
    font-size: 0.98em;
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(52,152,219,0.03);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left .fa-phone {
    margin-right: 5px;
}
.top-bar-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.25s;
}
.top-bar-right a:hover {
    color: #3498db;
}

/* Main Header Styles */
.site-header {
    position: sticky;
    top: 36px; /* Top bar approx height */
    z-index: 101;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0 0 0;
    box-shadow: 0 2px 10px rgba(52,152,219,0.04);
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon .logo-circle {
    background: #3498db;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52,152,219,0.15);
}
.logo-title {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.25em;
    color: #222;
    font-weight: 500;
    letter-spacing: 1px;
}
.logo-title b {
    color: #3498db;
    font-weight: 700;
}
.logo-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.2em;
    letter-spacing: 2px;
    color: #3498db;
    background: #fff;
    padding: 8px 28px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(52,152,219,0.08);
}

/* Main Navigation - Desktop & Submenu */
.main-nav {
    /* For desktop only, overridden in mobile */
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.nav-menu li {
    position: relative;
    display: inline-block;
}
.nav-menu li a {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #222;
    text-decoration: none;
    padding: 8px 14px;
    transition: color 0.2s, background 0.16s;
    border-radius: 7px;
    display: inline-block;
}
.nav-menu li a:hover,
.nav-menu .current-menu-item > a {
    color: #3498db;
    background: #f5f5f5;
}
.nav-menu li.menu-item-has-children > a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.82em;
    margin-left: 7px;
    vertical-align: middle;
    color: #888;
    transition: color 0.18s;
}
.nav-menu li.menu-item-has-children:hover > a:after,
.nav-menu li.menu-item-has-children:focus-within > a:after {
    color: #3498db;
}

/* Submenu */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 38px;
    min-width: 210px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 8px 24px rgba(52,152,219,0.12), 0 2px 10px rgba(52,152,219,0.07);
    z-index: 100;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    border: 1px solid #e6e8ee;
    animation: submenuFadeIn 0.16s cubic-bezier(.4,0,.2,1);
}
@keyframes submenuFadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}
.nav-menu li.menu-item-has-children:hover > .sub-menu,
.nav-menu li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
}
.nav-menu .sub-menu li {
    display: block;
    position: relative;
}
.nav-menu .sub-menu li a {
    padding: 10px 22px;
    font-size: 1em;
    color: #222;
    background: none;
    border-radius: 0;
    transition: background 0.16s, color 0.16s;
}
.nav-menu .sub-menu li a:hover,
.nav-menu .sub-menu .current-menu-item > a {
    background: #eaf5ff;
    color: #3498db;
}

/* Sub-sub-menu (third level) */
.nav-menu .sub-menu .menu-item-has-children > .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 4px;
    border-radius: 9px;
}
.nav-menu .sub-menu .menu-item-has-children > a:after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.82em;
    margin-left: 7px;
    vertical-align: middle;
    color: #888;
    transition: color 0.18s;
}

/* Responsive - Mobile Style */
@media (max-width: 900px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(52,152,219,0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.25s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0;
        margin: 15px 0 0 0;
    }
    .nav-menu li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-menu li a {
        display: block;
        padding: 18px 28px;
        font-size: 1.1em;
        color: #3498db;
        background: none;
        border-radius: 0;
        width: 100%;
    }
    .nav-menu li a:hover,
    .nav-menu .current-menu-item > a {
        background: #f5f5f5;
        color: #222;
    }
    .nav-menu .sub-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
        border-radius: 0;
        border: none;
        background: #f6fafd;
        padding: 0;
        display: none;
        margin: 0;
    }
    .nav-menu li.menu-item-has-children > .sub-menu {
        display: none;
    }
    .nav-menu li.menu-item-has-children.active > .sub-menu {
        display: block;
    }
    .nav-menu .sub-menu li a {
        padding: 16px 38px;
        font-size: 1em;
    }
    .nav-menu .sub-menu .menu-item-has-children > a:after {
        content: "\f054";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 7px;
        vertical-align: middle;
        color: #888;
        transition: color 0.18s;
    }
}

/* Header Actions: Login/Signup buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}

.login-btn,
.signup-btn {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    background: #fff;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 25px;
    padding: 8px 24px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(52,152,219,0.07);
}

.login-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.signup-btn {
    background: linear-gradient(90deg, #37c6b7 0%, #3498db 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(52,152,219,0.11);
}

.signup-btn:hover {
    background: linear-gradient(90deg, #3498db 0%, #37c6b7 100%);
    color: #fff;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--primary-blue);
    cursor: pointer;
    margin-left: 18px;
    transition: color 0.2s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #3498db;
}

/* Responsive Menu for Mobile */
@media (max-width: 900px) {
    .header-flex {
        flex-direction: row;
        align-items: center;
        gap: 0;
        position: relative;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(52,152,219,0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.25s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0;
        margin: 15px 0 0 0;
    }
    .nav-menu li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-menu li a {
        display: block;
        padding: 16px 28px;
        font-size: 1.1em;
        color: #3498db;
        background: none;
        border-radius: 0;
        width: 100%;
    }
    .nav-menu li a:hover,
    .nav-menu .current-menu-item a {
        background: #f5f5f5;
        color: #222;
    }
    .header-actions {
        margin-left: auto;
        gap: 8px;
    }
    .logo-area {
        margin-bottom: 0;
    }
    .mobile-menu-toggle {
        display: inline-block;
        margin-left: 16px;
    }
    .main-nav {
        display: block;
    }
}

/* Hide menu by default on mobile */
@media (max-width: 900px) {
    .main-nav {
        display: block;
    }
}

/* Extra Small Devices */
@media (max-width: 600px) {
    .logo-title {
        font-size: 1em;
    }
    .logo-icon .logo-circle {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    .login-btn,
    .signup-btn {
        font-size: 0.92em;
        padding: 7px 14px;
    }
    .container {
        padding: 0 5px;
    }
    .nav-menu li a {
        padding: 14px 12px;
        font-size: 1em;
    }
}



.btn-primary {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-blue);
}

.features-section {
    background: var(--white);
    padding: 40px 0;
    text-align: center;
}

.features-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-item {
    background: var(--gray);
    border-radius: 8px;
    padding: 25px 20px;
    flex: 1 1 220px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.05);
}

.latest-posts-section {
    padding: 40px 0;
    background: var(--white);
}

.latest-posts-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.latest-post {
    background: var(--gray);
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 300px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.05);
}

.latest-post h3 {
    margin-top: 0;
}

.faq-section {
    background: var(--gray);
    padding: 40px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.faq-question {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0;
}

.faq-answer {
    margin-top: 8px;
    color: var(--dark);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0 15px;
}

.footer-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    margin-top: 0;
    color: var(--primary-blue);
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 0.95em;
    color: #bbb;
}

@media (max-width: 900px) {
    .features-list, .latest-posts-list, .footer-columns {
        flex-direction: column;
        gap: 20px;
    }
    .main-nav {
        float: none;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 500px) {
    .hero-section h1 {
        font-size: 1.5em;
    }
    .hero-form input {
        width: 150px;
    }
}

.faq-title {
    text-align: center;
    margin-bottom: 28px;
}
.faq-small-title {
    display: block;
    color: #0033cc;
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.faq-title h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px 0;
}
.faq-list.style-faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 16px;
}
.faq-question {
    width: 100%;
    padding: 14px 30px 14px 16px;
    font-size: 1.15em;
    font-weight: 500;
    color: #222;
    background: #eaf5ff;
    border: 1px solid #b3d8ff;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    position: relative;
    outline: none;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question:hover, .faq-question[aria-expanded="true"] {
    background: #d8edff;
}
.faq-toggle-icon {
    font-size: 1.4em;
    font-weight: bold;
    color: #3498db;
    padding-left: 8px;
    transition: color 0.2s;
}
.faq-answer {
    background: #fafdff;
    border-radius: 0 0 6px 6px;
    padding: 10px 18px 12px 18px;
    color: #222;
    font-size: 1em;
    margin-top: 0;
    border: 1px solid #b3d8ff;
    border-top: none;
}
@media (max-width: 700px) {
    .faq-title h2 { font-size: 1.35em; }
    .faq-list.style-faq { padding: 0 4px; }
    .faq-question { font-size: 1em; padding: 11px 20px 11px 10px; }
    .faq-answer { font-size: 0.97em; padding: 8px 13px 10px 13px;}
}
.latest-posts-section {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}
.latest-posts-list.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}
.latest-post {
    background: var(--gray);
    border-radius: 8px;
    padding: 20px 18px 24px 18px;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}
.latest-thumb-wrap {
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #eaf5ff;
    border-radius: 7px;
    overflow: hidden;
}
.latest-post-thumb {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(52,152,219,0.07);
    background: #eaf5ff;
    display: block;
}
.latest-post h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.18em;
    font-weight: 600;
}
.latest-post p {
    color: #444;
    font-size: 1em;
}

@media (max-width: 900px) {
    .latest-posts-list.row-flex {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .latest-post {
        max-width: 95vw;
        width: 320px;
    }
}
@media (max-width: 500px) {
    .latest-posts-list.row-flex {
        gap: 18px;
    }
    .latest-thumb-wrap,
    .latest-post-thumb {
        width: 98vw;
        max-width: 99vw;
        height: 34vw;
        min-height: 110px;
    }
    .latest-post {
        padding: 14px 7px 16px 7px;
        max-width: 99vw;
    }
}

.single-post-section {
    padding: 56px 0 54px 0; /* Extra top padding for spacing under header */
    background: var(--white);
}
.single-post-article {
    background: var(--gray);
    border-radius: 12px;
    max-width: 1080px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(52,152,219,0.09);
    padding: 34px 28px 36px 28px; /* Extra top padding inside article */
    position: relative;
}
.single-post-headline {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.13;
    margin-top: 0;
}
.single-post-thumb-wrap {
    text-align: center;
    margin-bottom: 22px;
}
.single-post-thumb {
    width: 100%;
    max-width: 520px;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(52,152,219,0.08);
    background: #eaf5ff;
    display: block;
    margin: 0 auto;
}
.single-post-meta {
    text-align: center;
    font-size: 1em;
    color: #555;
    margin-bottom: 18px;
}
.single-post-meta span {
    margin-right: 14px;
    display: inline-block;
}
.single-post-meta i {
    margin-right: 6px;
    color: #3498db;
}
.single-social-share {
    text-align: center;
    margin-bottom: 26px;
}
.single-social-share span {
    font-weight: 500;
    margin-right: 10px;
    color: #444;
}
.share-btn {
    display: inline-block;
    margin: 0 7px;
    font-size: 1.25em;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eaf5ff;
    color: #3498db;
    text-align: center;
    line-height: 38px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 8px rgba(52,152,219,0.03);
}
.share-btn.fb:hover { background: #1877f2; color: #fff; }
.share-btn.tw:hover { background: #1da1f2; color: #fff; }
.share-btn.ln:hover { background: #0077b5; color: #fff; }
.share-btn.pt:hover { background: #e60023; color: #fff; }
.single-post-content {
    font-size: 1.15em;
    color: #232323;
    margin-top: 12px;
    line-height: 1.8;
}
@media (max-width: 700px) {
    .single-post-section { padding: 26px 0 22px 0; }
    .single-post-article { padding: 14px 8px 22px 8px; }
    .single-post-thumb { max-width: 95vw; height: 38vw; min-height: 120px; }
    .single-post-headline { font-size: 1.4em; }
}

/* HERO SECTION UPDATE */
.hero-section.new-hero-style {
    background: linear-gradient(120deg, #eaf5ff 75%, #fafdff 100%);
    padding: 52px 0 54px 0;
    text-align: center;
}

.hero-main-title.yt-mc-title {
    font-size: 45px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    color: #2874fa;
    letter-spacing: 0.7px;
    background: linear-gradient(90deg,#2874fa 35%,#f93b54 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1.5px 18px rgba(52,152,219,0.08);
    max-width: 600px;
    margin: 0 auto;
    padding: 32px 30px 0 30px;
    position: relative;
}

/* FREE BADGE */
.hero-free-badge {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.hero-free-badge span {
    display: inline-block;
    background: linear-gradient(92deg,#f93b54 60%,#2874fa 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.3em;
    padding: 10px 34px;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(52,152,219,0.11);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Roboto', Arial, sans-serif;
    animation: pulseFree 1.6s infinite;
}
.hero-free-badge i {
    margin-right: 10px;
    font-size: 1.2em;
    animation: flashBadge 1.2s infinite;
}

@keyframes pulseFree {
    0%,100% { box-shadow: 0 2px 10px rgba(52,152,219,0.11);}
    50% { box-shadow: 0 6px 24px rgba(249,59,84,0.18);}
}
@keyframes flashBadge {
    0%,100% { color: #ffd700;}
    50% { color: #fff;}
}

/* Remove credits line */
.hero-form-credits, .credits-count { display: none !important; }

/* The rest of your hero styles remain the same... */
.hero-form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.hero-form-label {
    font-size: 1.13em;
    font-weight: 600;
    color: #222;
}
.required {
    color: #e74c3c;
    font-size: 1.1em;
    margin-left: 2px;
}
.hero-form-input-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}
.hero-form-input {
    flex: 1;
    border: 1.5px solid #e3e7ee;
    border-radius: 7px;
    font-size: 1.05em;
    padding: 13px 20px 13px 18px;
    outline: none;
    background: #f7f9fa;
    transition: border 0.18s;
}
.hero-form-input:focus {
    border-color: #3498db;
    background: #fff;
}
.input-bookmark {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #97b7e3;
    font-size: 1.42em;
    background: #fafdff;
    border-radius: 50%;
    padding: 7px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}
.input-bookmark:hover {
    color: #3498db;
    background: #eaf5ff;
}
.hero-btn {
    width: 100%;
    display: inline-block;
    background: #2874fa;
    color: #fff;
    font-size: 1.08em;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    padding: 13px 0;
    margin-top: 4px;
    margin-bottom: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(52,152,219,0.07);
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.hero-btn i {
    margin-right: 7px;
}
.hero-btn:hover {
    background: #3498db;
}
.hero-form-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid #f1f1f1;
    padding: 15px 0 15px 0;
    margin-top: 0;
    background: #f7fbff;
    border-radius: 0 0 14px 14px;
    font-size: 1.13em;
    justify-content: flex-start;
}
.action-like, .action-dislike, .action-report {
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}
.action-like i, .action-dislike i {
    font-size: 1.08em;
    color: #3498db;
}
.action-report i {
    color: #2874fa;
    font-size: 1.04em;
}
.action-report {
    margin-left: 16px;
    color: #2874fa;
    font-weight: 600;
}

@media (max-width: 700px) {
    .hero-main-title.yt-mc-title { font-size: 2em; margin-bottom: 10px; }
    .hero-card { padding: 18px 7px 0 7px; max-width: 99vw; }
    .hero-form-label-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .hero-form-label { font-size: 1em; }
    .hero-form-input { font-size: 0.97em; padding: 10px 12px 10px 12px; }
    .hero-btn { font-size: 1em; padding: 11px 0; }
    .hero-form-actions { font-size: 1em; gap: 14px; }
    .hero-free-badge span { font-size: 1em; padding: 8px 18px; }
}
/* --- Glitch-style Section Headings and Content --- */
.glitch-section {
    background: #fafdff;
    padding: 46px 0 42px 0;
    margin-bottom: 0px;
}

.glitch-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.glitch-title {
    color: #137b4d;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 0.18em;
    letter-spacing: 0.7px;
    font-family: 'Roboto', Arial, sans-serif;
    border-bottom: 3px solid #137b4d;
    display: inline-block;
    padding-bottom: 2px;
}

.glitch-section-divider {
    width: 160px;
    max-width: 60vw;
    height: 2px;
    background: #137b4d;
    margin: 32px auto 34px auto;
    display: block;
    opacity: 0.17;
    border-radius: 2px;
}

.glitch-section h2.glitch-title {
    margin-top: 0;
    margin-bottom: 18px;
}

.glitch-section ul {
    margin: 0 0 0 28px;
    padding: 0;
    font-size: 1.13em;
    color: #232323;
}

.glitch-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.glitch-section p {
    color: #222;
    font-size: 1.09em;
    margin-bottom: 18px;
    margin-top: 0;
}

.glitch-section .glitch-bold {
    font-weight: 600;
    color: #137b4d;
}

.glitch-section .glitch-note {
    font-size: 0.98em;
    color: #333;
    margin-top: 18px;
    margin-bottom: 18px;
    font-style: italic;
}

.glitch-section .glitch-lsi-keywords {
    margin-top: 18px;
    margin-bottom: 18px;
}

@media (max-width: 700px) {
    .glitch-title {
        font-size: 1.38em;
        border-bottom-width: 2px;
        padding-bottom: 0px;
    }
    .glitch-section .container { padding: 0 7px; }
    .glitch-section-divider { width: 70vw; margin: 18px auto 19px auto; }
    .glitch-section ul { font-size: 1em; margin-left: 17px;}
}

/* --- Add a little color shadow to white sections for contrast --- */
.soft-bg, .gradient-bg {
    background: linear-gradient(96deg, #fafdff 72%, #eaf5ff 100%);
}
.gradient-bg {
    background: linear-gradient(96deg, #eaf5ff 40%, #fafdff 100%);
}

.related-tools-section {
    background: #fafdff;
    padding: 48px 0 38px 0;
    text-align: center;
}
.related-tools-section h2 {
    font-size: 2.15em;
    color: #137b4d;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 1px;
    font-family: 'Roboto', Arial, sans-serif;
}
.related-tools-section .related-tools-sub {
    font-size: 1.15em;
    color: #234;
    margin-bottom: 28px;
    font-weight: 400;
}

.related-tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 32px;
}

.related-tool-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(21,94,168,0.11), 0 2px 10px rgba(21,94,168,0.07);
    padding: 32px 25px 28px 25px;
    max-width: 460px;
    min-width: 280px;
    flex: 1 1 340px;
    text-align: left;
    transition: box-shadow 0.16s, transform 0.16s;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.related-tool-card:hover {
    box-shadow: 0 12px 24px rgba(21,94,168,0.16), 0 2px 14px rgba(21,94,168,0.13);
    transform: translateY(-2px) scale(1.02);
}

.related-tool-card h3 {
    font-size: 1.35em;
    font-weight: 700;
    color: #222;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Roboto', Arial, sans-serif;
}

.related-tool-card p {
    font-size: 1.11em;
    color: #2a2a2a;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .related-tools-list {
        gap: 18px;
    }
    .related-tool-card {
        max-width: 99vw;
        min-width: 60vw;
        padding: 22px 12px 18px 12px;
    }
}

@media (max-width: 900px) {
    .related-tools-list {
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }
    .related-tool-card {
        max-width: 97vw;
        min-width: 0;
    }
}

.user-reviews-section {
    background: #f4f7ff;
    padding: 56px 0 44px 0;
    text-align: center;
}
.user-reviews-title {
    font-size: 2.3em;
    color: #3b41e5;
    font-weight: 700;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.user-reviews-sub {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 34px;
    font-weight: 500;
}
.user-reviews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
}
.user-review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(21,94,168,0.09), 0 2px 10px rgba(21,94,168,0.07);
    padding: 26px 32px 20px 32px;
    max-width: 420px;
    min-width: 280px;
    flex: 1 1 340px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: box-shadow 0.18s, transform 0.16s;
}
.user-review-card:hover {
    box-shadow: 0 12px 24px rgba(21,94,168,0.16), 0 2px 14px rgba(21,94,168,0.13);
    transform: translateY(-2px) scale(1.02);
}
.user-review-stars {
    color: #ffd700;
    font-size: 1.3em;
    margin-bottom: 8px;
}
.user-review-card strong {
    font-size: 1.22em;
    color: #222;
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}
.user-review-content {
    font-size: 1.09em;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-weight: 400;
}
.user-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1em;
    color: #355;
    font-weight: 500;
}
.user-review-author {
    color: #222;
    font-weight: 700;
}
.user-verified {
    color: #3b41e5;
    font-size: 1em;
    margin-left: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}
.user-verified i {
    margin-right: 3px;
    font-size: 1em;
}
.user-review-date {
    color: #999;
    font-size: 0.98em;
    margin-left: 12px;
    font-weight: 400;
}
.user-reviews-footer {
    margin-top: 42px;
    text-align: center;
}
.user-reviews-footer a {
    color: #3b41e5;
    font-size: 1.07em;
    text-decoration: none;
    font-weight: 600;
    margin-right: 18px;
    transition: color 0.18s;
}
.user-reviews-footer a:hover {
    text-decoration: underline;
    color: #222;
}
.user-reviews-footer .user-reviews-btn {
    display: inline-block;
    background: #3b41e5;
    color: #fff;
    font-size: 1.08em;
    font-weight: 700;
    border: none;
    border-radius: 7px;
    padding: 13px 34px;
    margin-top: 7px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(21,94,168,0.07);
    transition: background 0.2s;
    letter-spacing: 0.02em;
}
.user-reviews-footer .user-reviews-btn:hover {
    background: #232fff;
}
@media (max-width: 900px) {
    .user-reviews-list {
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }
    .user-review-card {
        max-width: 97vw;
        min-width: 0;
        padding: 18px 11px 14px 11px;
    }
}