* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(#000000 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

body {
    opacity: 0;
    animation: pageFadeIn 0.45s ease forwards;
}

body.page-exit {
    animation: pageFadeOut 0.35s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

a {
    color: inherit;
}

img,
video {
    max-width: 100%;
    display: block;
}

.navbar {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border-bottom: 5px solid #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-img,
.footer-logo-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    padding: 8px 14px;
    background: #ffffff;
    box-shadow: 6px 6px 0 #555555;
    transform: rotate(-2deg);
    transition: 0.2s ease;
}

.logo-img:hover,
.footer-logo-img:hover {
    transform: translate(3px, 3px) rotate(-2deg);
    box-shadow: 3px 3px 0 #555555;
}

.logo-img img {
    height: 70px;
    width: auto;
}

.footer-logo-img {
    margin-bottom: 28px;
}

.footer-logo-img img {
    height: 42px;
    width: auto;
}

.navbar nav,
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.navbar nav a,
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: 0.2s ease;
}

.navbar nav a {
    font-size: 16px;
}

.footer-links a {
    font-size: 15px;
}

.navbar nav a:hover,
.footer-links a:hover,
.navbar nav a.active-link {
    border-bottom-color: #ffffff;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 90vh;
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, transparent 70%, rgba(0, 0, 0, 0.08) 70%), #ffffff;
    border-bottom: 6px solid #000000;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.tagline,
.section-title p {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #000000;
    padding: 8px 14px;
    background: #ffffff;
    color: #000000;
    box-shadow: 5px 5px 0 #000000;
    margin-bottom: 28px;
    transform: rotate(-1deg);
}

.hero h1,
.mice-hero-content h1,
.keyboard-copy h1,
.gear-copy h1,
.contact-copy h1 {
    font-size: clamp(54px, 8vw, 118px);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    max-width: 750px;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.18);
}

.hero-text,
.mice-hero-content p,
.keyboard-text,
.gear-text,
.contact-text,
.product-info p,
.keyboard-card-info p,
.gear-card-content p,
.contact-info-panel p,
.comic-note p,
.footer-text,
.form-group input,
.form-group select,
.form-group textarea {
    font-family: Arial, Helvetica, sans-serif;
}

.hero-text,
.mice-hero-content p,
.keyboard-text,
.gear-text,
.contact-text {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 620px;
    margin-bottom: 30px;
}

.comic-badge {
    position: absolute;
    top: 120px;
    right: 6%;
    width: 130px;
    height: 130px;
    background: #ffffff;
    border: 5px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    transform: rotate(12deg);
    box-shadow: 7px 7px 0 #000000;
    z-index: 3;
}

.speech-bubble {
    position: relative;
    display: inline-block;
    background: #ffffff;
    border: 4px solid #000000;
    padding: 18px 24px;
    font-size: 22px;
    margin-bottom: 32px;
    box-shadow: 6px 6px 0 #000000;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    left: 35px;
    bottom: -22px;
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-right: 4px solid #000000;
    border-bottom: 4px solid #000000;
    transform: rotate(45deg);
}

.hero-buttons,
.keyboard-actions,
.gear-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn,
.keyboard-btn,
.gear-btn,
.product-btn,
.contact-submit {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: 4px solid currentColor;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn,
.keyboard-btn,
.gear-btn {
    padding: 15px 28px;
    font-size: 18px;
}

.btn.primary {
    background: #000000;
    color: #ffffff;
    box-shadow: 6px 6px 0 #999999;
}

.btn.secondary {
    background: #ffffff;
    color: #000000;
    box-shadow: 6px 6px 0 #000000;
}

.btn:hover,
.keyboard-btn:hover,
.gear-btn:hover,
.product-btn:hover,
.contact-submit:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 #999999;
}

.video-panel {
    position: relative;
    border: 6px solid #000000;
    background: #ffffff;
    padding: 22px;
    box-shadow: 12px 12px 0 #000000;
    transform: rotate(1deg);
}

.panel-label {
    position: absolute;
    top: -26px;
    left: 28px;
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border: 4px solid #000000;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 4;
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 4px solid #000000;
    background: #000000;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-section {
    padding: 90px 8%;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2,
.keyboard-section-title h2,
.gear-section-title h2,
.light-cta h2,
.gear-cta h2 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.95;
    text-transform: uppercase;
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 8px 42px;
}

.carousel::-webkit-scrollbar {
    height: 14px;
}

.carousel::-webkit-scrollbar-track {
    background: #ffffff;
    border: 3px solid #000000;
}

.carousel::-webkit-scrollbar-thumb {
    background: #000000;
    border: 3px solid #000000;
}

.flip-card {
    min-width: 300px;
    height: 380px;
    perspective: 1000px;
    scroll-snap-align: start;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid #000000;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 9px 9px 0 #000000;
}

