.tool-hero {
    width: 100%;
    padding: 26px 0 16px;
}

.tool-hero-card {
    width: min(980px, calc(100% - 28px));
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: linear-gradient(180deg, #111722, #0b1119);
    border: 1px solid rgba(77, 163, 255, .15);
    border-radius: 24px;
    box-shadow:
        inset 0 0 60px rgba(77, 163, 255, .04),
        0 25px 70px rgba(0, 0, 0, .35);
}

.tool-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 97%, rgba(77, 163, 255, .04) 100%);
    background-size: 100% 5px;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    left: 0;
    top: -120px;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(77, 163, 255, .12), transparent);
    animation: scan 5s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    to {
        transform: translateY(700px);
    }
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.free-badge,
.hero-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
}

.free-badge {
    background: rgba(77, 163, 255, .08);
    color: #7dd3fc;
    border: 1px solid rgba(77, 163, 255, .18);
}

.free-badge i {
    font-size: 18px;
}

.hero-online {
    background: rgba(49, 233, 129, .08);
    color: #31e981;
    border: 1px solid rgba(49, 233, 129, .15);
}

.hero-online i {
    font-size: 10px;
    animation: onlinePulse 1.3s infinite;
}

@keyframes onlinePulse {
    50% {
        opacity: .35;
        transform: scale(.8);
    }
}

.tool-hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 12px;
    color: #f5f7fa;
    letter-spacing: 1px;
}

.tool-hero p {
    color: #93a4b8;
    line-height: 1.75;
    font-size: 15px;
    max-width: 850px;
}

.tool-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tool-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #dce7f7;
    font-size: 13px;
    font-weight: bold;
}

.tool-meta i {
    color: #7dd3fc;
    font-size: 18px;
}

.tool-meta b {
    color: #93a4b8;
    font-weight: bold;
}

.hero-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero-platforms span {
    padding: 8px 13px;
    border-radius: 10px;
    background: #141d2a;
    border: 1px solid rgba(255, 255, 255, .05);
    color: #dce7f7;
    font-size: 13px;
    font-weight: 700;
    transition: .25s;
}

.hero-platforms span:hover {
    border-color: #4da3ff;
    transform: translateY(-2px);
}

.section-head {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto 18px;
    text-align: center;
}

.section-head span {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(77, 163, 255, .08);
    border: 1px solid rgba(77, 163, 255, .18);
    color: #7dd3fc;
    font-size: 13px;
    font-weight: bold;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: #f5f7fa;
    margin-bottom: 8px;
}

.section-head p {
    color: #93a4b8;
    font-size: 15px;
}

.crash-video-section {
    width: 100%;
    padding: 34px 0 70px;
}

.video-frame {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto;
}

.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 980px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(125, 211, 252, .22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.demo-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.big-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 86px;
    height: 86px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4da3ff, #7dd3fc);
    color: #07111f;
    font-size: 54px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow:
        0 0 0 14px rgba(125, 211, 252, .14),
        0 22px 60px rgba(77, 163, 255, .38);
    transition: .25s ease;
}

.big-play.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.big-play:hover {
    transform: scale(1.08);
}

.big-play i {
    transform: translateX(3px);
}

.video-controls {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 56px;
    padding: 0 12px;
    border-radius: 18px;
    background: rgba(5, 10, 18, .82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 6;
    opacity: 0;
    transform: translateY(15px);
    transition: .25s ease;
}

.custom-video-player:hover .video-controls,
.custom-video-player.show-controls .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.control-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #dce7f7;
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: .25s ease;
}

.control-btn:hover {
    background: #4da3ff;
    color: #07111f;
}

.progress-box {
    position: relative;
    flex: 1;
    height: 8px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .16);
    cursor: pointer;
    overflow: visible;
    direction: ltr;
}

.progress-loaded {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .12);
}

