/*
=========================================================
WACKIEZ PRODUCT PAGE CSS
=========================================================
For product pages such as Wacky Potato, Wacky Ball, Wacky Egg.
Current version includes:
1. Global styles
2. Header / navigation
3. Product hero
4. Product highlights
5. Footer
6. Tablet responsive
7. Mobile responsive
=========================================================
*/

/* =========================================================
1) GLOBAL VARIABLES + BASE
========================================================= */

:root {
    --blue: #0968ef;
    --navy: #080b35;
    --purple: #6c20e8;
    --pink: #ff2c9b;
    --orange: #ff650e;
    --teal: #0aa9a5;
    --yellow: #ffbd21;
    --green: #31b93a;
    --bg: #f4f8ff;
    --shadow: 0 18px 45px rgba(39, 62, 120, .16);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 94% 10%, rgba(255, 189, 33, .20), transparent 22%),
        radial-gradient(circle at 5% 55%, rgba(54, 170, 255, .18), transparent 24%),
        linear-gradient(180deg, #f2f9ff 0%, #ffffff 54%, #f7f3ff 100%);
    font-family: Poppins, Arial, sans-serif;
    color: var(--navy);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

mark {
    color: var(--pink);
    background: transparent;
    font-weight: 900;
}

/* =========================================================
2) HEADER / TOP NAVIGATION
========================================================= */

.site-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    width: 90%;
    max-width: 1510px;
    min-height: 92px;
    margin: 12px auto 0;
    padding: 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(255, 255, 255, .94);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(22, 55, 116, .14);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
    font-size: 16px;
    font-weight: 700;
}

.nav > a,
.dropdown > a {
    position: relative;
    padding: 12px 0;
}

.nav .active::after,
.nav > a:hover::after,
.dropdown:hover > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: var(--blue);
    border-radius: 5px;
}

.menu-toggle {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 230px;
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(25, 45, 105, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: .2s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: #f2f5ff;
}

.soon-pill {
    margin-left: 8px;
    padding: 3px 8px;
    color: #fff;
    background: var(--purple);
    border-radius: 999px;
    font-size: 11px;
}

/* =========================================================
3) BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(22, 83, 190, .15);
    font-weight: 800;
    white-space: nowrap;
    font-size: 16px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.btn-outline {
    color: var(--purple);
    background: #fff;
    border: 3px solid rgba(108, 32, 232, .35);
}

.btn-setup {
    color: var(--orange);
    background: #fff;
    border: 3px solid rgba(255, 101, 14, .35);
}

.btn-setup:hover {
    background: rgba(255, 101, 14, .05);
}

.header-btn {
    padding: 13px 25px;
}



/* =========================================================
4) PRODUCT HERO
========================================================= */

.product-hero {
    position: relative;
    width: 90%;
    max-width: 1510px;
    min-height: 470px;
    margin: -54px auto 0;
    padding: 85px 70px 35px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 8px;
    overflow: hidden;
    border-radius: 0 0 36px 36px;
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 189, 33, .22), transparent 28%),
        radial-gradient(circle at 4% 76%, rgba(63, 180, 255, .22), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #efe7ff 100%);
}

.product-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    z-index: -1;
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, #9b6aff, #e878f7);
    border-radius: 50%;
    opacity: .38;
}

.product-hero-copy {
    position: relative;
    z-index: 2;
}

.product-kicker {
    margin: 0 0 14px;
    color: var(--orange);
    font-family: Fredoka, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .5px;
}

.product-hero h1 {
    margin: 0 0 18px;
    font-family: Fredoka, sans-serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2.6px;
}

.product-hero h1 span {
    color: var(--blue);
}

.product-hero h1 em {
    color: var(--pink);
    font-style: normal;
}

.product-hero h1 strong {
    color: var(--purple);
    font-weight: 700;
}

.product-subtitle {
    max-width: 580px;
    margin: 0 0 26px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.product-hero-image {
    position: relative;
    z-index: 2;
}

.product-hero-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-left: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(37, 58, 100, .18));
    transform: translateX(50px);
}

/* Hero decorations */

.hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-star {
    left: 40%;
    top: 130px;
    color: var(--yellow);
    font-size: 46px;
}

.hero-note {
    font-size: 56px;
    font-weight: 900;
}

.note-one {
    left: 57%;
    top: 15%;
    color: var(--purple);
}

.note-two {
    right: 42%;
    top: 56%;
    color: var(--orange);
}

.hero-ring {
    right: 47%;
    top: 40%;
    width: 36px;
    height: 36px;
    border: 8px solid var(--pink);
    border-radius: 50%;
}

.hero-dots {
    right: 1%;
    top: 85px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(255, 189, 33, .65) 4px, transparent 5px);
    background-size: 20px 20px;
}

/* =========================================================
5) PRODUCT HIGHLIGHTS
========================================================= */

.product-highlights {
    position: relative;
    z-index: 3;
    width: 82%;
    max-width: 1240px;
    margin: -28px auto 70px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: stretch;
    gap: 24px;
    background: rgba(255, 255, 255, .96);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    width: auto;
    height: auto;
    margin: 0 auto 8px;
    display: block;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 42px;
    line-height: 1;
}

.icon-music {
    color: var(--pink);
}

.icon-laugh {
    color: var(--yellow);
}

.icon-family {
    color: var(--blue);
}

.icon-active {
    color: var(--green);
}

.highlight-item h3 {
    margin: 0 0 4px;
    font-family: Fredoka, sans-serif;
    font-size: 20px;
    line-height: 1.1;
}

.highlight-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.highlight-divider {
    width: 1px;
    background: #ddddef;
}

/* Temporary next-section placeholder */

.placeholder-section {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto 120px;
    padding: 45px 28px;
    text-align: center;
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--pink);
    font-weight: 900;
}

.placeholder-section h2 {
    margin: 0 0 10px;
    font-family: Fredoka, sans-serif;
    font-size: clamp(30px, 3vw, 44px);
}





/* =========================================================
HOME GAMES SECTION
========================================================= */
/* #region HOME GAMES */