.flip-front {
    background: radial-gradient(#000000 1.2px, transparent 1.2px), #ffffff;
    background-size: 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.comic-word {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    border: 4px solid #000000;
    padding: 8px 14px;
    font-size: 30px;
    margin-bottom: 34px;
    transform: rotate(-6deg);
    box-shadow: 5px 5px 0 #ffffff, 9px 9px 0 #000000;
}

.flip-front h3,
.flip-back h3 {
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.flip-front h3 {
    background: #ffffff;
    color: #000000;
    padding: 4px 8px;
    margin-bottom: 18px;
}

.flip-front p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 800;
    background: #ffffff;
    color: #000000;
    padding: 6px 8px;
}

.flip-back {
    background: #000000;
    color: #ffffff;
    transform: rotateY(180deg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-back p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    margin: 22px 0 28px;
}

.flip-back a {
    width: fit-content;
    padding: 12px 20px;
    background: #ffffff;
    color: #000000;
    border: 4px solid #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 5px 5px 0 #555555;
}

.mice-page,
.keyboards-page,
.gear-page,
.contact-page {
    background: #000000;
    color: #ffffff;
}

.mice-page::before,
.keyboards-page::before,
.gear-page::before,
.contact-page::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    opacity: 0.07;
}

.mice-hero,
.keyboard-hero,
.gear-hero,
.contact-hero {
    min-height: 86vh;
    padding: 90px 8%;
    display: grid;
    gap: 70px;
    align-items: center;
    border-bottom: 6px solid #ffffff;
    background: linear-gradient(140deg, transparent 62%, rgba(255, 255, 255, 0.13) 62%), #000000;
}

.mice-hero {
    grid-template-columns: 1fr 0.95fr;
}

.keyboard-hero {
    grid-template-columns: 1fr 0.95fr;
    background: linear-gradient(60deg, #000000 0%, #000000 42%, #ffffff 42%, #ffffff 44%, #000000 44%), #000000;
}

.gear-hero {
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-hero {
    grid-template-columns: 1fr 0.9fr;
}

.mice-hero-content h1,
.keyboard-copy h1,
.gear-copy h1,
.contact-copy h1 {
    color: #ffffff;
    text-shadow: 6px 6px 0 rgba(255, 255, 255, 0.16);
}

.mice-page .tagline,
.keyboard-label,
.gear-label,
.contact-label,
.keyboard-section-title p,
.gear-section-title p {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    border: 4px solid #ffffff;
    padding: 8px 14px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 5px 5px 0 #555555;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.mice-page .btn.primary,
.keyboard-btn.primary,
.gear-btn.primary {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 6px 6px 0 #555555;
}

.mice-page .btn.secondary,
.keyboard-btn.secondary,
.gear-btn.secondary {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 6px 6px 0 #555555;
}

.product-spotlight,
.contact-comic-box {
    position: relative;
    background: radial-gradient(#000000 1.4px, transparent 1.4px), #ffffff;
    background-size: 18px 18px;
    border: 7px solid #ffffff;
    box-shadow: 16px 16px 0 #555555;
    color: #000000;
    min-height: 460px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(1.5deg);
}

.product-spotlight img {
    width: 100%;
    height: 390px;
    object-fit: contain;
    filter: grayscale(100%) contrast(115%);
}

.keyboard-spotlight {
    order: 1;
    transform: rotate(-2deg);
}

.keyboard-copy {
    order: 2;
}

.mice-products,
.keyboard-products,
.gear-products {
    padding: 90px 8%;
    background: #000000;
}

.mice-page .section-title h2,
.keyboard-section-title h2,
.gear-section-title h2 {
    color: #ffffff;
}

.mice-page .section-title p {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 5px 5px 0 #555555;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.mouse-card,
.keyboard-card,
.gear-card,
.info-card,
.comic-note {
    position: relative;
    background: #000000;
    color: #ffffff;
    border: 6px solid #ffffff;
    box-shadow: 9px 9px 0 #555555;
    overflow: hidden;
    transition: 0.2s ease;
}

.mouse-card:hover,
.keyboard-card:hover,
.gear-card:hover,
.info-card:hover {
    transform: translate(5px, 5px) rotate(-1deg);
    box-shadow: 4px 4px 0 #555555;
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #ffffff;
    color: #000000;
    border: 4px solid #ffffff;
    padding: 8px 13px;
    font-size: 16px;
    letter-spacing: 1px;
    z-index: 3;
    transform: rotate(-4deg);
    box-shadow: 4px 4px 0 #000000, 7px 7px 0 #555555;
}

.product-image-box {
    height: 260px;
    border-bottom: 6px solid #ffffff;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.product-image-box img {
    max-width: 100%;
    max-height: 210px;
    object-fit: contain;
    filter: grayscale(100%) contrast(125%);
    transition: 0.25s ease;
}

.mouse-card:hover .product-image-box img {
    transform: scale(1.08) rotate(-3deg);
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 34px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.product-info p {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
}

.spec-row,
.keyboard-specs,
.gear-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-row span,
.keyboard-specs span,
.gear-tags span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid #ffffff;
    padding: 6px 9px;
    background: #000000;
    color: #ffffff;
}

.product-btn {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    padding: 12px 18px;
    font-size: 16px;
    box-shadow: 5px 5px 0 #555555;
}

.keyboard-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 6px solid #ffffff;
}

.feature-block {
    min-height: 220px;
    padding: 42px;
    background: #ffffff;
    color: #000000;
    border-right: 6px solid #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-block.dark-block {
    background: #000000;
    color: #ffffff;
    border-left: 6px solid #ffffff;
    border-right: 6px solid #ffffff;
}

.feature-block h3 {
    font-size: 38px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 18px;
}

.feature-block p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
}

.keyboard-section-title,
.gear-section-title {
    margin-bottom: 60px;
}

.gear-section-title {
    text-align: center;
}

.keyboard-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.keyboard-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 320px;
}

.keyboard-card.reversed {
    grid-template-columns: 1.1fr 0.9fr;
}

.keyboard-card.reversed .keyboard-card-visual {
    order: 2;
    border-right: none;
    border-left: 6px solid #ffffff;
}

.keyboard-card.reversed .keyboard-card-info {
    order: 1;
}

.keyboard-number {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 48px;
    color: #000000;
    background: #ffffff;
    border: 4px solid #ffffff;
    padding: 4px 14px;
    z-index: 4;
    transform: rotate(-4deg);
    box-shadow: 5px 5px 0 #555555;
}

.keyboard-card-visual {
    background: #ffffff;
    border-right: 6px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
}

.keyboard-card-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: contain;
    filter: grayscale(100%) contrast(125%);
}

.keyboard-card-info {
    padding: 58px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.keyboard-tag,
.gear-kicker {
    width: fit-content;
    background: #ffffff;
    color: #000000;
    border: 3px solid #ffffff;
    padding: 7px 12px;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 4px 4px 0 #555555;
}

.keyboard-card-info h3 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.keyboard-card-info p:not(.keyboard-tag) {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 22px;
}

.keyboard-cta {
    padding: 90px 8%;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-top: 6px solid #ffffff;
}

.keyboard-cta h2 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.keyboard-cta p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

.keyboard-cta .keyboard-btn.primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 6px 6px 0 #999999;
}

.gear-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 28px;
}

.gear-card {
    min-height: 330px;
}

.gear-card-large,
.wide-card,
.bundle-card {
    grid-column: span 2;
}

.dark-card {
    background: #ffffff;
    color: #000000;
}

.gear-card-number {
    position: absolute;
    top: 16px;
    left: 18px;
    background: #ffffff;
    color: #000000;
    border: 4px solid #ffffff;
    padding: 4px 12px;
    font-size: 26px;
    transform: rotate(-4deg);
    box-shadow: 4px 4px 0 #555555;
    z-index: 4;
}

.dark-card .gear-card-number {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.gear-card-sfx {
    position: absolute;
    top: 22px;
    right: 24px;
    background: #ffffff;
    color: #000000;
    border: 4px solid #ffffff;
    padding: 8px 13px;
    font-size: 24px;
    transform: rotate(8deg);
    box-shadow: 4px 4px 0 #555555;
    z-index: 4;
}

.gear-card-sfx.small {
    font-size: 18px;
}

.gear-card-sfx.vertical {
    writing-mode: vertical-rl;
    top: 30px;
    right: 20px;
    transform: rotate(0deg);
}

.gear-card-image {
    width: 100%;
    height: 230px;
    background: #ffffff;
    border-bottom: 6px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.gear-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(125%);
}

.dark-card .gear-card-image {
    background: #000000;
    border-bottom-color: #000000;
}

.gear-card-content {
    padding: 28px;
}

.gear-card-content h3 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gear-card-content p:not(.gear-kicker) {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 18px;
}

.dark-card .gear-kicker {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.dark-card .gear-tags span {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.gear-cta {
    padding: 90px 8%;
    background: #ffffff;
    color: #000000;
    border-top: 6px solid #ffffff;
}

.gear-cta-bubble {
    max-width: 900px;
    margin: 0 auto;
    border: 6px solid #000000;
    box-shadow: 12px 12px 0 #000000;
    padding: 56px;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.gear-cta-bubble::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 80px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-right: 6px solid #000000;
    border-bottom: 6px solid #000000;
    transform: rotate(45deg);
}

.gear-cta h2 {
    margin-bottom: 22px;
}

.gear-cta p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 30px;
}

.gear-cta .gear-btn.primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 6px 6px 0 #999999;
}

.contact-comic-box {
    flex-direction: column;
    gap: 26px;
}

.contact-sfx {
    position: absolute;
    top: -28px;
    right: 34px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #ffffff;
    padding: 10px 18px;
    font-size: 34px;
    transform: rotate(8deg);
    box-shadow: 5px 5px 0 #555555;
    z-index: 3;
}

.message-bubble {
    position: relative;
    background: #ffffff;
    border: 5px solid #000000;
    padding: 22px;
    max-width: 82%;
    box-shadow: 7px 7px 0 #000000;
    z-index: 2;
    align-self: flex-start;
}

.message-bubble.dark {
    background: #000000;
    color: #ffffff;
    align-self: flex-end;
}

.message-bubble p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.contact-section {
    padding: 90px 8%;
    background: #000000;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: start;
}

.contact-form-panel {
    position: relative;
    background: #ffffff;
    color: #000000;
    border: 7px solid #ffffff;
    box-shadow: 14px 14px 0 #555555;
    padding: 54px 38px 38px;
}

.panel-stamp {
    position: absolute;
    top: -27px;
    left: 30px;
    background: #000000;
    color: #ffffff;
    border: 4px solid #ffffff;
    padding: 9px 15px;
    font-size: 18px;
    transform: rotate(-2deg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 5px solid #000000;
    background: #ffffff;
    color: #000000;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 800;
    outline: none;
    box-shadow: 5px 5px 0 #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 #000000;
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    padding: 15px 24px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 20px;
    box-shadow: 6px 6px 0 #999999;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card,
.comic-note {
    padding: 28px;
}

.info-card.inverted,
.comic-note {
    background: #ffffff;
    color: #000000;
}

.info-card h3 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-card p,
.comic-note p {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
}

.comic-note strong {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 7px 12px;
    font-size: 24px;
    margin-bottom: 14px;
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 50px 8%;
    border-top: 6px solid #ffffff;
    text-align: center;
}

.footer-links {
    justify-content: center;
    margin-bottom: 22px;
}

.footer-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gear-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .gear-card-large,
    .wide-card,
    .bundle-card {
        grid-column: span 2;
    }
}

@media (max-width: 1000px) {
    .hero,
    .mice-hero,
    .keyboard-hero,
    .gear-hero,
    .contact-hero,
    .contact-layout,
    .keyboard-card,
    .keyboard-card.reversed {
        grid-template-columns: 1fr;
    }

    .keyboard-copy,
    .keyboard-spotlight,
    .keyboard-card.reversed .keyboard-card-visual,
    .keyboard-card.reversed .keyboard-card-info {
        order: initial;
    }

    .keyboard-card-visual,
    .keyboard-card.reversed .keyboard-card-visual {
        border-left: none;
        border-right: none;
        border-bottom: 6px solid #ffffff;
    }

    .keyboard-feature-strip {
        grid-template-columns: 1fr;
    }

    .feature-block,
    .feature-block.dark-block {
        border-left: none;
        border-right: none;
        border-bottom: 6px solid #000000;
    }

    .feature-block.dark-block {
        border-bottom: 6px solid #ffffff;
    }

    .comic-badge {
        top: 95px;
        right: 30px;
        width: 105px;
        height: 105px;
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .navbar nav,
    .footer-links {
        justify-content: center;
        gap: 16px;
    }

    .hero,
    .mice-hero,
    .keyboard-hero,
    .gear-hero,
    .contact-hero,
    .products-section,
    .mice-products,
    .keyboard-products,
    .gear-products,
    .contact-section,
    .keyboard-cta,
    .gear-cta {
        padding: 70px 6%;
    }

    .hero h1,
    .mice-hero-content h1,
    .keyboard-copy h1,
    .gear-copy h1,
    .contact-copy h1 {
        font-size: 54px;
    }

    .comic-badge {
        display: none;
    }

    .flip-card {
        min-width: 260px;
        height: 350px;
    }

    .product-grid,
    .gear-bento {
        grid-template-columns: 1fr;
    }

    .gear-card-large,
    .wide-card,
    .bundle-card {
        grid-column: auto;
    }

    .product-spotlight,
    .contact-comic-box {
        min-height: 360px;
        padding: 24px;
    }

    .product-spotlight img {
        height: 280px;
    }

    .product-image-box {
        height: 230px;
    }

    .contact-form-panel {
        padding: 50px 24px 30px;
    }

    .gear-cta-bubble {
        padding: 42px 24px;
    }

    .message-bubble {
        max-width: 100%;
    }
}