* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #000002 url('../images/main.webp') left top / 100% auto no-repeat;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    min-height: 100vh;
}

.jh--container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.jh--header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(213, 165, 98, 0.2);
}

.jh--logo a {
    display: block;
}

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

.jh--nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.jh--nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.jh--nav a:hover {
    color: #d5a562;
}

.jh--nav .jh--btn {
    background: linear-gradient(90deg, rgba(48, 37, 23, 1) 0%, rgba(18, 14, 9, 1) 100%);
    border: 1px solid #d5a562;
    border-radius: 5px;
    padding: 8px 22px;
    color: #d5a562;
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.2s;
    display: inline-block;
}

.jh--nav .jh--btn:hover {
    background: #d5a562;
    color: #0c0c0a;
    border-color: #d5a562;
}

.jh--menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
}

.jh--menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #d5a562;
    border-radius: 4px;
    transition: 0.25s;
}

.jh--sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 75%;
    height: 100%;
    background: #0c0c0a;
    border-right: 1px solid #292219;
    padding: 40px 24px;
    transition: left 0.35s ease;
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.jh--sidebar.open {
    left: 0;
}

.jh--sidebar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 400;
    border-bottom: 1px solid #292219;
    padding: 12px 0;
    display: block;
}

.jh--sidebar a:hover {
    color: #d5a562;
}

.jh--sidebar .jh--btn {
    background: linear-gradient(90deg, rgba(48, 37, 23, 1) 0%, rgba(18, 14, 9, 1) 100%);
    border: 1px solid #d5a562;
    border-radius: 5px;
    padding: 12px 20px;
    color: #d5a562;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
    display: block;
}

.jh--sidebar-close {
    align-self: flex-end;
    font-size: 1.8rem;
    color: #d5a562;
    cursor: pointer;
    line-height: 1;
}

.jh--overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.jh--overlay.active {
    display: block;
}

section {
    padding: 50px 0;
}

section.cust{
    padding: 80px 0;
}

.jh--subtitle {
    color: #d5a562;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.jh--title {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 600;
    text-shadow: 0 2px 0 rgba(255, 255, 255, .05), 0 4px 10px rgba(0, 0, 0, .65);
    margin-bottom: 16px;
}

.jh--title span {
    background: linear-gradient(180deg, #E6C58A 0%, #D2A868 18%, #B98040 45%, #8F5E2C 72%, #69411B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .45);
    display: inline-block;
}

.jh--text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 24px;
}

.jh--btn {
    background: linear-gradient(90deg, rgba(48, 37, 23, 1) 0%, rgba(18, 14, 9, 1) 100%);
    border: 1px solid #d5a562;
    border-radius: 5px;
    padding: 12px 34px;
    color: #d5a562;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.jh--btn:hover {
    background: #d5a562;
    color: #0c0c0a;
    border-color: #d5a562;
}

.jh--block {
    background: #0c0c0a;
    border: 1px solid #292219;
    border-radius: 10px;
    padding: 28px 24px;
}

.jh--hero .jh--title{
    font-size: 90px;
    line-height: 0.9;
}

.jh--hero .jh--title span{
    display: block;
}

.jh--hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.jh--hero-content {
    flex: 1 1 50%;
}

.jh--platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
    margin-top: 20px;
}

.jh--platform-grid .jh--text {
    max-width: 100%;
}

.jh--games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.jh--game-card {
    background: #0c0c0a;
    border: 1px solid #292219;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    min-height: 170px;
}

.jh--game-card img {
    width: 190px;
    min-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    background: #1a1a1a;
    display: block;
}

.jh--game-info {
    padding: 18px 18px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jh--game-info h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 600;
    color: #F2EFE8;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.jh--game-genre {
    color: #d5a562;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2px 0 6px;
}

.jh--game-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.jh--game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.jh--star-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.jh--star-row img {
    width: 18px;
    height: 18px;
    min-height: auto;
    object-fit: contain;
}