.home-games-section {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto 55px;
    padding: 40px;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.home-games-kicker {
    margin: 0 0 8px;
    color: var(--pink);
    text-align: center;
    font-weight: 900;
}

.home-games-title {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    font-family: Fredoka, sans-serif;
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.1;
}

.home-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-game-card {
    min-height: 360px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(40,60,120,.12);
}

.home-game-card img {
    width: 100%;
    max-width: 190px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 16px;
}

.home-game-card h3 {
    margin: 0 0 10px;
    font-family: Fredoka, sans-serif;
    font-size: 28px;
    line-height: 1.05;
}

.home-game-card p {
    flex: 1;
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.blue-card {
    background: linear-gradient(135deg, #e4f2ff, #f4f9ff);
}

.orange-card {
    background: linear-gradient(135deg, #fff0d2, #fff9ec);
}

.purple-card {
    background: linear-gradient(135deg, #f0e8ff, #fbf7ff);
}

.teal-card {
    background: linear-gradient(135deg, #dcfbf7, #f3fffd);
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 22px;
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

.blue-btn {
    background: var(--blue);
}

.orange-btn {
    background: var(--orange);
}

.purple-btn {
    background: var(--purple);
}

.teal-btn {
    background: var(--teal);
}

.coming-box {
    width: 150px;
    height: 170px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #4a04da, #7a31ff);
    border-radius: 16px;
    font-family: Fredoka, sans-serif;
    font-size: 90px;
    font-weight: 700;
}

.disabled {
    opacity: .85;
    cursor: default;
}

/* #endregion HOME GAMES */




/* =========================================================
FOUNDER SECTION
========================================================= */

/* #region FOUNDER */

.founder-section {
    position: relative;
    width: 90%;
    max-width: 1240px;
    margin: 0 auto 55px;
    padding: 34px 40px 28px;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
    scroll-margin-top: 120px;
}

.founder-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.founder-content::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    border-left: 3px dotted rgba(108, 32, 232, .22);
}

.founder-text {
    max-width: 470px;
    padding-left: 28px;
}

.founder-text h2 {
    margin: 0 0 6px;
    font-family: Fredoka, sans-serif;
    font-size: 58px;
    line-height: .95;
    letter-spacing: -1.5px;
}

.founder-role {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 900;
}

.founder-role span {
    color: var(--purple);
}

.founder-story {
    max-width: 430px;
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
}

.founder-line {
    display: block;
    width: 58px;
    height: 4px;
    margin: 16px 0 18px;
    background: var(--pink);
    border-radius: 999px;
}

.founder-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 430px;
}

.value-item {
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.value-icon {
    display: block;
    margin-bottom: 6px;
    font-size: 50px;
    line-height: 1;
}

.founder-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.founder-image::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    background: #d9c7ff;
    border-radius: 50%;
    z-index: 0;
}

.founder-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 275px;
}

.founder-text .founder-image {
    display: none;
}

.founder-contact {
    margin-top: 24px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff8f2;
    border-radius: 24px;
}

.contact-message {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-help-icon {
    flex-shrink: 0;
    position: relative;
    width: 48px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    border: 3px solid var(--orange);
    border-radius: 18px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.contact-help-icon::after {
    content: "";
    position: absolute;
    left: 7px;
    bottom: -9px;
    width: 13px;
    height: 13px;
    background: #fff8f2;
    border-left: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    transform: rotate(-18deg);
}

.contact-message h3 {
    margin: 0 0 4px;
    color: var(--orange);
    font-size: 26px;
}

.contact-message p {
    margin: 0 0 4px;
    font-size: 15px;
}

.contact-buttons {
    display: flex;
    gap: 18px;
}

.contact-btn {
    min-width: 190px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
}

.contact-btn.whatsapp {
    background: #20c65a;
}

.contact-btn.email {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transform: rotate(-12deg);
}

.founder-decor {
    position: absolute;
    pointer-events: none;
    font-family: Fredoka, sans-serif;
    font-weight: 700;
    line-height: 1;
}

.founder-heart {
    right: 40%;
    top: 11px;
    color: var(--pink);
    font-size: 70px;
}

.founder-star {
    right: 3%;
    top: 170px;
    color: var(--blue);
    font-size: 65px;
}

.founder-dots {
    position: absolute;
    right: 33px;
    top: 27px;

    width: 110px;
    height: 110px;

    background-image:
    radial-gradient(rgba(255,189,33,.75) 3px, transparent 4px);

    background-size: 22px 22px;
}

/* #endregion FOUNDER */

/* =========================================================
VIDEO SECTION
========================================================= */

/* #region VIDEOS */

.video-section {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto 80px;
    padding: 40px;
    background: #fff;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.video-title {
    margin: 0 0 10px;
    text-align: center;
    font-family: Fredoka, sans-serif;
    font-size: 48px;
}

.video-title-purple {
    color: var(--purple);
}

.video-title-orange {
    color: var(--orange);
}

.video-title-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 12px;
    font-size: 24px;
    vertical-align: middle;
}

.video-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
}

.video-grid {
    display: grid;
    gap: 28px;
    justify-content: center;
    /* 3 videos */
    grid-template-columns: repeat(3, 1fr);

    /* 1-2 videos */
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 360px));*/
}

.video-card {
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(40,60,120,.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(40, 60, 120, .18);
}

.video-card-purple {
    border-top: 6px solid var(--purple);
}

.video-card-orange {
    border-top: 6px solid var(--orange);
}

.video-card-blue {
    border-top: 6px solid var(--blue);
}

.video-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
}

.video-card-icon.purple-icon {
    background: linear-gradient(135deg, #6a2cf6, #b53cff);
}

.video-card-icon.orange-icon {
    background: linear-gradient(135deg, #ff9a00, #ff6b00);
}

.video-card-icon.blue-icon {
    background: linear-gradient(135deg, #1f6df0, #4da0ff);
}

.video-frame {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vertical-video-section .video-frame {
    aspect-ratio: 9 / 16;
    max-width: 260px;
    margin: 0 auto;
    border-radius: 18px;
}

.vertical-video-section .video-card {
    max-width: 330px;
    margin: 0 auto;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-content {
    padding: 22px;
}

.video-content h3 {
    margin: 0 0 10px;
    font-family: Fredoka, sans-serif;
    font-size: 26px;
}

.video-content p {
    margin: 0;
    line-height: 1.5;
}

.video-section {
    position: relative;
    overflow: hidden;
}

.video-decor {
    position: absolute;
    pointer-events: none;
    font-family: Fredoka, sans-serif;
    font-weight: 700;
    line-height: 1;
}

.video-note-left {
    left: 70px;
    top: 82px;
    color: var(--pink);
    font-size: 42px;
    transform: rotate(-10deg);
}

.video-star-right {
    right: 110px;
    top: 74px;
    color: var(--yellow);
    font-size: 46px;
}

.video-lines-right {
    right: 95px;
    top: 150px;
    color: var(--blue);
    font-size: 34px;
    letter-spacing: -8px;
    transform: rotate(-25deg);
}


/* #endregion VIDEOS */



/* =========================================================
10) PRODUCT SHARE SECTION
Shared by all product pages
========================================================= */

.product-share-section {
    position: relative;
    width: 90%;
    max-width: 1240px;
    margin: 0 auto 55px;
    padding: 38px 42px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(9, 104, 239, .10),
            transparent 25%
        ),
        radial-gradient(
            circle at 93% 85%,
            rgba(108, 32, 232, .13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 48%,
            #f5edff 100%
        );
    border-radius: 32px;
    box-shadow: var(--shadow);
    scroll-margin-top: 120px;
}

.product-share-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(240px, .72fr)
        minmax(0, 1.7fr);
    gap: 44px;
    align-items: center;
}

.product-share-image-wrap {
    position: relative;
    max-width: 325px;
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(28, 51, 105, .20);
    transform: rotate(-3deg);
}

.product-share-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-share-heading {
    margin-bottom: 24px;
}

.product-share-heading h2 {
    margin: 0 0 12px;
    font-family: Fredoka, sans-serif;
    font-size: clamp(38px, 4vw, 57px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -1.5px;
}

.product-share-heading h2 span {
    color: var(--navy);
}

.product-share-heading h2 strong {
    color: var(--purple);
    font-weight: 700;
}

.product-share-heading p {
    max-width: 590px;
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.product-share-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.product-share-card {
    min-height: 260px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, .96);
    border: 2px solid transparent;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(40, 60, 120, .11);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.product-share-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 34px rgba(40, 60, 120, .17);
}

.product-review-card {
    border-color: rgba(255, 189, 33, .44);
}

.product-game-card {
    border-color: rgba(255, 44, 155, .32);
}

.product-share-card-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
}

.review-icon {
    background: linear-gradient(135deg, #ffd43b, #ffad00);
}

.game-icon {
    background: linear-gradient(135deg, #ff4aa9, #e51a72);
}

.product-share-card h3 {
    margin: 0 0 9px;
    font-family: Fredoka, sans-serif;
    font-size: 25px;
    line-height: 1.1;
}

.product-share-card p {
    flex: 1;
    margin: 0 0 19px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.product-share-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition:
        transform .18s ease,
        filter .18s ease;
}

.product-share-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.review-button {
    color: #211700;
    background: linear-gradient(135deg, #ffd12e, #ffb600);
}

.game-button {
    color: #fff;
    background: linear-gradient(135deg, #ff3d9a, #e91d70);
}

.amazon-letter {
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
}

.product-share-tags {
    margin-top: 22px;
    padding: 16px 20px;
    color: #fff;
    background: linear-gradient(135deg, #4d19b8, #6c20e8);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(73, 24, 174, .19);
}

.product-share-handle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
}

.product-share-handle strong {
    color: var(--yellow);
    font-size: 18px;
}

.product-share-networks {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.product-share-networks span {
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-share-hashtags {
    margin-top: 11px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
}

.product-share-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    font-family: Fredoka, Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
}

.share-decor-star {
    left: 2%;
    top: 26px;
    color: var(--yellow);
    font-size: 120px;
    transform: rotate(12deg);
}

.share-decor-note-one {
    left: 22%;
    bottom: 6%;
    color: var(--purple);
    font-size: 84px;
    transform: rotate(9deg);
}

.share-decor-note-two {
    left: 3%;
    bottom: 25px;
    color: var(--orange);
    font-size: 100px;
    transform: rotate(-12deg);
}

.share-decor-ring {
    left: 12%;
    bottom: 34px;
    width: 53px;
    height: 53px;
    border: 7px solid var(--pink);
    border-radius: 50%;
}

.share-decor-dots {
    right: 32px;
    top: 25px;
    width: 85px;
    height: 85px;
    opacity: .6;
    background-image:
        radial-gradient(
            rgba(255, 44, 155, .65) 3px,
            transparent 4px
        );
    background-size: 18px 18px;
}




/* =========================================================
6) FOOTER
========================================================= */

/* #region FOOTER */

.footer {
    position: relative;
    margin-top: 90px;
    padding: 75px 40px 25px;
    color: #fff;
    background: linear-gradient(135deg, #4b0fc7, #240067);
}

.footer-wave {
    position: absolute;
    left: 0;
    right: 0;
    top: -55px;
    height: 80px;
    background: #4b0fc7;
    clip-path: polygon(0 55%, 10% 30%, 22% 58%, 35% 32%, 50% 57%, 64% 28%, 78% 55%, 90% 36%, 100% 58%, 100% 100%, 0 100%);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1fr 1fr;
    gap: 44px;
}

.footer-logo-img {
    width: 180px;
    max-width: 100%;
    height: auto;
    margin-bottom: 18px;
}

.footer p,
.footer a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
}

.footer h4 {
    margin: 0 0 16px;
    font-size: 20px;
}

.socials {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
}

.socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-hidden {
    display: none !important;
}

.copyright {
    margin: 45px 0 0 !important;
    text-align: center;
    color: rgba(255, 255, 255, .72);
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

.footer-legal-separator {
    display: inline-block;
    margin: 0 8px;
    opacity: .55;
}

.footer .footer-legal-link {
    display: inline;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}

.footer .footer-legal-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* #endregion FOOTER */



@media (min-width: 1051px) {
                .hero-actions {
                    flex-wrap: nowrap;
                }
            
                .hero-actions .btn {
                    padding: 12px 20px;
                    font-size: 15px;
                }
}


@media (min-width: 701px) {
                .founder-text .founder-image {
                    display: none;
                }
}


/* =========================================================
7) TABLET - max-width: 1050px
========================================================= */


@media (max-width: 1050px) {

    /* Header */
                  .site-header {
                      top: 0;
                      width: 100%;
                      min-height: 78px;
                      margin: 0;
                      padding: 8px 18px;
                      border-radius: 0;
                  }
              
                  .logo img {
                      width: 138px;
                  }
              
                  .nav {
                      gap: 26px;
                  }
              
                  .header-btn {
                      display: none;
                  }
              
                  /* Product hero */
                  .product-hero {
                      width: 100%;
                      min-height: auto;
                      margin: 0;
                      padding: 92px 34px 64px;
                      grid-template-columns: 1fr;
                      gap: 28px;
                      text-align: center;
                      border-radius: 0 0 34px 34px;
                  }
              
                .product-hero::after {
                    right: -50px;
                    width: 457px;
                    height: 460px;
                }




                  .product-hero-copy {
                      max-width: 780px;
                      margin: 0 auto;
                  }
              
                  .product-kicker {
                      margin-bottom: 16px;
                      font-size: 24px;
                  }
              
                  .product-hero h1 {
                      margin-bottom: 20px;
                      font-size: clamp(52px, 8vw, 74px);
                      letter-spacing: -2px;
                  }
              
                  .product-subtitle {
                      max-width: 700px;
                      margin-left: auto;
                      margin-right: auto;
                      margin-bottom: 30px;
                      font-size: 21px;
                  }
              
                  .hero-actions {
                      justify-content: center;
                  }
              
                  .product-hero-image {
                      width: 100%;
                  }
              
                  .product-hero-image img {
                      max-width: 640px;
                      max-height: 460px;
                      margin: 0 auto;
                  }
              
                  .hero-decor {
                    display: none;
                  }                  
              
                  /* Highlights */
                  .product-highlights {
                      width: 92%;
                      margin: -24px auto 64px;
                      padding: 30px 34px;
                      grid-template-columns: 1fr 1fr;
                      gap: 26px 22px;
                  }
              
                  .highlight-divider {
                      display: none;
                  }
              
                  .highlight-item {
                      padding: 8px 10px;
                  }
              

                  
                .founder-content {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    gap: 20px;
                }

                .founder-content::after {
                    display: none;
                }

                .founder-text {
                    max-width: 700px;
                    padding-left: 0;
                }

                .founder-image-desktop {
                    display: none;
                }

                .founder-text .founder-image {
                    display: flex;
                    justify-content: center;
                    margin: 10px auto 20px;
                }

                .founder-image::before {
                    width: 340px;
                    height: 340px;
                }

                .founder-image img {
                    max-width: 380px;
                }

                .founder-line {
                    margin-left: auto;
                    margin-right: auto;
                }

                .founder-values {
                    max-width: 650px;
                    margin: 0 auto;
                }

                .founder-contact {
                    flex-direction: column;
                    gap: 18px;
                }

                .contact-buttons {
                    width: 100%;
                    justify-content: center;
                }

                    .founder-decor {
                        display: none;
                    }

                
                  .founder-story {
                      margin: auto;
                  }
                  

                /* Home Products */

                    .home-games-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }

                   
                /* Videos */

                  .video-grid {
                    grid-template-columns: 1fr 1fr;
                  }


                /* SHARE */

                .product-share-section {
                    width: 90%;
                    padding: 36px 30px;
                }

                .product-share-layout {
                    grid-template-columns:
                        minmax(210px, .7fr)
                        minmax(0, 1.3fr);
                    gap: 30px;
                }

                .product-share-heading h2 {
                    font-size: 43px;
                }

                .product-share-card {
                    padding: 22px 18px 20px;
                }

                .product-share-card h3 {
                    font-size: 22px;
                }


                /* Footer */
                  .footer-inner {
                      grid-template-columns: 1fr 1fr;
                  }

                .vertical-video-section .video-card {
                    max-width: 300px;
                }
}

/* =========================================================
8) MOBILE - max-width: 700px
========================================================= */

@media (max-width: 700px) {

    /* Header */
                    .site-header {
                        padding: 12px 18px;
                    }
                
                    .logo img {
                        width: 118px;
                    }
                
                    .menu-toggle {
                        display: block;
                        border: 0;
                        background: transparent;
                        font-size: 28px;
                        line-height: 1;
                        cursor: pointer;
                    }
                
                    .nav {
                        position: absolute;
                        left: 16px;
                        right: 16px;
                        top: 78px;
                        display: none;
                        flex-direction: column;
                        align-items: center;
                        gap: 14px;
                        background: #fff;
                        padding: 26px 20px 32px;
                        border-radius: 18px;
                        box-shadow: var(--shadow);
                    }
                
                    .site-header:focus-within .nav,
                    .menu-toggle:focus + .nav {
                        display: flex;
                    }
                
                    .nav .active::after,
                    .dropdown:hover > a::after {
                        /*display: none;*/
                    }
                
                    .nav > a,
                    .dropdown > a {
                        padding: 6px 0;
                    }
                
                    .dropdown {
                        width: 100%;
                        text-align: center;
                    }
                
                    .dropdown::after {
                        display: none;
                    }
                
                    .dropdown-menu {
                        position: static;
                        left: auto;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 10px;
                        width: 100%;
                        padding: 8px 0 0;
                        background: transparent;
                        border-radius: 0;
                        box-shadow: none;
                        opacity: 1;
                        pointer-events: auto;
                        transform: none !important;
                        transition: none;
                    }
                
                    .dropdown:hover .dropdown-menu {
                        transform: none !important;
                    }
                
                    .dropdown-menu a {
                        width: 220px;
                        max-width: 100%;
                        padding: 10px 14px;
                        text-align: center;
                    }
                
                    .dropdown-menu a:hover {
                        background: #f2f5ff;
                    }
                
                    .soon-pill {
                        display: inline-block;
                        margin-left: 6px;
                    }
                
                    /* Product hero */
                    .product-hero {
                        width: 100%;
                        min-height: auto;
                        margin: 0;
                        padding: 44px 20px 46px;
                        grid-template-columns: 1fr;
                        gap: 24px;
                        text-align: center;
                        border-radius: 0 0 28px 28px;
                    }
                
                    .product-hero::after {
                        right: -12%;
                        bottom: -9%;
                        width: 52%;
                        height: 30%;
                    }
                
                    .product-kicker {
                        margin-bottom: 14px;
                        font-size: 20px;
                    }
                
                    .product-hero h1 {
                        margin-bottom: 18px;
                        font-size: clamp(42px, 12vw, 52px);
                        line-height: .94;
                        letter-spacing: -1.2px;
                    }
                
                    .product-subtitle {
                        max-width: 440px;
                        margin: 0 auto 26px;
                        font-size: 18px;
                        line-height: 1.5;
                    }
                
                    .hero-actions {
                        max-width: 380px;
                        margin: 0 auto;
                        display: flex;
                        flex-direction: column;
                        gap: 12px;
                    }
                    
                    .hero-actions .btn {
                        width: 100%;
                        padding: 14px 20px;
                        font-size: 16px;
                    }
                
                    
                    .product-hero-image {
                        order: 2;
                    }
                
                    .product-hero-image img {
                        max-width: min(100%, 430px);
                        max-height: 330px;
                        margin: 0 auto;
                    }
                
                
                    /* Highlights */
                    .product-highlights {
                        width: calc(100% - 32px);
                        margin: -18px auto 55px;
                        padding: 26px 18px;
                        grid-template-columns: 1fr 1fr;
                        gap: 18px 14px;
                        border-radius: 24px;
                    }
                
                    .highlight-divider {
                        display: none;
                    }
                
                    .highlight-icon {
                        width: 56px;
                        height: 56px;
                        margin-bottom: 10px;
                        font-size: 28px;
                    }
                
                    .highlight-item h3 {
                        font-size: 17px;
                    }
                
                    .highlight-item p {
                        font-size: 13px;
                        line-height: 1.35;
                    }
                
                    .placeholder-section {
                        width: calc(100% - 32px);
                        margin-bottom: 90px;
                        padding: 36px 20px;
                    }
                    
                    
                    
                    .founder-section {
                        width: calc(100% - 24px);
                        padding: 24px 18px;
                    }

                    .founder-content {
                        display: block;
                        text-align: center;
                    }

                    .founder-text {
                        max-width: none;
                        padding-left: 0;
                    }

                    .founder-text h2 {
                        font-size: 38px;
                    }

                    .founder-role {
                        font-size: 20px;
                    }

                    .founder-image-desktop {
                        display: none;
                    }

                    .founder-text .founder-image {
                        display: flex;
                        margin: 18px auto;
                    }

                    .founder-image::before {
                        width: 300px;
                        height: 300px;
                    }

                    .founder-image img {
                        max-width: 260px;
                    }

                    .founder-story {
                        max-width: 100%;
                        font-size: 15px;
                        margin: 0 auto;
                    }

                    .founder-line {
                        margin-left: auto;
                        margin-right: auto;
                    }

                    .founder-values {
                        grid-template-columns: repeat(3, 1fr);
                        gap: 10px;
                        max-width: 100%;
                    }

                    .value-icon {
                        font-size: 30px;
                    }

                    .value-item {
                        font-size: 12px;
                    }

                    .founder-contact {
                        flex-direction: column;
                        padding: 18px;
                        text-align: left;
                    }

                    .contact-buttons {
                        width: 100%;
                        flex-direction: column;
                    }

                    .contact-btn {
                        width: 100%;
                    }


                    /* Home Products */
                  
                    .home-games-section {
                        width: calc(100% - 24px);
                        padding: 24px 18px;
                    }

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

                    .home-game-card {
                        min-height: auto;
                    }

                    .home-games-title {
                        font-size: 32px;
                    }




                    
                    /* Videos */

                    .video-section {
                        padding: 22px 18px;
                    }

                    .video-title {
                        font-size: 34px;
                    }

                    .video-subtitle {
                        font-size: 16px;
                        margin-bottom: 24px;
                    }

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

                    .video-content {
                        padding: 18px;
                    }

                    .video-content h3 {
                        font-size: 22px;
                    }

                    .video-decor {
                        display: none;
                    }

                    .video-content h3 {
                        justify-content: flex-start;
                    }

                    .video-card-icon {
                        width: 42px;
                        height: 42px;
                        font-size: 19px;
                    }

                    
                    .vertical-video-section .video-frame {
                        max-width: 240px;
                    }
                    


                    /* SHARE */

                    .product-share-section {
                        width: calc(100% - 24px);
                        margin-bottom: 55px;
                        padding: 28px 18px 24px;
                        border-radius: 28px;
                    }

                    .product-share-layout {
                        grid-template-columns: 1fr;
                        gap: 28px;
                    }

                    .product-share-image-wrap {
                        width: min(82%, 310px);
                        transform: rotate(-2deg);
                    }

                    .product-share-content {
                        text-align: center;
                    }

                    .product-share-heading {
                        margin-bottom: 22px;
                    }

                    .product-share-heading h2 {
                        font-size: 39px;
                        line-height: .98;
                        letter-spacing: -1px;
                    }

                    .product-share-heading p {
                        margin-left: auto;
                        margin-right: auto;
                        font-size: 15px;
                    }

                    .product-share-actions {
                        grid-template-columns: 1fr;
                        gap: 16px;
                    }

                    .product-share-card {
                        min-height: auto;
                        padding: 23px 20px 20px;
                    }

                    .product-share-card-icon {
                        width: 68px;
                        height: 68px;
                        font-size: 33px;
                    }

                    .product-share-card h3 {
                        font-size: 23px;
                    }

                    .product-share-tags {
                        margin-top: 18px;
                        padding: 17px 14px;
                    }

                    .product-share-handle {
                        flex-direction: column;
                        gap: 3px;
                    }

                    .product-share-hashtags {
                        gap: 8px 15px;
                    }

                    .product-share-decor {
                        opacity: .32;
                    }



                    /* Footer */
                    .footer {
                        margin-top: 70px;
                        padding: 60px 22px 25px;
                    }
                
                    .footer-inner {
                        grid-template-columns: 1fr;
                        gap: 32px;
                        text-align: center;
                    }
                
                    .footer-logo-img {
                        width: 175px;
                        margin-left: auto;
                        margin-right: auto;
                    }

                    .footer-legal-separator {
                        display: none;
                    }

                    .footer .footer-legal-link {
                        display: block;
                        margin-top: 4px;
                    }                    
                
                    .socials {
                        justify-content: center;
                    }
}

/* =========================================================
9) SMALL MOBILE - max-width: 420px
========================================================= */

@media (max-width: 420px) {

                    .product-hero {
                        padding: 36px 16px 42px;
                    }
                
                    .product-hero h1 {
                        font-size: 39px;
                    }
                
                    .product-subtitle {
                        font-size: 17px;
                    }
                
                    .btn {
                        white-space: normal;
                    }
                
                    .product-hero-image img {
                        max-height: 285px;
                    }
                
                    .product-highlights {
                        width: calc(100% - 24px);
                        padding: 24px 14px;
                        gap: 16px 10px;
                    }
                
                    .highlight-icon {
                        width: 50px;
                        height: 50px;
                        font-size: 25px;
                    }
                
                    .highlight-item h3 {
                        font-size: 16px;
                    }
                
                    .highlight-item p {
                        font-size: 12px;
                    }

                    /* SHARE */

                    .product-share-section {
                        padding: 24px 14px 20px;
                    }

                    .product-share-image-wrap {
                        width: 88%;
                    }

                    .product-share-heading h2 {
                        font-size: 34px;
                    }

                    .product-share-card {
                        padding: 21px 16px 18px;
                    }

                    .product-share-button {
                        font-size: 13px;
                    }

                    .product-share-networks span {
                        font-size: 11px;
                    }

                    .product-share-hashtags {
                        font-size: 12px;
                    }


}
