@font-face {
    font-family: "Slow Play";
    src: url("../assets/fonts/Slow-Play.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-base: #f6f4e8;
    --bg-soft: #eef2dc;
    --bg-card: rgba(255,255,255,.80);
    --bg-card-strong: rgba(255,255,255,.90);
    --text-main: #1b1b22;
    --text-muted: #4f5b52;
    --text-soft: #6f766e;
    --heading: #23482a;
    --accent: #2b6b43;
    --accent-soft: #a2cb84;
    --button: #6e4414;
    --button-hover: #85541b;
    --nav-bg: rgba(255,255,255,.74);
    --border: rgba(40, 30, 20, 0.14);
    --shadow-soft: 0 10px 30px rgba(0,0,0,.18);
    --shadow-med: 0 14px 40px rgba(0,0,0,.10);
    --radius: 18px;
    --maxw: 1200px;
    --font-main: "Google Sans", Inter, Arial, sans-serif;
}

body,
button,
input,
textarea,
select,
a,
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Google Sans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700 !important;
    font-variation-settings: "GRAD" 150 !important;
}

.contact-card h2,
.contact-card p,
.contact-email,
.copy-email-btn,
.copy-feedback {
    font-family: "Google Sans", Arial, sans-serif !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 110px; }
html, body {
    margin: 0;
    padding: 0;
}
body {
    background: #8ebf69;
    color: var(--text-main);
    font-family: "Google Sans", sans-serif;
    line-height: 1.65;
    position: relative;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: .2s ease; }
h1, h2, h3, h4, h5, h6 { font-family: "Google Sans", Arial, sans-serif; color: var(--heading); font-weight: 800; letter-spacing: -0.02em; }
p { color: var(--text-muted); }

header {
    position: relative;
    top: 22px;
    z-index: 1000;
    width: min(94vw, var(--maxw));
    margin: 0px auto 0;
    padding: 14px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;

    opacity: 0;
    transform: translateY(-18px);
    animation: headerDropIn 1s cubic-bezier(0.25, 0.9, 0.3, 1) forwards;
    animation-delay: 0.05s;
}

header {
  padding: 17.5px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes headerDropIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.brand {
    font-family: "Slow Play", sans-serif;
    font-size: 1.95rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.2px;
    color: #2a5049;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(20,18,26,.78);
}

nav a:hover { color: var(--heading); }


.container {
    width: min(92vw, var(--maxw));
    margin: 0 auto;
    padding: 102px 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 22px;
    text-align: center;
}

#games .section-title {
    margin-top: 40px;
}


#hero {
    padding: 92px 0 36px;
    text-align: center;
    position: relative;
}


.pricing-art-section,
.pricing-art-wrap,
.pricing-grass {
    pointer-events: none;
}


#hero .container { position: relative; z-index: 1; }
#hero h1 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.3rem, 6vw, 3.8rem);
    margin-bottom: 14px;
    color: var(--heading);
    z-index: 1;
}

#hero h1::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -20%;
    transform: translateX(-50%);
    width: 150%;
    height: 150px;
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.62) 38%,
        rgba(255,255,255,0.20) 62%,
        rgba(255,255,255,0) 82%
    );
    filter: blur(22px);
    z-index: -1;
    pointer-events: none;
}

#hero p {
    position: relative;
    font-size: 1.12rem;
    max-width: 720px;
    margin: 0 auto;
    color: #244c2c;
    font-weight: 600;
    text-shadow: 0 1px 10px rgba(255,255,255,0.28);
    z-index: 2;
}


#stats-wrap {
    position: relative;
    width: 1150px;
    margin: 40px auto 0;
}

#stats-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -125px;
    transform: translateX(-50%);
    width: 1357px;
    height: 241px;
    background: url("../img2/otterfootprint.webp") no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}

#stats {
    position: relative;
    width: 100%;
    margin: 150px auto 75px;
    padding: 34px 16px;
    background: #fdf7d4;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    z-index: 1;
}

.stat-text {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: #3e3128;
    max-width: 980px;
    margin: 0 auto 10px;
}

.services-grid,
.games-grid {
    display: grid;
    gap: 22px;
}

.services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); perspective: 1000px; }
.games-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.services-section {
    position: relative;
    overflow: visible;
}

.services-grid {
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    position: relative;
    z-index: 2;
}

.services-otter {
    position: absolute;
    width: 180px;
    height: auto;
    pointer-events: none;
    z-index: 10;
    user-select: none;

    opacity: 0;
    transform: translateY(26px) scale(.96);
    transition:
        opacity 0.55s ease,
        transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: opacity, transform;
}

.services-otter.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.otter-1 {
    top: 460px;
    left: -50px;
    width: 210px;
}

.otter-2 {
    top: 496px;
    left: 350px;
    width: 170px;
}

