/* 
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra */

.game-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* ── Grid ── */
.puzzle-grid-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.puzzle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ── Card Image ── */
.game-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    margin: 10px;
    width: calc(100% - 20px);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.06);
}

/* ── Played Overlay ── */
.played-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    border-radius: 16px;
}

.lock-box {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
}

.played-overlay span {
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 13px;
}

/* ── Card Info ── */
.game-card-info {
    padding: 10px 15px 15px;
    text-align: left;
}

.game-card-info h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}

.game-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.rating {
    color: #f39c12;
    font-size: 13px;
    font-weight: 700;
}

.status {
    font-size: 12px;
}

.status-free {
    color: #27ae60;
    background: #00b8a526;
    padding: 3px 9px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}

.status-played {
    color: #8e44ad;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #e0e0e0;
    color: #333;
    background: #fff;
    transition: transform 0.18s cubic-bezier(.34, 1.56, .64, 1), background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.pagination a:hover {
    transform: scale(1.18);
    background: #fff3e0;
    border-color: #f39c12;
    color: #e67e22;
    box-shadow: 0 4px 14px rgba(243, 156, 18, 0.18);
}

.pagination a.active {
    background: #ff4757;
    color: #fff;
    border-color: #ff4757;
    transform: scale(1.13);
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.28);
}

.pagination .dots {
    border: none;
    background: transparent;
    color: #aaa;
    letter-spacing: 2px;
    cursor: default;
    width: auto;
    padding: 0 2px;
}

.pagination .arrow {
    font-size: 18px;
    color: #888;
}

.pagination .arrow:hover {
    color: #ff4757;
    border-color: #ff4757;
}

.click-marker {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 4px solid #ff4757;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
    animation: pop 0.2s ease-out;
}

@keyframes pop {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.ast-container {
    display: block !important;
}

.wp-block-group.is-layout-constrained {
    display: block !important;
    width: 100% !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .puzzle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .puzzle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-card-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .puzzle-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .game-card-image {
        height: 200px;
    }

    .puzzle-grid-wrap {
        padding: 0;
    }
}

.card-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 52px;
    height: 52px;
    background: #f5a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(245, 166, 35, 0.6);
    opacity: 0;
    transition: opacity 0.25s ease,
        transform 0.25s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}

.game-card:hover .card-hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-hover-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
    box-sizing: border-box;
}

/* ── Related Games ── */
.related-card {
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1);
}

.related-card:hover {
    transform: scale(1.04);
}

.related-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-rating {
    font-size: 12px;
    color: #f39c12;
    display: block;
}

* {
    box-sizing: border-box;
}

.game-page-wrap {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.game-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    background: #111;
    cursor: crosshair;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

#play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    border-radius: 16px;
    gap: 12px;
}

.start-btn {
    width: 64px;
    height: 64px;
    background: #f5a623;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
}

.start-btn:hover {
    transform: scale(1.1);
}

.start-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.tap-label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.progress-wrap {
    background: #e9ecef;
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f5a623, #ff6b35);
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    margin-top: 6px;
}

.click-marker {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid #ff4757;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
    background: rgba(255, 71, 87, 0.12);
    animation: pop 0.25s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes pop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.game-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);    
}

.game-thumb {
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
}

.info-card h2 {
    font-size: 17px;
    color: #222;
    margin: 0 0 6px;
    line-height: 1.4;
}

.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}

.stat-box .stat-icon {
    font-size: 28px;
    margin-bottom: 4px;
}

