/*
Theme Name: Encore Events
Theme URI: https://www.encoreevents.ie
Author: Encore Events
Author URI: https://www.encoreevents.ie
Description: Bold, colourful WordPress theme for Encore Events — Ireland's most electrifying group games & entertainment company.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: encore-events
Tags: events, entertainment, bold, colorful
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow: #FFE135;
    --pink: #FF2D78;
    --orange: #FF6B35;
    --purple: #7B2FBE;
    --navy: #0D0D1A;
    --dark: #111118;
    --white: #FFFFFF;
    --off-white: #F7F5EF;
    --light-gray: #E8E5DE;

    --font-display: 'Unbounded', 'Impact', sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 900;
}

h1 { font-size: clamp(3rem, 8vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.75;
}

.display-xl {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 14rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.label-tag {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 2px solid currentColor;
    border-radius: 100px;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section {
    padding: clamp(60px, 10vw, 140px) 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), padding var(--transition);
    mix-blend-mode: normal;
}

.site-header.scrolled {
    background: var(--navy);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition);
}

.site-logo img:hover {
    opacity: 0.8;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.site-nav a {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}

.site-nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--yellow);
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius);
    font-family: var(--font-display) !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
    background: var(--pink) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero__bg-text {
    position: absolute;
    bottom: -0.15em;
    left: -0.05em;
    right: 0;
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.05);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero__content {}

.hero__tag {
    color: var(--yellow);
    border-color: var(--yellow);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero__title {
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero__title em {
    font-style: normal;
    color: var(--yellow);
    display: block;
}

.hero__title .stroke {
    -webkit-text-stroke: 3px var(--pink);
    color: transparent;
}

.hero__subtitle {
    margin-top: 28px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.6s;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.8s;
}

.hero__mic {
    position: relative;
    width: clamp(180px, 20vw, 320px);
    flex-shrink: 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.hero__mic img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(255,45,120,0.4));
    animation: float 4s ease-in-out infinite;
}

.hero__mic-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,225,53,0.2);
    animation: pulse-ring 3s ease-in-out infinite;
}

.hero__mic-ring:nth-child(1) {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero__mic-ring:nth-child(2) {
    width: 145%;
    height: 145%;
    top: -22.5%;
    left: -22.5%;
    animation-delay: 0.5s;
    border-color: rgba(255,107,53,0.15);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-display);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease forwards 1.5s;
    opacity: 0;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* =============================================
   TICKER / MARQUEE
   ============================================= */