.progress-bar {
    position: absolute;
    left: 0;
    right: auto;
    top: 0;
    height: 100%;
    width: 0%;
    border-radius: 30px;
    background: linear-gradient(90deg, #4da3ff, #7dd3fc);
    box-shadow: 0 0 16px rgba(125, 211, 252, .65);
}

.video-time {
    color: #dce7f7;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.download-section,
.support-section {
    width: 100%;
    padding: 0 0 34px;
}

.download-card,
.support-card {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto;
    padding: 26px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    background: linear-gradient(180deg, #111722, #0b1119);
    border: 1px solid rgba(77, 163, 255, .15);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .32);
}

.crash-download-icon,
.crash-support-icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: grid;
    place-items: center;
}

.crash-download-icon {
    background: linear-gradient(135deg, #4da3ff, #7dd3fc);
    color: #07111f;
}

.crash-support-icon {
    background: linear-gradient(135deg, #229ed9, #2dd4bf);
    color: #ffffff;
}

.crash-download-icon i,
.crash-support-icon i {
    display: block;
    line-height: 1;
}

.crash-download-icon i::before {
    font-size: 42px;
}

.crash-support-icon i::before {
    font-size: 44px;
}

.download-content span {
    color: #7dd3fc;
    font-size: 13px;
    font-weight: bold;
}

.download-content h2,
.support-content h2 {
    color: #f5f7fa;
    font-size: 26px;
    margin: 5px 0 6px;
}

.download-content p,
.support-content p {
    color: #93a4b8;
    font-size: 15px;
    line-height: 1.7;
}

.download-btn,
.support-btn {
    min-width: 210px;
    height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #07111f;
    font-size: 15px;
    font-weight: bold;
    background: linear-gradient(90deg, #4da3ff, #7dd3fc, #dce7f7);
    box-shadow: 0 18px 45px rgba(77, 163, 255, .25);
    transition: .3s ease;
}

.support-btn {
    background: linear-gradient(90deg, #2dd4bf, #31e981);
}

.download-btn:hover,
.support-btn:hover {
    transform: translateY(-4px);
}

.download-btn i::before {
    font-size: 22px;
}

.support-btn i::before {
    font-size: 22px;
}

@media (max-width: 800px) {
    .tool-hero {
        padding: 22px 0 14px;
    }

    .tool-hero-card {
        padding: 22px;
        border-radius: 20px;
    }

    .hero-top,
    .hero-platforms,
    .tool-meta {
        justify-content: center;
    }

    .hero-left {
        text-align: center;
    }

    .tool-hero h1 {
        font-size: 36px;
    }

    .tool-hero p {
        font-size: 14px;
    }

    .crash-video-section {
        padding: 28px 0 52px;
    }

    .custom-video-player {
        border-radius: 18px;
    }

    .big-play {
        width: 68px;
        height: 68px;
        font-size: 42px;
    }

    .video-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        height: 52px;
        gap: 8px;
        padding: 0 8px;
        opacity: 1;
        transform: none;
    }

    .control-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 20px;
    }

    .video-time {
        font-size: 11px;
    }

    .download-card,
    .support-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px;
    }

    .crash-download-icon,
    .crash-support-icon {
        margin: 0 auto;
    }

    .download-btn,
    .support-btn {
        width: 100%;
        min-width: unset;
    }
}

.custom-video-player::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0) 10%,
            rgba(0, 0, 0, .35) 65%,
            rgba(0, 0, 0, .6) 100%);

    opacity: 1;
    transition: opacity .35s ease;
}

/* بمجرد تشغيل الفيديو */
.custom-video-player.playing::before {
    opacity: 0;
}

.video-poster-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: var(--poster);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity .35s ease;
}

.video-poster-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.custom-video-player.playing .video-poster-layer {
    opacity: 0;
    visibility: hidden;
}

/* ScrollUp */
.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(125, 211, 252, .35);
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color: #07111f;
    font-size: 32px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.9);
    transition: .35s ease;
    box-shadow: 0 18px 45px rgba(77, 163, 255, .28);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 24px 60px rgba(77, 163, 255, .42);
}

html[dir="rtl"] .scroll-top-btn {
    right: 24px;
    left: auto;
}

html[dir="ltr"] .scroll-top-btn {
    right: 24px;
    left: auto;
}

@media (max-width: 600px) {
    .scroll-top-btn {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
        font-size: 28px;
    }
}

.progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #4da3ff;
    box-shadow:
        0 0 15px rgba(77, 163, 255, .5),
        0 0 0 4px rgba(77, 163, 255, .15);
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 10;
    transition: transform .15s ease;
}

.progress-thumb:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.progress-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Mobile only: خلي الفيديو أطول بالطول */
@media (max-width: 600px) {
    .custom-video-player {
        aspect-ratio: 9 / 14;
        max-height: 78vh;
    }

    .demo-video {
        object-fit: contain;
    }

    .video-frame {
        width: min(430px, calc(100% - 28px));
    }
}

/* Tablet + Desktop: يفضل زي ما هو بالعرض */
@media (min-width: 601px) {
    .custom-video-player {
        aspect-ratio: 16 / 9;
    }
}


/* FAQ Videos */
.faq-video-section {
    width: min(980px, calc(100% - 28px));
    margin: -22px auto 54px;
}

.faq-head {
    text-align: center;
    margin-bottom: 22px;
}

.faq-head span {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(77, 163, 255, .08);
    border: 1px solid rgba(77, 163, 255, .18);
    color: #7dd3fc;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
}

