/* ===== MONTSERRAT LOCAL FONT ===== */
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-regular.woff2') format('woff2'),
         url('/fonts/montserrat-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-bold.woff2') format('woff2'),
         url('/fonts/montserrat-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat-extrabold.woff2') format('woff2'),
         url('/fonts/montserrat-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #00ffff #0f0f0f;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
iframe {
    max-width: 100%;
}

a {
    word-break: break-word;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ffff, #00cccc);
    border-radius: 12px;
    border: 2px solid #0f0f0f;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ffff, #00e6e6);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.8);
}

/* ===== FAKE SCROLLBAR GLOW ===== */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, #00ffff, transparent);
    opacity: 0.4;
    pointer-events: none;
    z-index: 9999;
    animation: glowScroll 4s linear infinite;
}

@keyframes glowScroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.home-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-container {
    max-width: 900px;
}

.section {
    margin-bottom: 60px;
}

.section-centered,
.section-centered-block,
.card-centered {
    text-align: center;
}

.section-centered {
    margin-top: 40px;
}

.section-centered-block {
    margin-top: 40px;
}

.home-feature-section {
    margin-top: 40px;
}

.home-secondary-section {
    margin-top: 30px;
}

.home-latest-title {
    text-align: center;
}

.home-reviews-cta {
    margin-top: 22px;
    text-align: center;
}

.home-intro {
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.home-links-list {
    line-height: 1.8;
}

/* ===== HEADER / NAV ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,255,255,0.15);
    padding: 14px 10px;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 12px 22px;
    border: 1px solid #00ffff;
    color: #00ffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
    box-shadow: 0 0 4px rgba(0,255,255,0.15);
}

.nav-btn:hover {
    background: #00ffff;
    color: #000;
        box-shadow: 0 0 12px rgba(0,255,255,0.4);
    transform: translateY(-1px);

}

.nav-btn.active {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.nav-btn.active:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.nav-btn.btn-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* ===== TOP / BOTTOM NAV ===== */
.top-bar {
    margin-bottom: 24px;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 10px;
    gap: 10px;
}

.dual-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.back-link {
    display: inline-block;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.back-link:hover {
    opacity: 1;
}

.back-link:visited {
    color: #00ffff;
}

.bottom-nav .back-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0,255,255,0.6);
    border-radius: 8px;
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    line-height: 1;
}

.bottom-nav .back-link:hover {
    background: #00ffff;
    color: #000;
}

.back {
    display: inline-block;
    margin-bottom: 20px;
    color: #b366ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

.back:hover {
    text-decoration: underline;
}

.back:visited {
    color: #b366ff;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    margin: 10px 0 20px;
    font-size: 13px;
    color: #888;
    opacity: 0.9;
}

.breadcrumb a {
    color: #aaa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #fff;
}

/* ===== HEADINGS ===== */
h1 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #00ffff;
    line-height: 1.15;
}

h2 {
    margin: 0 0 16px 0;
    font-size: 32px;
    font-weight: 800;
    color: #e6e6e6;
    line-height: 1.2;
}

.tagline {
    margin-bottom: 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #00ffff;
    opacity: 0.9;
}

.section-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.section-heading {
    margin-top: 30px;
    margin-bottom: 24px;
}

/* ===== INTRO / META ===== */
.review-meta {
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
}

.reviews-summary {
    margin-top: 32px;
}

.intro-text {
    max-width: 760px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.82;
}

.intro-review {
    max-width: 900px;
    margin-bottom: 30px;
}

/* ===== GENERAL TEXT ===== */
.page-text {
    margin-top: 15px;
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
}

.content {
    width: 100%;
    max-width: 100%;
}

.content h2 {
    margin-top: 32px;
}

.content p,
.content li,
.page-text li {
    line-height: 1.7;
}

.content p,
.content li {
    font-size: 16px;
    opacity: 0.92;
}

.content ul {
    padding-left: 22px;
}

.container > p {
    margin-bottom: 16px;
}

/* ===== CENTERED TEXT RULES ===== */
.review-meta,
.intro-text,
.tagline,
.product-shot p,
.footer p,
.section-centered,
.section-centered-block,
.card-centered,
.socials-text {
    text-align: center;
}

/* ===== LINKS ===== */
.page-text a,
.intro-text a,
.content a,
.container p a,
.container li a,
.footer a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.88;
    transition: opacity 0.25s ease, text-decoration 0.25s ease;
}