.ticker {
    background: var(--yellow);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker__track {
    display: inline-flex;
    animation: ticker 25s linear infinite;
}

.ticker__item {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.ticker__item::after {
    content: '★';
    color: var(--pink);
}

/* =============================================
   INTRO / ABOUT STRIP
   ============================================= */
.intro {
    background: var(--off-white);
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.intro__heading {
    position: relative;
}

.intro__heading h2 {
    position: relative;
    z-index: 1;
}

.intro__heading h2 .highlight {
    background: var(--yellow);
    padding: 0 8px;
    display: inline-block;
    transform: rotate(-1.5deg);
    position: relative;
    z-index: 1;
}

.intro__heading h2 .big-letter {
    font-size: 1.6em;
    color: var(--pink);
    line-height: 0.8;
}

.intro__visual {
    position: relative;
}

.intro__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.intro__image-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro__image-wrap:hover img {
    transform: scale(1.04);
}

.intro__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    animation: spin-slow 12s linear infinite;
    z-index: 3;
    padding: 16px;
}

/* =============================================
   SERVICES / GAMES SECTION
   ============================================= */
.games {
    background: var(--navy);
    padding: clamp(80px, 12vw, 160px) 0;
    position: relative;
    overflow: hidden;
}

.games__header {
    text-align: center;
    margin-bottom: 80px;
}

.games__header .label-tag {
    color: var(--yellow);
    border-color: var(--yellow);
    margin-bottom: 24px;
}

.games__header h2 {
    color: var(--white);
}

.games__header h2 em {
    font-style: normal;
    color: var(--pink);
}

.games__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.game-card {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    transition: all 0.4s ease;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.game-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: saturate(0.6);
}

.game-card:hover .game-card__bg {
    transform: scale(1.08);
    filter: saturate(1);
}

.game-card__color-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 3;
}

.game-card__content {
    position: relative;
    z-index: 2;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.game-card:hover .game-card__content {
    transform: translateY(0);
}

.game-card__number {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.game-card__desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.game-card:hover .game-card__desc {
    max-height: 100px;
}

.game-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
}

.game-card:hover .game-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Color strips per card */
.game-card:nth-child(1) .game-card__color-strip { background: var(--yellow); }
.game-card:nth-child(2) .game-card__color-strip { background: var(--pink); }
.game-card:nth-child(3) .game-card__color-strip { background: var(--orange); }
.game-card:nth-child(4) .game-card__color-strip { background: var(--purple); }
.game-card:nth-child(5) .game-card__color-strip { background: var(--yellow); }
.game-card:nth-child(6) .game-card__color-strip { background: var(--pink); }

/* =============================================
   STATS / NUMBERS
   ============================================= */
.stats {
    background: var(--pink);
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: var(--pink);
    position: relative;
}

.stat-item:nth-child(2n) {
    background: var(--orange);
}

.stat-item:nth-child(3) {
    background: var(--purple);
}

.stat-item:nth-child(4) {
    background: var(--navy);
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.stat-item__suffix {
    font-size: 0.4em;
    padding-top: 0.3em;
    color: var(--yellow);
}

.stat-item__label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    background: var(--off-white);
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.how-it-works__header {
    margin-bottom: 80px;
}

.how-it-works__header .label-tag {
    color: var(--purple);
    border-color: var(--purple);
    margin-bottom: 24px;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    counter-reset: steps;
    position: relative;
}

.how-it-works__steps::after {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--navy) 0, var(--navy) 8px, transparent 8px, transparent 16px);
    opacity: 0.15;
}

.step {
    position: relative;
    text-align: center;
}

.step__num {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step:nth-child(1) .step__num { background: var(--yellow); color: var(--navy); }
.step:nth-child(2) .step__num { background: var(--pink); }
.step:nth-child(3) .step__num { background: var(--orange); }
.step:nth-child(4) .step__num { background: var(--purple); }

.step__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.step__desc {
    font-size: 0.95rem;
    color: rgba(13,13,26,0.65);
    line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    background: var(--navy);
    padding: clamp(80px, 12vw, 160px) 0;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials__header .label-tag {
    color: var(--yellow);
    border-color: var(--yellow);
    margin-bottom: 24px;
}

.testimonials__header h2 {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(255,225,53,0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:nth-child(2) { background: var(--pink); border-color: var(--pink); }
.testimonial-card:nth-child(2):hover { background: #e0245f; }
.testimonial-card:nth-child(2)::before { color: rgba(255,255,255,0.1); }

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__stars span {
    color: var(--yellow);
    font-size: 1.1rem;
}

.testimonial-card:nth-child(2) .testimonial-card__stars span {
    color: var(--yellow);
}

.testimonial-card__quote {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-card:nth-child(2) .testimonial-card__quote {
    color: var(--white);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.testimonial-card__company {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.testimonial-card:nth-child(2) .testimonial-card__company {
    color: rgba(255,255,255,0.75);
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
    background: var(--yellow);
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
    position: relative;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 700px;
}

.cta-band__title em {
    font-style: normal;
    color: var(--pink);
    -webkit-text-stroke: 0;
}

.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
}

.cta-band__note {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13,13,26,0.5);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.btn-primary:hover {
    background: #d91f62;
    border-color: #d91f62;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,45,120,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-dark:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,13,26,0.4);
}

.btn-large {
    padding: 20px 44px;
    font-size: 0.75rem;
}

.btn svg, .btn .arrow {
    transition: transform var(--transition);
}

.btn:hover svg, .btn:hover .arrow {
    transform: translateX(4px);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark);
    padding: clamp(60px, 8vw, 100px) 0 40px;
    color: rgba(255,255,255,0.7);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.footer__brand {}

.footer__logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.5);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.footer__social-link:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(255,225,53,0.08);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer__links a:hover { color: var(--yellow); }

.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer__contact a {
    color: var(--yellow);
    transition: opacity var(--transition);
}

.footer__contact a:hover { opacity: 0.75; }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition);
}

.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.04); }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
    background: var(--navy);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner__title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.page-banner__title em {
    font-style: normal;
    color: var(--yellow);
}

.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
}

.page-banner__breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.page-banner__breadcrumb a:hover { color: var(--yellow); }
.page-banner__breadcrumb .sep { color: var(--pink); }

/* =============================================
   GENERIC PAGE CONTENT
   ============================================= */
.page-content {
    padding: clamp(60px, 10vw, 120px) 0;
}

.page-content .wp-content h2 { margin: 1.5em 0 0.5em; }
.page-content .wp-content h3 { margin: 1.2em 0 0.4em; }
.page-content .wp-content p { margin-bottom: 1.2em; }
.page-content .wp-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1.2em; }
.page-content .wp-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.2em; }
.page-content .wp-content li { margin-bottom: 0.5em; line-height: 1.7; }
.page-content .wp-content a { color: var(--pink); text-decoration: underline; }
.page-content .wp-content blockquote {
    border-left: 4px solid var(--yellow);
    padding: 16px 24px;
    margin: 2em 0;
    background: rgba(255,225,53,0.05);
    font-style: italic;
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    transition: color var(--transition);
    letter-spacing: -0.02em;
}

.mobile-nav a:hover { color: var(--yellow); }

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    padding: 8px;
    transition: color var(--transition);
}