.otter-3 {
    top: 510px;
    left: 670px;
    width: 195px;
}

.otter-4 {
    top: 460px;
    left: 1050px;
}

.services-grass {
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    width: 1400px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    user-select: none;

}

.flip-card {
    background: transparent;
    height: 146px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(57, 57, 89, 0.12);
    box-shadow: var(--shadow-soft);
}

.flip-front {
    background: #fdf7d4;
    color: #3e3128;
    font-weight: 800;
    font-size: 1.02rem;
}

.flip-back {
    background: #23482a;
    color: #fdf7d4;
    transform: rotateX(180deg);
    font-size: .9rem;
    font-weight: 600;
}

.flip-card.influencer-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}


.flip-card.influencer-card:hover .flip-card-inner,
.flip-card.influencer-card.flipped .flip-card-inner {
    transform: none !important;
}


.flip-card.influencer-card:hover {
    transform: translateY(-8px);
}


.flip-card.influencer-card:hover .flip-front {
    box-shadow: 0 12px 24px rgba(162, 203, 132, 0.4), 0 0 16px rgba(162, 203, 132, 0.6) !important;
    border-color: #a2cb84;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}


.game-card,
.message-card,
#contact,
.faq-item {
    background: var(--bg-card);
    
    box-shadow: var(--shadow-soft);
}

.game-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.game-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(142,191,105,.28), rgba(255,255,255,.85));
    color: #4a3b32;
    font-size: 1.05rem;
    font-weight: 700;
}

.game-info { padding: 22px; }
.game-info h3 {
    text-align: left;
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 6px;
    color: #3e3128;

    min-height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}
.game-info p { margin-bottom: 16px; }

.presskit-btn,
.send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.presskit-btn {
    padding: 8px 12px;
    background: var(--button);
    color: #fff;
    border: 1px solid var(--button);
    box-shadow: 0 0 16px rgba(110, 68, 20, .18);
}

.presskit-btn:hover,
.send-btn:hover { background: var(--button-hover); border-color: var(--button-hover); transform: translateY(-1px); }


.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.steam-btn {
    width: 45px;
    min-width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.steam-btn svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
    display: block;
    flex-shrink: 0;
}

.steam-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transform: translateY(-1px);
}


.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    margin: 6px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.faq-question {
    position: relative;
    width: 100%;
    min-height: 74px;
    padding: 16px 22px 16px 28px;
    border: none;
    background: transparent;
    color: #2f241c;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    z-index: 1;
}


.faq-question::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img2/FAQ.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.faq-question span {
    width: 34px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: rgba(106, 76, 255, 0.12);
    color: rgba(78, 44, 220, 0.95);

    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease;
}

.faq-answer {
    margin-top: 6px;
    background: rgba(162, 203, 132, 1);
    border-radius: 16px;
    padding: 0 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
    opacity: 0;
}

.faq-answer p {
    margin: 0;
    color: #28452b;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 18px 26px 18px;
    opacity: 1;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


.faq-question:hover {
    filter: brightness(0.99);
}


.faq-item[data-aos="fade-left"],
.faq-item[data-aos="fade-right"] {
    opacity: 0;
    transition-property: transform, opacity !important;
    transition-duration: 1.05s !important;
    transition-timing-function: cubic-bezier(0.25, 0.9, 0.3, 1) !important;
    will-change: transform, opacity;
}

.faq-item[data-aos="fade-left"] {
    transform: translate3d(14px, 0, 0) !important;
}

.faq-item[data-aos="fade-right"] {
    transform: translate3d(-14px, 0, 0) !important;
}

.faq-item[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}



.faq-art-section {
    width: min(92vw, var(--maxw));
    margin: -20px auto 20px;
    position: relative;
    z-index: 1;
    height: 20px;
}

.faq-art-wrap {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: visible;
}

.faq-grass {
    position: absolute;
    left: 50%;
    bottom: 260px;
    transform: translateX(-50%);
    width: 120%;
    max-width: none;
    height: auto;
    pointer-events: none;
    z-index: -10 !important;
}

.faq-deco {
    position: absolute;
    height: auto;
    pointer-events: none;
    z-index: 2;
}


#faq {
    position: relative;
    z-index: 5;
}

.message-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 22px;
}

.message-card p {
    font-weight: 500;
}

.message-card p + p { margin-top: 14px; }

.signature {
    display: inline-block;
    margin-top: 18px;
    font-family: 'Caveat', cursive !important;
    font-size: 2.4rem;
    color: var(--heading);
}


.cofounder-art-section {
    position: relative;
    width: 1500px;
    min-height: 300px;
    margin: 10px auto 0;
    overflow: visible;
}

