html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f7f8f2;
}

.page {
    position: relative;

    width: min(1160px, 100%);
    margin: 0 auto;

    padding: 22px 100px 0;
}

.page::before {
    content: "";

    position: absolute;
    inset: 0;

    left: 50%;
    transform: translateX(-50%);

    width: 1300px;

    z-index: -1;

    background-image: url('../images/site-bg.png');

    background-size: 100% 100%;
    background-repeat: no-repeat;

    background-position: center -80px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 46px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 900;
    font-size: 23px;
}

.logo img {
    width: 300px;
}

.logo span:last-child {
    color: #2f8b68;
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    text-decoration: none;
    color: #0d1f1b;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 24px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-primary {
    color: white;

    background: linear-gradient(135deg, #2f8b68, #4fa27a);

    box-shadow: 0 12px 26px rgba(47, 139, 104, .22);
}

.btn-outline {
    color: #2f8b68;

    border: 1.5px solid rgba(47, 139, 104, .45);

    background: rgba(255, 255, 255, .56);
}

.hero {
    display: grid;
    grid-template-columns: .86fr 1.14fr;

    gap: 36px;

    align-items: center;

    min-height: 430px;
}

.eyebrow {
    color: #2f8b68;

    font-size: 14px;
    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 18px;
}

h1 {
    margin: 0;

    font-size: clamp(42px, 5.2vw, 68px);

    line-height: 1.02;
    letter-spacing: -.07em;
}

h1 span {
    color: #2f8b68;
}

.hero-copy {
    max-width: 420px;

    margin: 24px 0 28px;

    font-size: 17px;
    line-height: 1.7;
}

.hero-art img {
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 38px 0 22px;
}

.section-title,
.view-all {
    color: #2f8b68;

    font-size: 14px;
    font-weight: 900;

    text-transform: uppercase;
}

.view-all {
    text-decoration: none;
}

.games-wrap {
    position: relative;
    padding: 0 28px;
}

.games {
    display: grid;

    grid-auto-flow: column;
    grid-auto-columns: 220px;

    gap: 20px;

    overflow-x: auto;
    overflow-y: visible;

    padding: 12px 2px 24px;
}

.games::-webkit-scrollbar {
    display: none;
}

.game-card {
    display: block;

    overflow: hidden;

    border-radius: 24px;

    text-decoration: none;

    background: rgba(255,255,249,.86);

    box-shadow: 0 10px 26px rgba(31,63,48,.12);

    transition: .25s;
}
.game-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.game-media img,
.game-media video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.game-media video {
    opacity: 0;
    transition: opacity .2s ease;
}
.game-card:hover .game-media video {
    opacity: 1;
}

.game-card img {
    width: 100%;

    aspect-ratio: 9 / 16;

    object-fit: cover;

    display: block;
}

.game-card div {
    padding: 14px;
}

.game-card h3 {
    margin: 0 0 10px;

    font-size: 13px;
    text-transform: uppercase;
}

.game-card p {
    margin: 0;

    color: #49645a;

    font-size: 12px;
}

.slider-btn {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: 0;
    border-radius: 50%;

    background: white;

    cursor: pointer;
	
	z-index: 10;
}
.youtube-icon {
    color: #ff0000;
    font-size: 22px;
    line-height: 1;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 18px;

    border-radius: 17px;

    overflow: hidden;

    background: rgba(255, 255, 249, .72);
}

.stats div {
    padding: 24px 32px;

    border-right: 1px solid rgba(47, 139, 104, .14);
}

.stats div:last-child {
    border-right: 0;
}

.contact-mini {
    margin-top: 30px;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;

    padding: 38px 42px;

    border-radius: 28px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(10px);

    box-shadow: 0 18px 50px rgba(35,80,61,.08);
}
.contact-icon {
    width: 90px;
    height: 90px;

    object-fit: contain;

    flex-shrink: 0;
}
.contact-label {
    color: #2f8b68;

    font-size: 13px;
    font-weight: 900;

    margin-bottom: 12px;
}

.contact-card h2 {
    margin: 0;

    font-size: 38px;

    line-height: 1.1;
}

.contact-right a {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #0d1f1b;

    font-size: 18px;
    font-weight: 700;
}

.contact-right a {
    text-decoration: none;

    color: #0d1f1b;

    font-size: 18px;
    font-weight: 700;
}
.contact-right {
    display: flex;
    flex-direction: column;

    gap: 0px;
}

.footer {
    min-height: 260px;

    text-align: center;

    padding: 62px 20px 30px;
}

.trusted-title {
    color: #2f8b68;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.logos {
    display: flex;
    justify-content: center;

    gap: 92px;

    font-size: 22px;
    font-weight: 950;
}