.jh--star-row span {
    font-weight: 500;
    color: #d5a562;
    font-size: 1rem;
}

.jh--game-footer .jh--btn {
    padding: 6px 18px;
    font-size: 0.75rem;
}

.jh--why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.jh--why-item {
    background: #0c0c0a;
    border: 1px solid #292219;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
}

.jh--why-item img {
    height: 56px;
    margin-bottom: 14px;
    object-fit: contain;
}

.jh--why-item h4 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 1.5rem;
    letter-spacing: 0.3px;
}

.jh--why-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.jh--select-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    background: url('../images/selection.webp') left bottom no-repeat;
    background-size: cover;
    border: 1px solid #292219;
}

.jh--select-content {
    flex: 1 1 50%;
}

.jh--footer {
    background: #0c0c0a;
    border-top: 1px solid #292219;
    padding: 40px 0 20px;
    margin-top: 20px;
}

.jh--footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 40px;
    margin-bottom: 28px;
}

.jh--footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: 0.2s;
}

.jh--footer-links a:hover {
    color: #d5a562;
}

.jh--footer-note {
    max-width: 800px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.jh--footer-copy {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid #1f1b15;
    padding-top: 18px;
}


.jh--contact-section {
    background: #0c0c0a;
    border-top: 1px solid #292219;
    border-bottom: 1px solid #292219;
    padding: 70px 0;
    margin: 0;
}

.jh--contact-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.jh--contact-left {
    flex: 1 1 45%;
}

.jh--contact-left .jh--text {
    max-width: 100%;
}

.jh--contact-right {
    flex: 1 1 45%;
    background: transparent;
}

.jh--contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jh--form-row {
    display: flex;
    gap: 16px;
}

.jh--form-row input {
    flex: 1;
}

.jh--contact-form input,
.jh--contact-form textarea {
    background: #1a1a16;
    border: 1px solid #292219;
    border-radius: 6px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: 0.2s;
    width: 100%;
}

.jh--contact-form input:focus,
.jh--contact-form textarea:focus {
    border-color: #d5a562;
    background: #22221c;
}

.jh--contact-form input::placeholder,
.jh--contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.jh--contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.jh--btn-submit {
    align-self: flex-start;
    cursor: pointer;
    border: 1px solid #d5a562;
    background: linear-gradient(90deg, rgba(48, 37, 23, 1) 0%, rgba(18, 14, 9, 1) 100%);
    color: #d5a562;
    padding: 14px 40px;
    font-size: 1rem;
    transition: 0.2s;
}

.jh--btn-submit:hover {
    background: #d5a562;
    color: #0c0c0a;
    border-color: #d5a562;
}

.jh--form-feedback {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(213, 165, 98, 0.12);
    border-left: 4px solid #d5a562;
    border-radius: 6px;
    color: #d5a562;
    font-weight: 400;
    font-size: 1rem;
    display: none;
}

.jh--form-feedback.show {
    display: block!important;
}

@media (max-width: 700px) {
    .jh--contact-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .jh--form-row {
        flex-direction: column;
        gap: 16px;
    }

    .jh--btn-submit {
        align-self: stretch;
        text-align: center;
    }
}



.jh--page-section {
    background: #0c0c0a;
    border-bottom: 1px solid #292219;
    padding: 70px 0;
    margin: 0;
}

.jh--page-section:first-of-type {
    border-top: 1px solid #292219;
}

.jh--page-content {
    max-width: 860px;
    margin: 0 auto;
}

.jh--page-content .jh--text {
    max-width: 100%;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.jh--page-block {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #d5a562;
    padding: 24px 28px;
    margin-bottom: 28px;
    border-radius: 0 8px 8px 0;
}

.jh--page-block h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(213, 165, 98, 0.15);
    padding-bottom: 8px;
}

.jh--page-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.jh--page-block p:last-child {
    margin-bottom: 0;
}

.jh--page-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 8px;
}