.cofounder-grass {
    position: absolute;
    left: 40%;
    top: -200px;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.cofounder-deco {
    position: absolute;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.cofounder-otter {
    width: 240px;
    left: 70%;
    top: -150px;
    transform: translateX(-50%);
}

.cofounder-paper {
    width: 250px;
    left: 69%;
    top: -155px;
    transform: translateX(-50%);
}

.cofounder-otter[data-aos] {
    opacity: 0;
    transform: translate3d(28px, 0, 0) !important;
    transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.85s ease !important;
}

.cofounder-otter[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}

.cofounder-paper[data-aos] {
    opacity: 0;
    transform: translate3d(0, 22px, 0) !important;
    transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.85s ease !important;
}

.cofounder-paper[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}



footer {
    margin-top: 40px;
    background: #8ebf69;
    padding: 46px 20px 60px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.footer-nav a {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(20,18,26,.82);
    text-decoration: none;
    transition: .2s ease;
}

.footer-nav a:hover {
    color: rgba(20,18,26,.98);
    transform: translateY(-1px);
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.socials svg {
    width: 22px;
    height: 22px;
    fill: rgba(20,18,26,.72);
    transition: .2s ease;
}

.socials a:hover svg {
    fill: rgba(20,18,26,.95);
    transform: translateY(-1px);
}

.footer-company {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(20,18,26,.82);
}

.footer-address {
    margin: 8px 0 0;
    font-size: .78rem;
    font-weight: 500;
    opacity: .9;
    color: rgba(20,18,26,.72);
}

.legal {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .9rem;
    color: rgba(20,18,26,.72);
    font-weight: 700;
}



.header-art {
    position: absolute;
    inset: 0 0 auto;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    height: 620px;
}

.header-art-img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: none;
    object-position: center top;
}

.header-grass-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.header-grass {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 329px;
    width: 1920px;
    max-width: none;
    height: auto;
}

.header-otter-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    max-width: none;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.header-otter {
    position: absolute;
    right: 540px; 
    top: 315px;
    width: 300px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.header-otter[data-aos] {
    opacity: 0;
    transform: translate3d(10px, 10px, 0) !important;
    transition-property: transform, opacity !important;
    transition-duration: 0.7s !important;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform, opacity;
}

.header-otter[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) !important;
}

.header-art,
.header-grass-wrap {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
}


#hero {
    position: relative;
    z-index: 2;
    padding: 25px 0 66px;
    text-align: center;
}



.contact-mini {
    width: min(92vw, var(--maxw));
    margin: 90px auto 120px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.contact-card {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,.80);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    padding: 42px 36px;
    text-align: center;
}

.contact-card h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #184b33;
    font-family: "Google Sans", Arial, sans-serif !important;
    font-weight: 800;
}

.contact-text {
    margin: 0 0 26px;
    font-size: 1rem;
    color: #355343;
    font-family: "Google Sans", Arial, sans-serif;
}

.contact-copy-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    background: #f7f7f2;
    border: 1px solid rgba(42, 80, 73, 0.12);
    color: #204c38;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Google Sans", Arial, sans-serif !important;
}

.copy-email-btn {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border: none;
    border-radius: 16px;
    background: #9a640f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
    flex-shrink: 0;
}

.copy-email-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.copy-email-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.copy-email-btn:active {
    transform: translateY(0);
}

.copy-feedback {
    min-height: 24px;
    margin: 16px 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f7a45;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    font-family: "Google Sans", Arial, sans-serif;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .contact-copy-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-email,
    .copy-email-btn {
        width: 100%;
    }
}


.contact-art-section {
    width: min(92vw, var(--maxw));
    margin: -10px auto 10px;
    position: relative;
    z-index: 1;
    height: 40px;
}

.contact-art-wrap {
    position: relative;
    width: 100%;
    min-height: 260px;
    overflow: visible;
}