.faq-head h2 {
    color: #f5f7fa;
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 8px;
}

.faq-head p {
    color: #93a4b8;
    font-size: 15px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border-radius: 20px;
    background: linear-gradient(180deg, #111722, #0b1119);
    border: 1px solid rgba(125, 211, 252, .14);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.faq-question {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border: none;
    background: transparent;
    color: #dce7f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-align: inherit;
}

.faq-question i {
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(77, 163, 255, .10);
    color: #7dd3fc;
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: .3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #4da3ff, #7dd3fc);
    color: #07111f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .45s ease, padding .35s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 22px;
}

.faq-desc {
    color: #93a4b8;
    font-size: 15px;
    line-height: 1.8;
    margin: -4px 0 16px;
}

.faq-alert {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 15px;
    background: rgba(255, 193, 7, .10);
    border: 1px solid rgba(255, 193, 7, .28);
    color: #ffe8a3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 800;
}

.faq-alert i {
    font-size: 24px;
    color: #ffc857;
    margin-top: 2px;
}

.faq-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(125, 211, 252, .18);
}

.faq-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.faq-big-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4da3ff, #7dd3fc);
    color: #07111f;
    font-size: 48px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow:
        0 0 0 12px rgba(125, 211, 252, .14),
        0 20px 55px rgba(77, 163, 255, .36);
    transition: .25s ease;
}

.faq-big-play.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.faq-big-play:hover {
    transform: scale(1.08);
}

.faq-big-play i {
    transform: translateX(3px);
}

.faq-controls {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 54px;
    padding: 0 12px;
    border-radius: 17px;
    background: rgba(5, 10, 18, .84);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 6;
}

.faq-play-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: #dce7f7;
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.faq-play-toggle:hover {
    background: #4da3ff;
    color: #07111f;
}

.faq-progress-box {
    position: relative;
    flex: 1;
    height: 8px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .16);
    cursor: pointer;
    overflow: visible;
    direction: ltr;
}

.faq-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #4da3ff, #7dd3fc);
    box-shadow: 0 0 16px rgba(125, 211, 252, .65);
}

.faq-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dce7f7;
    border: 3px solid #4da3ff;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 7px rgba(77, 163, 255, .18);
    cursor: grab;
    z-index: 3;
}

.faq-progress-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.12);
}