.page-text a:visited,
.intro-text a:visited,
.content a:visited,
.container p a:visited,
.container li a:visited,
.footer a:visited {
    color: #00ffff;
}

.page-text a:hover,
.intro-text a:hover,
.content a:hover,
.container p a:hover,
.container li a:hover,
.footer a:hover {
    color: #00ffff;
    text-decoration: underline;
    opacity: 1;
}

.page-text a:active,
.intro-text a:active,
.content a:active,
.container p a:active,
.container li a:active,
.footer a:active {
    color: #00ffff;
}

/* ===== BUTTONS ===== */
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.buttons a,
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #00ffff;
    background: transparent;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 6px rgba(0,255,255,0.15);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn,
.btn:visited,
.btn:hover,
.btn:active,
.buy-btn,
.buy-btn:visited,
.buy-btn:hover,
.buy-btn:active {
    text-decoration: none !important;
}

.buttons a:visited,
.btn:visited {
    color: #00ffff;
    border-color: #00ffff;
}

.buttons a:hover,
.buttons a:visited:hover,
.btn:hover,
.btn:visited:hover {
    background: #00ffff;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.18);
}

.buttons a.btn-youtube:hover,
.buttons a.btn-youtube:visited:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.28);
}

.buy-btn {
    display: inline-block;
    border-radius: 10px;
    margin: 10px 10px 0 0;
    padding: 14px 26px;
    border: 1px solid #00ffff;
    background: transparent;
    color: #00ffff;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0,255,255,0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}




.buy-btn:visited {
    color: #00ffff;
    border-color: #00ffff;
}

.buy-btn:hover,
.buy-btn:visited:hover {
    background: #00ffff;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.18);
}

.buy-btn:active {
    color: #000000 !important;
}

.buy-btn.secondary {
    border-color: #555;
    color: #aaa;
}

.buy-btn.secondary:visited {
    color: #aaa;
    border-color: #555;
}

.buy-btn.secondary:hover,
.buy-btn.secondary:visited:hover {
    background: #555;
    color: #fff !important;
    box-shadow: none;
}

.buttons button.btn {
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

/* ===== FOCUS STATES ===== */
.buttons a:focus-visible,
.btn:focus-visible,
.buy-btn:focus-visible,
.back-link:focus-visible,
.back:focus-visible,
.socials a:focus-visible {
    outline: 2px solid #00ffff;
    outline-offset: 3px;
}

/* ===== GRID ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testing-gear-grid,
.charging-grid {
    margin-top: 20px;
    margin-bottom: 20px;
}

.testing-gear-grid {
    margin-bottom: 30px;
}

/* ===== CARD ===== */
.card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(0, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.01);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.10), transparent 45%);
    transition: opacity 0.28s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.10);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
    color: #00ffff;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.card:hover h3 {
    transform: translateX(2px);
    opacity: 1;
}

.card p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
}

.card .btn {
    position: relative;
    z-index: 3;
    margin-top: 16px;
}

.card:hover .btn {
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.16);
}

/* ===== CLICKABLE CARDS ===== */
.card-clickable {
    position: relative;
}

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: inherit;
    text-decoration: none;
}

.card-overlay:visited,
.card-overlay:hover,
.card-overlay:active {
    color: inherit;
    text-decoration: none;
}

.card-clickable .card-img,
.card-clickable .gear-img,
.card-clickable h3,
.card-clickable p,
.card-clickable .proof-text,
.card-clickable .btn {
    position: relative;
    z-index: 2;
}

.card-clickable .card-img,
.card-clickable .gear-img,
.card-clickable h3,
.card-clickable p,
.card-clickable .proof-text {
    pointer-events: none;
}

.card-clickable .btn {
    z-index: 3;
    pointer-events: auto;
}

/* ===== CARD IMAGES ===== */
.card-img,
.gear-img {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.gear-img {
    margin-bottom: 10px;
}

.card:hover .card-img,
.card:hover .gear-img,
.card-clickable:hover .card-img,
.card-clickable:hover .gear-img {
    transform: scale(1.04);
    opacity: 0.97;
    filter: brightness(1.04);
}

/* ===== OPTIONAL CARD LINK ===== */
.card-title-link {
    color: #00ffff;
    text-decoration: none;
    transition: opacity 0.25s ease, text-shadow 0.25s ease;
}

.card-title-link:visited {
    color: #00ffff;
}

.card-title-link:hover {
    color: #00ffff;
    text-decoration: none;
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.18);
}