.jh--page-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.jh--page-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d5a562;
}

.jh--page-list li:last-child {
    border-bottom: none;
}

.jh--page-list li a {
    color: #d5a562;
    text-decoration: none;
    border-bottom: 1px dotted rgba(213, 165, 98, 0.3);
    transition: 0.2s;
}

.jh--page-list li a:hover {
    border-bottom-color: #d5a562;
    color: #e6c58a;
}

.jh--page-meta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(213, 165, 98, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.jh--page-meta a {
    color: #d5a562;
    text-decoration: none;
}

.jh--page-meta a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .jh--page-block {
        padding: 18px 16px;
    }

    .jh--page-block h3 {
        font-size: 1.4rem;
    }

    .jh--page-meta {
        flex-direction: column;
        gap: 6px;
    }
}



.jh--about-section {
    background: #0c0c0a;
    border-top: 1px solid #292219;
    border-bottom: 1px solid #292219;
    padding: 70px 0;
    margin: 0;
}

.jh--about-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.jh--about-content {
    flex: 1 1 100%;
    max-width: 860px;
    margin: 0 auto;
}

.jh--about-content .jh--title {
    margin-bottom: 24px;
}

.jh--about-text-block {
    margin-bottom: 32px;
}

.jh--about-text-block h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(213, 165, 98, 0.12);
    padding-bottom: 6px;
}

.jh--about-text-block .jh--text {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.jh--about-text-block .jh--text:last-child {
    margin-bottom: 0;
}

.jh--about-text-block .jh--text strong {
    color: #d5a562;
    font-weight: 500;
}

.jh--about-meta {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(213, 165, 98, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.jh--about-meta a {
    color: #d5a562;
    text-decoration: none;
}

.jh--about-meta a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .jh--about-text-block h3 {
        font-size: 1.5rem;
    }

    .jh--about-meta {
        flex-direction: column;
        gap: 6px;
    }
}



.jh--faq-section {
    background: #0c0c0a;
    border-top: 1px solid #292219;
    border-bottom: 1px solid #292219;
    padding: 70px 0;
    margin: 0;
}

.jh--faq-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.jh--faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.jh--faq-header .jh--title {
    margin-bottom: 12px;
}

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

.jh--faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #292219;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s;
}

.jh--faq-item:hover {
    border-color: #3d3427;
}

.jh--faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #F2EFE8;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
    gap: 20px;
}

.jh--faq-question:hover {
    background: rgba(213, 165, 98, 0.05);
}

.jh--faq-question .jh--faq-icon {
    font-size: 1.6rem;
    font-weight: 300;
    color: #d5a562;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.jh--faq-question[aria-expanded="true"] .jh--faq-icon {
    transform: rotate(45deg);
}

.jh--faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.7;
}

.jh--faq-answer p {
    margin-bottom: 10px;
}

.jh--faq-answer p:last-child {
    margin-bottom: 0;
}

.jh--faq-answer ul {
    margin: 6px 0 8px;
}

.jh--faq-answer ul li {
    padding: 3px 0;
}

.jh--faq-answer a {
    color: #d5a562;
    text-decoration: none;
    border-bottom: 1px dotted rgba(213, 165, 98, 0.3);
}

.jh--faq-answer a:hover {
    border-bottom-color: #d5a562;
}

.jh--faq-item.open .jh--faq-answer {
    max-height: 800px;
    padding: 0 24px 24px 24px;
}

