:root {
    --primary: #130c16;
    --accent: #FFD600 !important;
    --wm-bg: #fff;
    --wm-ink: #0b0b0b;
    --wm-ink2: #1a1a1a;
    --wm-muted: #6f6f6f;
    --wm-line: #e9e9e9;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Roboto, sans-serif;
    background: #ddd;
    color: #333;
    line-height: 1.4;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.navbar-logo {
    font-family: "Bebas Neue", sans-serif;
    text-decoration: none;
    font-size: 82px;
    color: #000;
    margin-left: 46px;
    margin-top: -49px;
}

.navbar {
    position: relative;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 90px;
    padding: .2rem 1rem;
    background: #0B1018;
    color: #fff;
    border-bottom: 1px solid #000;
}

.navbar-branding {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.navbar-branding .avatar img {
    max-width: 400px;
}

.navbar-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.navbar-desktop .bottom-row {
    display: flex;
    gap: 1.3rem;
}

.navbar-desktop .bottom-row a {
    color: #eee;
    text-decoration: none;
    font-size: 14px;
    padding: 7px 5px 4px;
    border-radius: 5px;
}

.navbar-desktop .bottom-row a:hover {
    color: #000;
    background: #fff;
}

.wm-hero {
    padding-top: 20px;
    padding-bottom: 25px;
    background: #eee;
}

#hero {
    padding-bottom: 20px !important;
    color: #000;
}

#hero .wm-kicker {
    font-family: "Bangers", system-ui;
    font-size: 28px;
    color: #000;
}

.wm-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.wm-heroGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: center;
}

.wm-panel {
    padding: 20px;
}

.wm-h1 {
    font-family: "Bangers", system-ui;
    font-size: clamp(50px, 4vw, 66px);
    line-height: .72;
    margin: 0 0 12px;
    font-weight: 400;
    max-width: 25ch;
    color: var(--accent);
    -webkit-text-stroke: 2px #000;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000;
}

.wm-h1 span {
    color: #666;
}

.wm-h2 {
    font-family: "Bangers", system-ui;
    font-size: 40px;
    line-height: .72;
    color: #0B1018;
}

.wm-lead {
    font: 400 16px/1.5 system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    max-width: 72ch;
    color: #000;
}

.wm-badgeRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 22px;
}

.wm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--wm-line);
    border-radius: 999px;
    background: #ccc;
    font: 700 14px/1 system-ui;
}

.wm-ctaRow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.wm-panel > picture img {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.wm-cardNotice {
    margin-top: 0;
}

.topCard {
    display: block !important;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.wm-cardNotice--hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.wm-cardNotice--hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    margin: 0;
}

.video-cover {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    cursor: pointer;
    border: 5px solid #ff0000;
    border-radius: 6px;
    background: #000;
    line-height: 0;
}

.video-cover > img,
.video-cover > iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    margin: 0 !important;
    border: 0;
}

.video-cover > img {
    object-fit: cover;
}

.video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background .2s ease;
    pointer-events: none;
}

.video-play i {
    font-size: 60px;
    color: #fff;
}

.video-cover:hover .video-play {
    background: rgba(0, 0, 0, 0.4);
}

.video-cover::after {
    content: "Majstor Aca Video";
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 3;
    padding: 4px 6px;
    border-radius: 3px;
    background: var(--accent);
    color: #000;
    font: 700 11px/1 system-ui, Arial, sans-serif;
    letter-spacing: .3px;
}

.wm-priceBox {
    display: block;
}

.brands-strip {
    padding: 20px;
    border-top: 1px solid #ccc;
    background: #eee;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
    border-top: 10px solid #eee;
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    animation: logo-scroll 20s linear infinite;
}

.logo-track img {
    display: block;
    flex: 0 0 auto;
    width: 901px;
    height: 50px;
    max-width: none;
    margin: 0 0 20px 0;
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-901px);
    }
}

@media (max-width: 980px) {
    .wm-panel {
        padding-top: 0;
    }

    .wm-heroGrid {
        display: flex;
        flex-direction: column-reverse;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .wm-h1 {
        font-size: 50px;
    }

    .wm-btn {
        font-size: 40px;
    }

    .wm-hero {
        padding-top: 60px;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .mobileCard {
        display: block;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 700px) {
    .left {
        margin-top: 0;
    }

    .wm-panel {
        padding: 10px;
        padding-bottom: 0;
    }

    .topCard {
        display: block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    .wm-badgeRow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wm-badge {
        border-radius: 0;
        font-weight: normal;
    }
}

.wm-heroGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 26px;
    align-items: center;
    justify-content: center;
}

.wm-heroGrid > .wm-panel {
    width: 100%;
    min-width: 0;
}

.wm-panel.left,
.wm-panel--hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-panel.left {
    padding: 20px;
}

.wm-panel__inner--left {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: 0;
}

.wm-panel--hero-media {
    padding: 0;
}

.wm-priceBox--hero-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-cardNotice--hero-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-cardNotice--hero-media picture,
.wm-cardNotice--hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.wm-cardNotice--hero-media img {
    object-fit: cover;
    max-width: none;
    margin: 0;
}

@media (max-width: 980px) {
    .wm-heroGrid {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .wm-panel.left,
    .wm-panel--hero-media {
        width: 100%;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .wm-panel__inner--left {
        width: 100%;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .wm-cardNotice--hero-media {
        width: 100%;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 700px) {
    .wm-panel {
        padding: 10px;
    }

    .wm-panel__inner--left {
        max-width: calc(100% - 30px);
    }

    .wm-cardNotice--hero-media {
        max-width: none;
    }

    .wm-panel--hero-media {
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: -10px;
        width: calc(100% + 40px) !important;
    }
}

.wm-splitMedia {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 30px;
}

.wm-splitMedia__content {
    min-width: 0;
}

.wm-splitMedia__media {
    min-width: 0;
}

.wm-splitMedia__media .video-cover {
    width: 100%;
    margin: 0;
}

@media (max-width: 980px) {
    .wm-splitMedia {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .wm-splitMedia__media {
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 980px) {
    .wm-panel--hero-media {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0;
    }

    .wm-priceBox--hero-media,
    .wm-cardNotice--hero-media {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: auto;
        margin: 0;
        display: block;
    }

    .wm-cardNotice--hero-media picture {
        display: block;
        width: 100%;
        height: auto;
        line-height: 0;
    }

    .wm-cardNotice--hero-media img {
        display: block;
        width: 100%;
        height: auto;
        max-width: none;
        margin: 0;
        object-fit: contain;
    }
}

@media (max-width: 980px) {
    .wm-panel--hero-media {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
    }

    .wm-priceBox--hero-media,
    .wm-cardNotice--hero-media {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        aspect-ratio: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        overflow: visible !important;
        margin-top: -36px!important;
    }

    .wm-cardNotice--hero-media picture,
    .wm-cardNotice--hero-media img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .wm-cardNotice--hero-media img {
        object-fit: contain !important;
    }
}