/* ===== HOMEPAGE CARDS ===== */
.home-cards {
    grid-template-columns: repeat(2, 1fr);
}

.home-cards .card:first-child {
    grid-column: span 2;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    border-color: rgba(0,255,255,0.45);
    box-shadow: 0 0 22px rgba(0,255,255,0.08);
}

.home-cards .card:first-child .card-img {
    height: 270px;
}

.card-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 10px auto 12px;
    padding: 5px 10px;
    border: 1px solid rgba(0,255,255,0.4);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #00ffff;
    background: rgba(0,255,255,0.05);
}

/* ===== GUIDE IMAGES / MEDIA ===== */
.guide-hero-image {
    display: block;
    width: 100%;
    margin: 20px 0;
    border-radius: 12px;
}

.guide-card-image {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.guide-highlight-card {
    margin-top: 20px;
}

.guide-after-card-text {
    margin-top: 20px;
}

.guide-media {
    margin: 32px 0;
    padding: 14px;
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.25s ease;
}

.guide-media:hover {
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-1px);
}

.guide-media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.guide-media p {
    font-size: 13px;
    color: #aaa;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* ===== PRODUCT SHOT ===== */
.product-shot {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    text-align: center;
}

.product-shot img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.product-shot p {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.7;
}

/* ===== VIDEO ===== */
.video {
    width: 100%;
    margin: 30px 0;
}

.video iframe {
    display: block;
    width: 100%;
    border: 0;
}

/* ===== BUY BOX ===== */
.buy-box {
    width: 100%;
    margin: 40px 0;
}

/* ===== PROOF / SMALL TEXT ===== */
.proof-text {
    margin-top: 5px;
    font-size: 13px;
    color: #888;
    text-align: left;
}

.quick-verdict {
    border-top: 1px solid rgba(0,255,255,0.18);
}

/* ===== FAQ ===== */
.faq-section {
    margin-top: 50px;
}

.faq-section h2 {
    margin-bottom: 25px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0,255,255,0.05);
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(0,255,255,0.4);
    box-shadow: 0 0 15px rgba(0,255,255,0.15);
    transform: translateY(-2px);
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #00ffff;
}

.faq-item p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/* ===== INFO BOX ===== */
.info-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 12px;
    padding: 2px 20px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0,255,255,0.05);
    transition: all 0.25s ease;
}

.info-box h2 {
    margin: 0 0 10px;
    color: #00ffff;
}

.info-box p {
    color: #ccc;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid rgba(0,255,255,0.12);
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-description {
    max-width: 680px;
    margin: 12px auto;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.affiliate-note {
    max-width: 700px;
    margin: 8px auto 0 auto;
    color: rgba(255, 255, 255, 0.45);
}

.socials-text {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: rgba(0, 255, 255, 0.7);
}

/* ===== SOCIAL ICONS ===== */
.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.25s ease;
}

.socials svg {
    width: 19px;
    height: 19px;
    fill: rgba(0, 255, 255, 0.6);
    transition: all 0.25s ease;
}

.socials a:hover {
    transform: translateY(-3px) scale(1.08);
}

.socials a:hover svg {
    fill: #ffffff;
}

.socials a:nth-child(1):hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.socials a:nth-child(2):hover {
    background: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.socials a:nth-child(3):hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    border-color: #dd2a7b;
    box-shadow: 0 0 20px rgba(221, 42, 123, 0.7);
}

.socials a:nth-child(4):hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.7);
}

.socials a:nth-child(5):hover {
    background: #ff424d;
    border-color: #ff424d;
    box-shadow: 0 0 20px rgba(255, 66, 77, 0.7);
}

/* ===== ERROR PAGE ===== */
.error-code {
    margin: 0 0 12px 0;
    text-align: center;
    font-size: 92px;
    line-height: 1;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 24px rgba(0, 255, 255, 0.12);
}