.stat-box .stat-val {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.stat-box .stat-lbl {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.action-btn {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.action-btn:last-child {
    margin-bottom: 0;
}

.action-btn:hover {
    transform: scale(1.03);
}

.btn-next {
    background: #f5a623;
    color: #fff !important;
}

.btn-home {
    background: #f1f3f5;
    color: #555 !important;
}

.already-played-box {
    text-align: center;
}

.already-played-box h2 {
    color: #ff4757;
    font-size: 20px;
    margin: 0 0 8px;
}

.already-played-box p {
    color: #666;
    font-size: 14px;
    margin: 0 0 16px;
}

@media (max-width: 768px) {
    .game-page-wrap {
        grid-template-columns: 1fr;
    }
}


/* ── Category Grid ── */
.category-grid-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.25s ease;
    cursor: pointer;
    display: block;
}

.category-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card-info {
    padding: 14px;
}

.category-card-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.category-card-info p {
    margin: 0;
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* maths puzzle  */
/* ── Maths Puzzle Page ── */
.maths-page-wrap {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.maths-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.maths-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}

.maths-right .info-card {
    overflow: hidden;
    word-break: break-word;
}

.maths-right .info-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    display: block;
}

.maths-image-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: #fff;        
    justify-content: center;   
    display: flex;
}

.maths-image-wrap img {
    display: block;
    /* width: 100%; */
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
}

/* .question-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
*/
.question-card h2 {
    font-size: 18px;    
    color: #222;
    margin: 0 0 8px;
    line-height: 1.5;
} 

.hint-box {
    background: #fff9f0;
    border-left: 4px solid #f5a623;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 14px;
    color: #888;
    display: none;
}

.hint-box.show {
    display: block;
}

.hint-toggle {
    background: none;
    border: 1.5px solid #f5a623;
    color: #f5a623;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 14px;
    transition: 0.2s;
}

.hint-toggle:hover {
    background: #f5a623;
    color: #fff;
}

.badge {
    display: inline-block;
    background: #fff3e0;
    color: #f5a623;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.viewed-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #27ae60;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* @media (max-width: 768px) {
    .maths-page-wrap {
        grid-template-columns: 1fr;
    }
} */

/* ── Answer Input ── */
.answer-wrap {
    margin-top: 16px;
}

.answer-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
}

.answer-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.answer-input:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}

.submit-answer-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #f5a623;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.submit-answer-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.answer-success {
    font-size: 14px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.submitted-text {
    font-size: 14px;
    color: #555;
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.edit-answer-btn {
    background: none;
    border: 1.5px solid #e0e0e0;
    color: #888;
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.edit-answer-btn:hover {
    border-color: #f5a623;
    color: #f5a623;
}

.answer-submitted {
    margin-top: 16px;
}


/* ── Community Answers ── */
.community-answers-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.community-title {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
}

.community-answers-scroll {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.community-answers-scroll::-webkit-scrollbar {
    width: 4px;
}

.community-answers-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.community-answers-scroll::-webkit-scrollbar-thumb {
    background: #f5a623;
    border-radius: 10px;
}

.community-answer-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.2s;
}

.community-answer-card:hover {
    transform: translateX(4px);
}

.answer-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #f5a623, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.answer-body {
    flex: 1;
    min-width: 0;
}

.answer-text {
    font-size: 13px;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.5;
    word-break: break-word;
}

.answer-time {
    font-size: 11px;
    color: #aaa;
}

/* ── Riddles Grid ── */
.riddles-grid-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.riddles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.riddle-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.riddle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.riddle-card.revealed {
    border-color: #f5a623;
}

.riddle-number {
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
}

.riddle-question {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.riddle-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.riddle-question p {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.5;
}

.riddle-answer {
    background: #fff9f0;
    border-left: 3px solid #f5a623;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.answer-label {
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    display: block;
    margin-bottom: 4px;
}

.riddle-answer p {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.riddle-tap-hint {
    font-size: 13px;
    color: #bbb;
    text-align: center;
}

@media (max-width: 768px) {
    .riddles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .riddles-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.riddle-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}
.riddle-img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}



/* header bar */
.site-header,
.ast-primary-header-bar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;    
    border-bottom: 1px solid rgba(232, 226, 217, 0.6) !important;
    box-shadow: none !important;
    transition: background .2s ease, box-shadow .2s ease !important;
}

#site-navigation .menu-item > a,
.main-header-menu .menu-item > a {
    color: #444444 !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    transition: background .15s, color .15s !important;
    text-decoration: none !important;
}

#site-navigation .menu-item > a:hover,
.main-header-menu .menu-item > a:hover {
    background: rgba(245, 166, 35, 0.12) !important;
    color: #e6920a !important;
}

#site-navigation .current-menu-item > a,
#site-navigation .current-menu-ancestor > a {
    background: rgba(245, 166, 35, 0.12) !important;
    color: #e6920a !important;
}

.main-header-menu .sub-menu {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.8) !important;
    border: 1px solid rgba(232, 226, 217, 0.7) !important;
    border-radius: 12px !important;
    padding: 6px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.10) !important;
    margin-top: 8px !important;
}

.main-header-menu .sub-menu .menu-item > a {
    font-size: 14px !important;
    color: #444 !important;
    border-radius: 8px !important;
    padding: 9px 12px !important;
}

.main-header-menu .sub-menu .menu-item > a:hover {
    background: rgba(245, 166, 35, 0.12) !important;
    color: #e6920a !important;
}       