.mobile-nav-close:hover { color: var(--yellow); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .games__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .how-it-works__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .how-it-works__steps::after { display: none; }
}

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

    .hamburger {
        display: flex;
    }

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

    .hero__mic {
        display: none;
    }

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

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

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

    .cta-band__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-band__actions {
        align-items: center;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .how-it-works__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--pink);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar__inner {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    align-items: center;
}

.top-bar__link {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity var(--transition);
}

.top-bar__link:hover { opacity: 0.75; }

/* Push hero down to account for top-bar + header */
.site-header { top: 36px; }
.hero { padding-top: 136px; }

/* =============================================
   NAV DROPDOWN
   ============================================= */
.site-nav__item { position: relative; }

.site-nav__item--has-dropdown:hover .site-nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.site-nav__link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
    text-decoration: none;
}

.site-nav__arrow { font-size: 0.5rem; }

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
    min-width: 600px;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav__dropdown-heading {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 14px;
}

.site-nav__dropdown-link {
    display: block;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--navy) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: color var(--transition), padding-left var(--transition);
}

.site-nav__dropdown-link:hover {
    color: var(--pink) !important;
    padding-left: 6px;
}

.site-nav__dropdown-link::after { display: none; }

/* Mobile nav section labels */
.mobile-nav__section-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 6px;
}

/* =============================================
   HERO — new elements
   ============================================= */
.hero__title--outline {
    -webkit-text-stroke: 3px var(--pink);
    color: transparent;
}

.hero__body {
    margin-top: 20px;
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 500px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 44px;
}

.hero__trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.hero__trust-tick { color: var(--yellow); font-size: 0.75rem; }

/* =============================================
   TICKER — reverse / dark variants
   ============================================= */
.ticker--reverse .ticker__track { animation-direction: reverse; }

.ticker--dark { background: var(--navy); }

.ticker__item--dim {
    color: rgba(255,255,255,0.5);
}

.ticker__item--dim + .ticker__item--dim { }

/* =============================================
   EXPERIENCES GRID
   ============================================= */
.experiences__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.experience-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.experience-card__strip {
    height: 4px;
    width: 100%;
}

.experience-card__body {
    padding: 28px 24px 24px;
}

.experience-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.experience-card__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--navy);
}

.experience-card__desc {
    font-size: 0.88rem;
    color: rgba(13,13,26,0.6);
    line-height: 1.7;
    margin-bottom: 18px;
}

.experience-card__link {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =============================================
   INTRO — new stat bubble
   ============================================= */
.intro { background: var(--navy); }

.intro__stat-bubble {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--yellow);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.intro__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.intro__stat-label {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(13,13,26,0.6);
    margin-top: 4px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.btn-yellow:hover {
    background: #f0d020;
    transform: translateY(-2px);
}

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--off-white); }

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

.why-card {
    background: #fff;
    border: 1px solid rgba(13,13,26,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
    border-color: rgba(255,225,53,0.35);
    transform: translateY(-4px);
}

.why-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.why-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--navy);
}

.why-card__desc {
    font-size: 0.9rem;
    color: rgba(13,13,26,0.6);
    line-height: 1.75;
}

/* =============================================
   STATS — colour blocks
   ============================================= */
.stats { }

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

.stat-block {
    padding: 64px 20px;
    text-align: center;
}

.stat-block--pink   { background: var(--pink); }
.stat-block--orange { background: var(--orange); }
.stat-block--purple { background: var(--purple); }
.stat-block--navy   { background: var(--navy); }

.stat-block__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-block__label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
}

/* =============================================
   CTA BAND — updated for quote
   ============================================= */
.cta-band { background: var(--yellow); }

.cta-band__body {
    margin-top: 16px;
    color: rgba(13,13,26,0.65);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 580px;
}

/* =============================================
   TESTIMONIALS — featured card + quote mark
   ============================================= */
.testimonial-card--featured {
    background: var(--pink) !important;
    border-color: var(--pink) !important;
}

.testimonial-card__quote-mark {
    position: absolute;
    top: 8px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 7rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
}

/* =============================================
   RESPONSIVE — new components
   ============================================= */
@media (max-width: 1100px) {
    .experiences__grid { grid-template-columns: repeat(3, 1fr); }
    .why-us__grid       { grid-template-columns: repeat(2, 1fr); }
    .stats__blocks      { grid-template-columns: repeat(2, 1fr); }
    .site-nav__dropdown { min-width: 480px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .site-header { top: 0; }
    .hero { padding-top: 100px; }
    .experiences__grid  { grid-template-columns: 1fr 1fr; }
    .why-us__grid       { grid-template-columns: 1fr 1fr; }
    .stats__blocks      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
    .experiences__grid { grid-template-columns: 1fr; }
    .why-us__grid      { grid-template-columns: 1fr; }
    .stats__blocks     { grid-template-columns: 1fr 1fr; }
}