/* ===== COOKIE SYSTEM ===== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(0,255,255,0.22);
    background: rgba(13,13,13,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 34px rgba(0,255,255,0.12);
    border-radius: 12px;
}

.cookie-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    max-width: 600px;
}

.cookie-banner-text h3 {
    color: #00ffff;
    margin: 0 0 6px;
    font-size: 16px;
}

.cookie-banner-text p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text a,
.cookie-modal-box a {
    color: #00ffff;
    text-decoration: underline;
}

.cookie-banner-text a:hover,
.cookie-modal-box a:hover {
    opacity: 0.9;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 16px;
    border: 1px solid #00ffff;
    background: transparent;
    color: #00ffff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 13px;
}

.cookie-btn-primary {
    background: #00ffff;
    color: #000;
}

.cookie-btn-secondary {
    border-color: #666;
    color: #aaa;
}

.cookie-btn-ghost {
    border-color: rgba(0,255,255,0.25);
    color: #00ffff;
}

.cookie-btn:hover {
    background: #00ffff;
    color: #000;
    border-color: #00ffff;
}

.cookie-btn-secondary:hover {
    background: #444;
    color: #fff;
    border-color: #666;
}

.cookie-btn:focus-visible,
.cookie-btn-secondary:focus-visible,
.cookie-option input:focus-visible {
    outline: 2px solid #00ffff;
    outline-offset: 2px;
}

.cookie-btn-reset {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
}

.cookie-btn-reset:hover {
    border-color: rgba(0,255,255,0.4);
    color: #00ffff;
    background: rgba(0,255,255,0.08);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.cookie-modal-box {
    background: #111;
    padding: 26px;
    max-width: 520px;
    width: 100%;
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,255,255,0.15);
}

.cookie-modal-box h3 {
    margin-top: 0;
    color: #00ffff;
}

.cookie-modal-intro {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 16px;
}

.cookie-option {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(0,255,255,0.15);
    border-radius: 8px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.cookie-option:hover {
    border-color: #00ffff;
    background: rgba(0,255,255,0.05);
}

.cookie-option input {
    margin-top: 3px;
}

.cookie-option strong {
    color: #fff;
}

.cookie-option span {
    font-size: 14px;
    color: #ccc;
}

.cookie-option-disabled {
    opacity: 0.6;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

/* DEFAULT: ascuns */
.mobile-header,
.mobile-menu {
    display: none;
}




.watch-page-link {
    text-align: center;
    margin: 14px 0 18px;
    font-size: 15px;
    line-height: 1.5;
}

.watch-page-link a {
    display: inline-block;
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 255, 0.35);
    background: rgba(0, 255, 255, 0.06);
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 0 0 rgba(0, 255, 255, 0);
}

.watch-page-link a:hover,
.watch-page-link a:focus {
    color: #000 !important;
    background: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.25);
    transform: translateY(-1px);
     text-decoration: none !important;
}

.watch-page-link a:visited {
    color: #00ffff;
}

.watch-page-link a:hover:visited,
.watch-page-link a:focus:visited {
    color: #000;
}

.video-intent {
    text-align: center;
    margin: 12px 0 18px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #9ca3af;
    letter-spacing: 0.2px;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 18px 0;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}