.faq-time {
    color: #dce7f7;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.faq-inline-download {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4da3ff, #7dd3fc);
    color: #07111f;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(77, 163, 255, .25);
    white-space: nowrap;
    line-height: 1.4;
    vertical-align: middle;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.faq-inline-download:hover {
    transform: translateY(-2px);
}

.faq-item:last-child .faq-desc {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
    margin: 0;
}

.faq-item:last-child .faq-inline-download {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .faq-video-section {
        width: min(430px, calc(100% - 20px));
        margin-top: -18px;
        margin-bottom: 44px;
    }

    .faq-question {
        min-height: 58px;
        padding: 0 14px;
        font-size: 14px;
    }

    .faq-video-player {
        aspect-ratio: 9 / 14;
        max-height: 78vh;
        border-radius: 16px;
        padding-bottom: 64px;
        background: #000;
    }

    .faq-video {
        height: calc(100% - 64px);
    }

    .faq-big-play {
        width: 64px;
        height: 64px;
        font-size: 40px;
        z-index: 18 !important;
    }

    .faq-controls {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        bottom: 8px !important;
        left: 8px !important;
        right: 8px !important;
        height: 50px;
        gap: 8px;
        padding: 0 8px;
        z-index: 20 !important;
    }

    .faq-play-toggle {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 20px;
    }

    .faq-progress-box {
        min-width: 0;
        flex: 1;
    }

    .faq-time {
        font-size: 10px;
    }

    .faq-progress-thumb {
        width: 17px;
        height: 17px;
    }

    .faq-inline-download {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .faq-item:last-child .faq-desc {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 12px;
    }

    .faq-item:last-child .faq-inline-download {
        width: 100% !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center;
    }
}

/* Crashup Light Mode */
html[data-theme="light"] .tool-hero-card,
html[data-theme="light"] .download-card,
html[data-theme="light"] .support-card,
html[data-theme="light"] .faq-item {
    background: linear-gradient(180deg, #ffffff, #eef5ff);
    border-color: rgba(7, 17, 31, .10);
    box-shadow: 0 25px 70px rgba(20, 125, 255, .10);
}

html[data-theme="light"] .tool-hero-card::before,
html[data-theme="light"] .side-menu::before {
    background: linear-gradient(transparent 97%, rgba(20, 125, 255, .08) 100%);
    background-size: 100% 5px;
}

html[data-theme="light"] .scan-line {
    background: linear-gradient(to bottom,
            transparent,
            rgba(20, 125, 255, .15),
            transparent);
}

html[data-theme="light"] .tool-hero h1,
html[data-theme="light"] .section-head h2,
html[data-theme="light"] .download-content h2,
html[data-theme="light"] .support-content h2,
html[data-theme="light"] .faq-head h2,
html[data-theme="light"] .faq-question {
    color: #07111f;
}

html[data-theme="light"] .tool-hero p,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .download-content p,
html[data-theme="light"] .support-content p,
html[data-theme="light"] .faq-head p,
html[data-theme="light"] .faq-desc {
    color: #526174;
}

html[data-theme="light"] .tool-meta span,
html[data-theme="light"] .hero-platforms span {
    background: rgba(20, 125, 255, .08);
    border-color: rgba(20, 125, 255, .12);
    color: #07111f;
}

html[data-theme="light"] .tool-meta b {
    color: #526174;
}

html[data-theme="light"] .tool-meta i {
    color: #147dff;
}

html[data-theme="light"] .section-head span,
html[data-theme="light"] .faq-head span {
    background: rgba(20, 125, 255, .08);
    border-color: rgba(20, 125, 255, .18);
    color: #147dff;
}

html[data-theme="light"] .faq-question i {
    background: rgba(20, 125, 255, .10);
    color: #147dff;
}

html[data-theme="light"] .faq-item.active .faq-question i {
    background: linear-gradient(135deg, #147dff, #00a8ff);
    color: #ffffff;
}

html[data-theme="light"] .faq-alert {
    background: rgba(255, 193, 7, .16);
    border-color: rgba(255, 193, 7, .35);
    color: #7a5600;
}

html[data-theme="light"] .faq-alert i {
    color: #d89000;
}

html[data-theme="light"] .custom-video-player,
html[data-theme="light"] .faq-video-player {
    border-color: rgba(20, 125, 255, .22);
    box-shadow: 0 28px 80px rgba(20, 125, 255, .12);
}

html[data-theme="light"] .video-controls,
html[data-theme="light"] .faq-controls {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(7, 17, 31, .10);
}

html[data-theme="light"] .control-btn,
html[data-theme="light"] .faq-play-toggle {
    background: rgba(20, 125, 255, .08);
    color: #147dff;
}

html[data-theme="light"] .video-time,
html[data-theme="light"] .faq-time {
    color: #07111f;
}

html[data-theme="light"] .progress-box,
html[data-theme="light"] .faq-progress-box {
    background: rgba(7, 17, 31, .12);
}

html[data-theme="light"] .progress-loaded {
    background: rgba(7, 17, 31, .08);
}

html[data-theme="light"] .crash-download-icon {
    background: linear-gradient(135deg, #147dff, #00a8ff);
    color: #ffffff;
}

html[data-theme="light"] .crash-support-icon {
    background: linear-gradient(135deg, #229ed9, #0bbf6a);
    color: #ffffff;
}


/* CrashUp Page Cards - Same Site Colors */

/* Dark Mode */
html:not([data-theme="light"]) .tool-hero-card,
html:not([data-theme="light"]) .download-card,
html:not([data-theme="light"]) .support-card,
html:not([data-theme="light"]) .faq-item {
    background: #050811 !important;
    border-color: rgba(125, 211, 252, .09) !important;
    box-shadow: none !important;
}

html:not([data-theme="light"]) .tool-hero-card::before,
html:not([data-theme="light"]) .faq-item::before {
    display: none !important;
}

/* Light Mode */
html[data-theme="light"] .tool-hero-card,
html[data-theme="light"] .download-card,
html[data-theme="light"] .support-card,
html[data-theme="light"] .faq-item {
    background: #ffffff !important;
    border-color: rgba(7, 17, 31, .09) !important;
    box-shadow: none !important;
}

html[data-theme="light"] .tool-hero-card::before,
html[data-theme="light"] .faq-item::before {
    display: none !important;
}

/* العناصر الصغيرة داخل الكاردات */
html:not([data-theme="light"]) .tool-meta span,
html:not([data-theme="light"]) .hero-platforms span,
html:not([data-theme="light"]) .faq-question i {
    background: rgba(255, 255, 255, .025) !important;
    border-color: rgba(125, 211, 252, .085) !important;
    box-shadow: none !important;
}

html[data-theme="light"] .tool-meta span,
html[data-theme="light"] .hero-platforms span,
html[data-theme="light"] .faq-question i {
    background: #ffffff !important;
    border-color: rgba(7, 17, 31, .08) !important;
    box-shadow: none !important;
}

/* شيل أي خط مسح أزرق فوق كارد الهيرو */
.scan-line {
    display: none !important;
}