.contact-grass {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    width: 80%;
    max-width: none;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.contact-deco {
    position: absolute;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.contact-fax1 {
    width: 170px;
    left: 75%;
    bottom: 160px;
    transform: translateX(-50%);
}


.contact-fax1[data-aos] {
    opacity: 0;
    transform: translateX(-50%) translate3d(0, 24px, 0) !important;
    transition-property: transform, opacity !important;
    transition-duration: 0.85s !important;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform, opacity;
}

.contact-fax1[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(-50%) translate3d(0, 0, 0) !important;
}


.pricing-art-section {
    width: min(92vw, var(--maxw));
    margin: -10px auto -60px;
    position: relative;
    z-index: 1;
}

.pricing-art-wrap {
    position: relative;
    width: 100%;
    min-height: 330px;
    overflow: visible;
}

.pricing-grass {
    position: absolute;
    left: 60%;
    bottom: 70px;
    transform: translateX(-50%);
    width: 125%;
    max-width: none;
    height: auto;
}

.pricing-deco {
    position: absolute;
    height: auto;
    pointer-events: none;
    z-index: 2;
}


.gamingotter-deco {
    width: 380px;
    left: 9%;
    bottom: 210px;
}


.steammachine-deco {
    width: 135px;
    left: 72%;
    bottom: 200px;
    z-index: 3;
}






.gamingotter-deco[data-aos],
.steammachine-deco[data-aos],



.gamingotter-deco[data-aos] {
    transform: translate3d(-22px, 10px, 0) !important;
}


.steammachine-deco[data-aos] {
    transform: translate3d(0, 18px, 0) !important;
}




.gamingotter-deco[data-aos].aos-animate,
.steammachine-deco[data-aos].aos-animate
 {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}




.back-to-top{
  position: fixed;
  right: 14px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 1px 2px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.12);
  color: #474747D9;

  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 9999;
}

.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover{
  transform: translateY(-2px);
}

.back-to-top-icon{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (min-width: 900px){
  .back-to-top{
    right: 260px;
  }
}

@media (max-width: 900px){
  .back-to-top{
    width: 32px;
    height: 32px;
    left: 10px;
    right: auto;
    bottom: 10px;
  }

  .back-to-top-icon{
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
}



.section-title[data-aos="fade-down"] {
    opacity: 0;
    transform: translate3d(0, -16px, 0) !important;
    transition-property: transform, opacity !important;
    transition-duration: 1s !important;
    transition-timing-function: cubic-bezier(0.25, 0.9, 0.3, 1) !important;
    will-change: transform, opacity;
}

.section-title[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}





#hero h1[data-aos="fade-up"],
#hero p[data-aos="fade-up"] {
    opacity: 0;
    transform: translate3d(0, 14px, 0) !important;
    transition-property: transform, opacity !important;
    transition-duration: 0.95s !important;
    transition-timing-function: cubic-bezier(0.25, 0.9, 0.3, 1) !important;
    will-change: transform, opacity;
}

#hero h1[data-aos="fade-up"].aos-animate,
#hero p[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}















































body {
    overflow-x: hidden;
}


@media (max-width: 991px) {
    html {
        scroll-padding-top: 96px;
    }

    header {
        width: min(94vw, 720px);
        padding: 14px 18px;
        gap: 14px;
        flex-direction: column;
    }

    .brand {
        font-size: 1.7rem;
        text-align: center;
    }

    nav {
        width: 100%;
    }

    nav ul {
        gap: 10px 16px;
        justify-content: center;
    }

    nav a {
        font-size: 0.92rem;
    }

    .container {
        width: min(94vw, var(--maxw));
        padding: 82px 12px;
    }

    #hero {
        padding: 56px 0 36px;
    }

    #hero h1 {
        font-size: clamp(2rem, 8.5vw, 3rem);
        line-height: 1.08;
    }

    #hero p {
        font-size: 1rem;
        max-width: 92%;
    }

    .header-art-img {
        width: 1400px;
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .header-grass {
        width: 1300px;
        top: 260px;
    }

    .header-otter {
        width: 220px;
        right: 8%;
        top: 275px;
    }

    #stats-wrap {
        width: min(94vw, 760px);
        margin: 18px auto 0;
    }

    #stats-wrap::after {
        width: 110%;
        height: 120px;
        bottom: -60px;
        background-size: contain;
    }

    #stats {
        margin: 70px auto 50px;
        padding: 26px 16px;
        border-radius: 18px;
    }

    .stat-text {
        font-size: clamp(1.15rem, 4.2vw, 1.7rem);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .flip-card {
        height: 132px;
    }

    .flip-front,
    .flip-back {
        padding: 14px;
        border-radius: 16px;
    }

    .flip-front {
        font-size: 0.95rem;
    }

    .flip-back {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .services-grass {
        width: 1100px;
        bottom: -36px;
    }

    
    .services-otter {
        width: 130px;
    }

    .otter-1 {
        top: auto;
        bottom: -34px;
        left: -10px;
        width: 150px;
    }

    .otter-2 {
        top: auto;
        bottom: -18px;
        left: 24%;
        width: 120px;
    }

    .otter-3 {
        top: auto;
        bottom: -20px;
        left: 58%;
        width: 135px;
    }

    .otter-4 {
        top: auto;
        bottom: -30px;
        left: auto;
        right: -6px;
        width: 140px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .game-img {
        height: 190px;
    }

    .game-info {
        padding: 18px;
    }

    .game-info h3 {
        font-size: 1.45rem;
        white-space: normal;
        overflow: visible;
    }

    .game-buttons {
        gap: 8px;
    }

    .presskit-btn {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .steam-btn {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .steam-btn svg {
        width: 23px;
        height: 23px;
    }

    .pricing-art-section {
        margin: -10px auto 50px;
    }

    .pricing-art-wrap {
        min-height: 230px;
    }

    .pricing-grass {
        width: 135%;
        left: 50%;
        bottom: 40px;
    }

    .gamingotter-deco {
        width: 260px;
        left: 8%;
        bottom: 120px;
    }

    .steammachine-deco {
        width: 105px;
        left: 73%;
        bottom: 110px;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        
        padding: 14px 28px 14px 28px;
        font-size: 0.98rem;
        gap: 12px;
    }

    .faq-question span {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .faq-answer p {
        font-size: 0.92rem;
    }

    .faq-art-section {
        margin: -10px auto 50px;
        height: 10px;
    }

    .faq-art-wrap {
        width: 150%;
        left: 30%;
        bottom: 0px;
        min-height: 190px;
    }

    .faq-grass {
        width: 135%;
        bottom: 135px;
    }

    .message-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .signature {
        font-size: 2rem;
    }

    .cofounder-art-section {
        width: 100%;
        max-width: 100%;
        min-height: 140px;
        margin: 0 auto;
        overflow: visible;
    }

    .cofounder-grass {
        width: 130%;
        left: 50%;
        top: -120px;
    }

    .cofounder-otter,
    .cofounder-paper {
        width: 170px;
        left: 78%;
        top: -74px;
    }

    .contact-mini {
        margin: 60px auto 90px;
    }

    .contact-card {
        max-width: 100%;
        padding: 32px 22px;
        border-radius: 24px;
    }

    .contact-card h2 {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .contact-text {
        font-size: 0.96rem;
        margin-bottom: 20px;
    }

    .contact-email {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .copy-email-btn {
        width: 50px;
        height: 50px;
        min-height: 50px;
    }

    .contact-art-section {
        height: 10px;
        margin: 0 auto 200px;
    }

    .contact-art-wrap {
        min-height: 220px;
    }

    .contact-grass {
        width: 95%;
        bottom: 92px;
    }

    .contact-fax1 {
        width: 130px;
        left: 72%;
        bottom: 145px;
    }

    footer {
        margin-top: 110px;
        padding: 36px 18px 48px;
    }

    .socials {
        gap: 18px;
        margin-bottom: 22px;
    }

    .footer-company {
        font-size: 0.95rem;
    }

    .footer-address {
        font-size: 0.76rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
    }

    .back-to-top {
        right: 14px;
        left: auto;
        bottom: 14px;
        width: 36px;
        height: 36px;
    }

    .back-to-top-icon {
        width: 18px;
        height: 18px;
    }
}


@media (max-width: 767px) {
    html {
        scroll-padding-top: 112px;
    }

    header {
        width: min(94vw, 420px);
        padding: 12px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    header {
        width: min(94vw, 430px);
        padding: 21px 16px;
        gap: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .brand {
        font-size: 1.5rem;
    }

    .brand {
        
        line-height: 1;
        white-space: nowrap;
        flex-shrink: 0;
    }

    nav ul {
        gap: 8px 14px;
    }

    nav a {
        font-size: 0.88rem;
    }

    .container {
        width: min(94vw, var(--maxw));
        padding: 64px 10px;
    }

    .section-title {
        line-height: 1.1;
        font-size: clamp(2rem, 10vw, 2.6rem);
        margin-bottom: 16px;
    }

    #games .section-title {
        margin-top: 18px;
    }

    #hero {
        padding: 34px 0 20px;
    }

    #hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
        line-height: 1.08;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    #hero h1::after {
        width: 130%;
        height: 100px;
        top: -12%;
        filter: blur(18px);
    }

    #hero p {
        font-size: 0.96rem;
        max-width: 300px;
    }

    .header-art {
        height: 430px;
        overflow: hidden;
    }

    .header-art-img {
        width: 1200px;
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .header-grass-wrap {
        overflow: hidden;
    }

    .header-grass {
        width: 900px;
        top: 250px;
    }

    .header-otter {
        width: 170px;
        right: 50%;
        transform: translateX(50%);
        top: 292px;
    }

    #stats-wrap {
        width: min(94vw, 420px);
        margin: 200px auto 0;
    }

    #stats-wrap::after {
        width: 1357px;
        height: 241px;
        bottom: -90px;
        left: 80%;
    }

    #stats {
        margin: 44px auto 90px;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .stat-text {
        font-size: clamp(1rem, 5.8vw, 1.35rem);
        line-height: 1.35;
    }

    #stats p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .flip-card {
        height: 118px;
    }

    .flip-front {
        font-size: 0.98rem;
    }

    .flip-back {
        font-size: 0.82rem;
        padding: 12px 14px;
    }

    .services-section {
        padding-bottom: 180px;
    }

    .services-grass {
        width: 1200px;
        height: auto;
        bottom: 20px;
        left: 110%;
    }

    
    .otter-2,
    .otter-3 {
        display: none;
    }

    .otter-1 {
        left: 90px;
        bottom: 10px;
        width: 210px;
    }
    

    .otter-4 {
        display: none;
    }

    .game-card {
        border-radius: 18px;
    }

    .game-img {
        height: 168px;
    }

    .game-info {
        padding: 16px;
    }

    .game-info h3 {
        font-size: 1.45rem;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .game-info p {
        font-size: 0.96rem;
        margin-bottom: 14px;
    }

    .game-buttons {
        gap: 8px;
    }

    .presskit-btn {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 11px;
    }

    .steam-btn {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .steam-btn svg {
        width: 21px;
        height: 21px;
    }

    .pricing-art-wrap {
        min-height: 185px;
    }

    .pricing-grass {
        width: 380%;
        left: 170%;
        bottom: -100px;
    }

    .gamingotter-deco {
        width: 320px;
        left: 6%;
        bottom: 40px;
    }

    .steammachine-deco {
        width: 100px;
        left: 46%;
        bottom: 50px;
    }

    .faq-question {
        
        padding: 12px 28px 12px 28px;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .faq-question::before {
        background-image: url("../img2/2.webp");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
    }
    .faq-question span {
        width: 28px;
        min-width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .faq-answer {
        margin-top: 4px;
        border-radius: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 14px 16px 14px;
    }

    .faq-answer p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .faq-art-wrap {
        width: 150%;
        left: 30%;
        bottom: 0px;
        min-height: 145px;
    }

    .faq-grass {
        width: 165%;
        bottom: 96px;
    }

    .message-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .message-card p {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .signature {
        font-size: 1.8rem;
    }

    .cofounder-art-section {
        width: 100%;
        max-width: 100%;
        min-height: 140px;
        margin: 0 auto;
        overflow: visible;
        margin-bottom: 100px;
    }

    .cofounder-grass {
        width: 320%;
        top: -160px;
        left: -50%;
    }

    .cofounder-otter,
    .cofounder-paper {
        width: 182px;
        left: 50%;
        top: -80px;
    }

    .contact-mini {
        margin: 40px auto 60px;
    }

    .contact-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .contact-card h2 {
        margin-bottom: 10px;
    }

    .contact-text {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .contact-copy-row {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 10px;
    }

    .contact-email {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .copy-email-btn {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .copy-feedback {
        margin-top: 12px;
        font-size: 0.88rem;
    }

    .contact-art-wrap {
        width: 600px;
        left: -25%;
        bottom: -30px;
        min-height: 165px;
    }

    .contact-grass {
        width: 120%;
        bottom: 65px;
    }

    .contact-fax1 {
        width: 130px;
        left: 72%;
        bottom: 120px;
    }

    footer {
        margin-top: 70px;
        padding: 28px 14px 42px;
    }

    .socials {
        gap: 16px;
        margin-bottom: 18px;
    }

    .socials svg {
        width: 20px;
        height: 20px;
    }

    .footer-company {
        font-size: 0.92rem;
    }

    .footer-address {
        font-size: 0.74rem;
        max-width: 260px;
    }

    .back-to-top {
        right: 10px;
        bottom: 10px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .back-to-top-icon {
        width: 16px;
        height: 16px;
    }
}


@media (max-width: 389px) {
    header {
        width: 95vw;
        padding: 12px 10px;
    }

    .brand {
        font-size: 1.35rem;
    }

    nav ul {
        gap: 7px 10px;
    }

    nav a {
        font-size: 0.82rem;
    }

    #hero h1 {
        font-size: 1.7rem;
        max-width: 280px;
    }

    #hero p {
        font-size: 0.9rem;
        max-width: 260px;
    }

    .game-img {
        height: 150px;
    }

    .game-info h3 {
        font-size: 1.16rem;
    }

    .presskit-btn {
        font-size: 0.86rem;
        padding: 7px 10px;
    }

    .steam-btn {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }

    .faq-question {
        font-size: 0.86rem;
        padding-left: 14px;
        padding-right: 12px;
    }

    .contact-card {
        padding: 22px 14px;
    }

    .contact-email {
        font-size: 0.88rem;
    }
}




@media (max-width: 767px) {
    
    header {
        width: min(94vw, 430px);
        padding: 21px 16px;
        gap: 12px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    

    nav {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    nav ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }

    nav a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    
    #hero h1 {
        font-size: 3.4rem;
        line-height: 1;
        max-width: 320px;
        margin: 40px auto;
  
    }

    
    #hero p {
        font-size: 1rem;
        max-width: 320px;
    }

    
    .header-art-img {
        content: url("../img2/headermobile.webp");
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        margin-left: 0;
        transform: none;
        display: block;
    }

    .header-art {
        height: 672px;
        overflow: hidden;
    }

    

    
    .header-grass {
        width: 760px;
        top: 215px;
    }

    .header-otter {
        width: 250px;
        top: 420px;
        right: 41%;
        transform: translateX(50%);
    }

    
}



@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        position: relative;
    }

}

































































@media (max-width: 991px) and (orientation: landscape) {
    html {
        scroll-padding-top: 74px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        position: relative;
    }

    brand {
        font-size: 1rem;
    }

    header {
        width: 520px;
        padding: 6px 19px;
        gap: 18px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 14px;
    }

    .brand {
        font-size: 1.45rem;
        line-height: 1;
    }

    nav {
        width: auto;
    }

    nav ul {
        gap: 10px 14px;
        flex-wrap: nowrap;
    }

    nav a {
        font-size: 0.8rem;
    }

    .container {
        width: min(94vw, var(--maxw));
        padding: 82px 12px;
    }

    #hero {
        padding: 24px 0 160px;
        min-height: 180px;
    }

    .header-art {
        height: 560px;
        overflow: hidden;
        
    }

    .header-art-img {
        content: url("../img2/headermobile.webp");
        width: 172%;
        height: auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        object-fit: contain;
    }

    .header-grass {
        display: none;
        width: 980px;
        top: 170px;
    }

    .header-otter {
        width: 250px;
        right: 35%;
        top: 260px;
    }

    #hero h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
        max-width: 520px;
        margin-bottom: 22px;
    }

    #hero p {
        font-size: 0.9rem;
        max-width: 430px;
    }

    #stats-wrap {
        width: min(84vw, 760px);
        margin: 8px auto 0;
    }

    #stats-wrap::after {
        width: 150%;
        bottom: -106px;
        height: 240px;
    }

    #stats {
        margin: 26px auto 80px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .stat-text {
        font-size: clamp(1rem, 2.6vw, 1.45rem);
        margin-bottom: 4px;
    }

    #stats p {
        font-size: 0.78rem;
    }

    .section-title {
        font-size: clamp(1.9rem, 4.2vw, 2.8rem);
        margin-bottom: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .flip-card {
        height: 100px;
    }

    .flip-front,
    .flip-back {
        padding: 10px;
        border-radius: 14px;
    }

    .flip-front {
        font-size: 0.82rem;
    }

    .flip-back {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .services-grass {
        width: 980px;
        bottom: -42px;
    }


    .otter-1 {
        width: 150px;
        left: 0;
        bottom: -30px;
        top: auto;
    }

    .otter-2 {
        width: 120px;
        left: 28%;
        bottom: -20px;
        top: auto;
    }

    .otter-3 {
        width: 145px;
        left: 55%;
        bottom: 10px;
        top: auto;
    }

    .otter-4 {
        width: 130px;
        right: 0;
        left: auto;
        bottom: -5px;
        top: auto;
    }

    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .game-img {
        height: 145px;
    }

    .game-info {
        padding: 14px;
    }

    .game-info h3 {
        font-size: 1.30rem;
        line-height: 1.15;
        margin-bottom: 4px;
        white-space: normal;
    }

    .game-info p {
        font-size: 0.82rem;
        margin-bottom: 10px;
    }

    .presskit-btn {
        padding: 7px 10px;
        font-size: 0.82rem;
    }

    .steam-btn {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }

    .steam-btn svg {
        width: 20px;
        height: 20px;
    }

    .pricing-art-wrap,
    .faq-art-wrap,
    .contact-art-wrap {
        min-height: 140px;
    }

    .pricing-grass {
        left: 65%;
        bottom: -70px;
    }
    .faq-grass {
        width: 90%;
        bottom: 60px;
        left: 26%;
    }

    .contact-grass {
       bottom: -40px;
       left: 45%;
    }

    .gamingotter-deco {
        width: 280px;
        left: 10%;
        bottom: 40px;
    }

    .steammachine-deco {
        width: 92px;
        left: 78%;
        bottom: 36px;
    }

    .faq-list {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-question {
        min-height: 54px;
        padding: 12px 16px 12px 18px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .faq-question span {
        width: 26px;
        min-width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .message-card {
        max-width: 760px;
        padding: 22px 20px;
    }

    .message-card p {
        font-size: 0.9rem;
    }

    .signature {
        font-size: 1.7rem;
    }

    .cofounder-grass {
        width: 120%;
        top: -160px;
        left: 40%;
    }

    .cofounder-art-section {
        min-height: 110px;
        padding-bottom: 170px;
    }

    .cofounder-otter,
    .cofounder-paper {
        width: 170px;
        top: -110px;
    }

    .contact-mini {
        margin: 34px auto 50px;
    }

    .contact-card {
        max-width: 760px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-card h2 {
        font-size: 2.6rem;
    }

    .contact-text {
        font-size: 0.86rem;
        margin-bottom: 14px;
    }

    .contact-copy-row {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 20px;
        padding-left: 200px;
        padding-right: 200px;
    }

    .contact-email {
        font-size: 0.88rem;
        min-height: 44px;
        padding: 0 14px;
        flex: 1;
        min-width: 0;
    }

    .copy-email-btn {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .contact-fax1 {
        width: 140px;
        left: 85%;
        bottom: 30px;
    }

    .contact-art-section {
        
        margin: 0 auto 260px;
    }

    footer {
        margin-top: 40px;
        padding: 24px 16px 30px;
    }

    .socials {
        gap: 16px;
        margin-bottom: 14px;
    }

    .socials svg {
        width: 20px;
        height: 20px;
    }

    .footer-company {
        font-size: 0.9rem;
    }

    .footer-address {
        font-size: 0.72rem;
    }

    .back-to-top {
        width: 32px;
        height: 32px;
        right: 10px;
        bottom: 10px;
        left: auto;
    }

    .back-to-top-icon {
        width: 16px;
        height: 16px;
    }





    .flip-card,
    .flip-card * {
        -webkit-tap-highlight-color: transparent;
    }

    .flip-card {
        outline: none;
    }

    .flip-card:focus,
    .flip-card:active,
    .flip-card:focus-visible,
    .flip-front:focus,
    .flip-front:active,
    .flip-back:focus,
    .flip-back:active {
        outline: none !important;
        box-shadow: none !important;
    }

    
    .flip-card:hover .flip-card-inner {
        transform: none;
    }

    
    .flip-card.flipped .flip-card-inner {
        transform: rotateX(180deg);
    }





    .faq-question,
    .faq-question * {
        -webkit-tap-highlight-color: transparent;
    }

    .faq-question:focus,
    .faq-question:active,
    .faq-question:focus-visible,
    .faq-item:focus,
    .faq-item:active {
        outline: none !important;
        box-shadow: none !important;
    }

    .faq-question::before {
        box-shadow: none !important;
    }
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 4px 8px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.18);
  cursor:pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-primary {
  color: rgb(255, 255, 255);
  box-shadow: rgba(106, 196, 243, 0.7) 0px 0px 16px;
  background: linear-gradient(rgb(110, 68, 20), rgb(110, 68, 20));
  border-color: rgb(110, 68, 20);
}

header nav ul {
  align-items: center !important;
}

@media (min-width: 992px) {
    header nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        white-space: nowrap;
    }
}


.nav-actions {
    display: flex;
    align-items: center;

}




@media (max-width: 270px) {
    .brand {
        display: none;
    }

    nav ul {
        justify-content: center;
    }
}


.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.4);
}



.nav-actions {
    position: relative;
    left: 2px;
}
.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(0,0,0,.18);
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-primary {
    background: linear-gradient(180deg, #6e4414, #6e4414);
    color: #fff !important;
    border-color: #6e4414;
    box-shadow: 0 0px 16px rgba(106,196,243,0.70);
}

@media (max-width: 767px) {
    header .btn.btn-primary,
    header .nav-actions,
    header .nav-actions .btn {
        display: inline-flex !important;
    }

    header .nav-actions {
        display: flex;
        align-items: center;
        height: 0; 
    }

    header .btn.btn-primary {
        
        padding: 7px 12px !important; 
        
        
        
        

        font-size: 0.76rem !important;
        
        
        transform: translateY(0px); 
    }
}
@media (max-width: 950px) {
    .brand {
        font-size: 1rem ;
        line-height: 1 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 420px) {
    .brand {
        font-size: 1rem 
    }
}

@media (max-width: 380px) {
    .brand {
        font-size: 1rem ;
    }
}
@media (max-width: 767px) {
    header {
        gap: 8px !important;
        padding-left: 15px !important;
        padding-right: 17px !important;
    }

    nav ul {
        gap: 8px !important;
    }
}





@media (min-width: 2559px) {
    
    .header-art-img {
        
        width: 1920px !important;
        max-width: none !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;

        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 3%,
            #000 97%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            #000 3%,
            #000 97%,
            transparent 100%
        );
    }

    
    .header-grass {
        
        width: 1920px !important;
        max-width: none !important;

        -webkit-mask-image: linear-gradient(
            to right, 
            transparent 0%, 
            #000 4%, 
            #000 96%, 
            transparent 100%
        );
        mask-image: linear-gradient(
            to right, 
            transparent 0%, 
            #000 4%, 
            #000 96%, 
            transparent 100%
        );
    }
}



@media (max-width: 991px) and (orientation: landscape) {
    .brand {
        font-size: 1.5rem;
        line-height: 1;
    }

    .btn {
        padding: 4px 6px;
    }

    .nav-actions {
        left: 0px;
    }
}