/* ===== RESPONSIVE 1024 ===== */
@media (max-width: 1024px) {
    .main-header {
        padding: 12px 8px;
    }

    .nav-buttons {
        gap: 10px;
    }

    .nav-btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    .reviews-grid,
    .category-grid,
    .gear-grid,
    .guides-grid,
    .charging-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid .card:last-child:nth-child(odd),
    .category-grid .card:last-child:nth-child(odd),
    .gear-grid .card:last-child:nth-child(odd),
    .guides-grid .card:last-child:nth-child(odd),
    .charging-grid .card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* ===== RESPONSIVE 768 ===== */
@media (max-width: 768px) {
    html,
    body {
        scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }

    .main-header {
        padding: 8px 6px;
    }



    .watch-page-link {
        margin: 12px 0 16px;
        font-size: 14px;
    }

    .watch-page-link a {
        width: 100%;
        max-width: 320px;
        padding: 11px 14px;
        box-sizing: border-box;
    }









 /* MOBILE */

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    margin-bottom: 50px;
}

/* © text */
.mobile-menu-footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

/* tagline */
.mobile-menu-footer span {
    font-size: 11px;
    color: rgba(0,255,255,0.7);
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(0,255,255,0.2);
}



    .buttons, .nav-buttons {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2px 20px 0px 20px;
        

    }

    .mobile-logo-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        height: 34px;
        width: auto;
        display: block;
    }




    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 63px;
        height: 34px;
        padding: 0;
        border: 1px solid rgba(0,255,255,0.22);
        border-radius: 10px;
        background: rgba(13,13,13,0.96);
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0,255,255,0.08);
    }

    .menu-toggle span {
        width: 30px;
        height: 2px;
        background: #00ffff;
        margin: 0 auto;
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(8, 8, 8, 0.92);
        backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .mobile-menu.is-open {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        
    }

    .mobile-menu-inner {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 10px 20px 30px;
        box-sizing: border-box;
        gap: 14px;
         
    }

 .menu-close {
    position: static; /* FOARTE IMPORTANT */
    flex-shrink: 0;

        top: 10px;
        right: 26px;
        width: 63px;
        height: 34px;
        border: 1px solid rgba(0,255,255,0.22);
        border-radius: 10px;
        background: rgba(13,13,13,0.96);
        color: #00ffff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0,255,255,0.08);
        
}
.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 6px;
    margin-bottom: 10px;

}
.mobile-menu-logo img {
        height: 34px;
        width: auto;
        display: block;
    
}





    .mobile-menu a {
        display: block;
        width: 100%;
        padding: 16px 18px;
        border: 1px solid rgba(0,255,255,0.18);
        border-radius: 12px;
        background: rgba(255,255,255,0.02);
        color: #00ffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        box-sizing: border-box;
        transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu a:hover,
   .mobile-menu a.active {
    background: rgba(0,255,255,0.12);
    border-color: #00ffff;
    box-shadow: 0 0 12px rgba(0,255,255,0.25);
}







    .nav-buttons {
        gap: 8px;
    }

    .nav-buttons .nav-btn {
        border: 1px solid #00ffff;
    }

    .nav-buttons .nav-btn.active {
        border: 1px solid #ffffff;
        color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    .nav-btn.active:hover {
        background: rgba(255,255,255,0.1);
        color: #ffffff;
    }

    .nav-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .nav-btn.btn-youtube {
        font-size: 0;
    }

    .nav-btn.btn-youtube::after {
        content: "YouTube";
        font-size: 12px;
    }

    .nav-btn[href="/gear"] {
        font-size: 0;
    }

    .nav-btn[href="/gear"]::after {
        content: "Setup";
        font-size: 12px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid,
    .category-grid,
    .gear-grid,
    .guides-grid,
    .charging-grid,
    .testing-gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid .card:last-child:nth-child(odd),
    .category-grid .card:last-child:nth-child(odd),
    .gear-grid .card:last-child:nth-child(odd),
    .guides-grid .card:last-child:nth-child(odd),
    .charging-grid .card:last-child:nth-child(odd),
    .testing-gear-grid .card:last-child:nth-child(odd) {
        grid-column: span 2;
    }

    .container {
        padding: 28px 16px;
    }

    h1 {
        font-size: 32px;
        letter-spacing: 0.5px;
    }

    h2 {
        font-size: 24px;
    }

    .tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 21px;
    }

    .buttons a,
    .btn,
    .buy-btn {
        width: 100%;
        text-align: center;
    }

    .home-intro,
    .intro-text,
    .content p,
    .content li {
        font-size: 14px;
    }

    .intro-text,
    .review-meta,
    .product-shot p,
    .footer p {
        text-align: center;
    }

    .page-text,
    .content p {
        text-align: justify;
    }

    .content li {
        text-align: left;
    }

    .home-cards {
        grid-template-columns: 1fr 1fr;
    }

    .home-cards .card:first-child {
        grid-column: span 2;
    }

    .card-img,
    .gear-img {
        height: 200px;
    }

    .video iframe {
        height: 260px;
    }

    .video.video-responsive iframe {
    height: 100%;
}

    .product-shot {
        margin: 24px 0;
    }

    .product-shot p {
        font-size: 13px;
    }

    .dual-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .back-link {
        font-size: 13px;
    }

    .bottom-nav {
        margin-top: 32px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .section {
        margin-bottom: 46px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }

    .cookie-modal-box {
        margin: 20px;
    }

       .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        margin: 0;
        border-radius: 10px;
    }
}

/* ===== RESPONSIVE 420 ===== */
@media (max-width: 420px) {
    .cookie-banner-actions,
    .cookie-modal-actions {
        flex-direction: column;
        width: 100%;
    }
   .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        margin: 0;
        border-radius: 10px;
    }


.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    margin-bottom: 50px;
}