.jh--faq-footer {
    margin-top: 36px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(213, 165, 98, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.jh--faq-footer a {
    color: #d5a562;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #d5a562;
}

.jh--faq-footer a:hover {
    opacity: 0.8;
}

@media (max-width: 600px) {
    .jh--faq-question {
        font-size: 0.95rem;
        padding: 16px 16px;
    }

    .jh--faq-answer {
        font-size: 0.92rem;
        padding: 0 16px;
    }

    .jh--faq-item.open .jh--faq-answer {
        padding: 0 16px 18px 16px;
    }

    .jh--faq-header .jh--title {
        font-size: 2.4rem;
    }
}



.jh--selection-section {
    background: #0c0c0a;
    border-top: 1px solid #292219;
    border-bottom: 1px solid #292219;
    padding: 70px 0;
    margin: 0;
}

.jh--selection-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.jh--selection-content {
    flex: 1 1 50%;
    min-width: 280px;
}

.jh--selection-content .jh--title {
    margin-bottom: 20px;
}

.jh--selection-text-block {
    margin-bottom: 24px;
}

.jh--selection-text-block h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.jh--selection-text-block .jh--text {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.jh--selection-text-block .jh--text:last-child {
    margin-bottom: 0;
}

.jh--selection-text-block .jh--text strong {
    color: #d5a562;
    font-weight: 500;
}

.jh--selection-meta {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(213, 165, 98, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.jh--selection-meta a {
    color: #d5a562;
    text-decoration: none;
}

.jh--selection-meta a:hover {
    text-decoration: underline;
}


.jh--selection-tabs {
    flex: 1 1 40%;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #292219;
    border-radius: 10px;
    padding: 28px 24px;
}

.jh--tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #292219;
    padding-bottom: 16px;
}

.jh--tab-btn {
    background: transparent;
    border: 1px solid #292219;
    border-radius: 5px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex: 1 1 auto;
    min-width: 100px;
    text-align: center;
}

.jh--tab-btn:hover {
    border-color: #d5a562;
    color: #d5a562;
    background: rgba(213, 165, 98, 0.05);
}

.jh--tab-btn.active {
    background: linear-gradient(90deg, rgba(48, 37, 23, 0.5) 0%, rgba(18, 14, 9, 0.5) 100%);
    border-color: #d5a562;
    color: #d5a562;
}

.jh--tabs-content {
    padding: 4px 0;
}

.jh--tab-panel {
    display: none;
    animation: jhFade 0.3s ease;
}

.jh--tab-panel.active {
    display: block;
}

.jh--tab-panel h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    color: #F2EFE8;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.jh--tab-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.jh--tab-panel p:last-child {
    margin-bottom: 0;
}

@keyframes jhFade {
    from {
        opacity: 0.4;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .jh--selection-wrap {
        flex-direction: column;
    }

    .jh--selection-content {
        flex: 1 1 100%;
    }

    .jh--selection-tabs {
        flex: 1 1 100%;
    }

    .jh--tabs-nav {
        flex-wrap: wrap;
    }

    .jh--tab-btn {
        flex: 1 1 45%;
        min-width: 80px;
    }
}

@media (max-width: 500px) {
    .jh--tab-btn {
        flex: 1 1 100%;
    }

    .jh--selection-tabs {
        padding: 18px 14px;
    }
}

























@media (max-width: 900px) {
    .jh--title {
        font-size: 3rem;
    }

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

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

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

  
}

@media (max-width: 700px) {
    .jh--nav {
        display: none;
    }

    .jh--menu-toggle {
        display: flex;
    }

    .jh--hero-content {
        flex: 1 1 100%;
    }

    .jh--title {
        font-size: 2.6rem;
    }

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

    .jh--game-card {
        flex-direction: row;
        min-height: 150px;
    }


}

@media (max-width: 480px) {
    .jh--why-grid {
        grid-template-columns: 1fr;
    }

      {
        padding: 16px 15px;
    }

    .jh--game-card img {
        width: 150px;
    }
    .jh--star-row img{
        width: 18px!important;
    }

    .jh--game-info h3 {
        font-size: 1.4rem;
    }
    .jh--hero .jh--title{
        font-size: 60px;
    }
    body{
        background-size: 990px;
        background-position: center top;
    }
}