/* © text */
.mobile-menu-footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

/* tagline */
.mobile-menu-footer span {
    font-size: 11px;
    color: rgba(0,255,255,0.7);
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(0,255,255,0.2);
}




    .cookie-btn {
        width: 100%;
    }

    .home-cards {
        grid-template-columns: 1fr;
    }

    .main-header {
        padding: 8px 6px;
    }

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

    .nav-btn {
        
        padding: 12px 10px;
        font-size: 12px;
        text-align: center;
        
    }

    .nav-buttons .nav-btn {
        border: 1px solid #00ffff;
        line-height: 1;
    }

    .nav-buttons .nav-btn.active {
        border: 1px solid #ffffff;
        color: #ffffff;
        background: rgba(255,255,255,0.05);
    }

    .nav-btn.active:hover {
        background: rgba(255,255,255,0.1);
        color: #ffffff;
    }

    .nav-btn.btn-youtube {
        font-size: 0;
    }

    .nav-btn.btn-youtube::after {
        content: "YouTube";
        font-size: 12px;
    }

    .nav-btn[href="/gear"] {
        font-size: 0;
    }

    .nav-btn[href="/gear"]::after {
        content: "Setup";
        font-size: 12px;
    }

    .bottom-nav {
        flex-direction: column;
    }

    .bottom-nav .back-link {
        width: 100%;
        text-align: center;
    }





 /* MOBILE */

.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    margin-bottom: 50px;
}

/* © text */
.mobile-menu-footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

/* tagline */
.mobile-menu-footer span {
    font-size: 11px;
    color: rgba(0,255,255,0.7);
    letter-spacing: 0.5px;
    text-shadow: 0 0 6px rgba(0,255,255,0.2);
}



    .buttons, .nav-buttons {
        display: none;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2px 20px 0px 20px;
        

    }

    .mobile-logo-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        height: 34px;
        width: auto;
        display: block;
    }




    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 63px;
        height: 34px;
        padding: 0;
        border: 1px solid rgba(0,255,255,0.22);
        border-radius: 10px;
        background: rgba(13,13,13,0.96);
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0,255,255,0.08);
    }

    .menu-toggle span {
        width: 30px;
        height: 2px;
        background: #00ffff;
        margin: 0 auto;
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(8, 8, 8, 0.92);
        backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .mobile-menu.is-open {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        
    }

    .mobile-menu-inner {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 10px 20px 30px;
        box-sizing: border-box;
        gap: 14px;
         
    }

 .menu-close {
    position: static; /* FOARTE IMPORTANT */
    flex-shrink: 0;

        top: 10px;
        right: 26px;
        width: 63px;
        height: 34px;
        border: 1px solid rgba(0,255,255,0.22);
        border-radius: 10px;
        background: rgba(13,13,13,0.96);
        color: #00ffff;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0,255,255,0.08);
        
}
.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 6px;
    margin-bottom: 10px;

}
.mobile-menu-logo img {
        height: 34px;
        width: auto;
        display: block;
    
}





    .mobile-menu a {
        display: block;
        width: 100%;
        padding: 16px 18px;
        border: 1px solid rgba(0,255,255,0.18);
        border-radius: 12px;
        background: rgba(255,255,255,0.02);
        color: #00ffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        box-sizing: border-box;
        transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu a:hover,
   .mobile-menu a.active {
    background: rgba(0,255,255,0.12);
    border-color: #00ffff;
    box-shadow: 0 0 12px rgba(0,255,255,0.25);
}









    .home-cards .card:first-child {
        grid-column: span 1;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .grid .card:last-child {
        grid-column: auto;
    }

    .reviews-grid,
    .category-grid,
    .gear-grid,
    .guides-grid,
    .charging-grid,
    .testing-gear-grid {
        grid-template-columns: 1fr;
    }

    .grid .card {
        grid-column: auto !important;
    }

    .reviews-grid .card:last-child,
    .category-grid .card:last-child,
    .gear-grid .card:last-child,
    .guides-grid .card:last-child,
    .charging-grid .card:last-child,
    .testing-gear-grid .card:last-child {
        grid-column: auto;
    }
}