/* ============================================
   MISSISSAUGA GAMING - site22-ca
   
   CSS ARCHITECTURE: SMACSS (Scalable and Modular Architecture)
   THEME: Maple Leaf Canada
   EFFECT: Neumorphism (soft 3D shadows, tactile design)
   TYPOGRAPHY: Playful (Quicksand + Open Sans)
   BUTTONS: 3D Effect
   ============================================ */

/* ============================================
   BASE - Reset & Typography
   ============================================ */

:root {
    /* Maple Leaf Canada Palette */
    --maple-red: #FF0000;
    --canada-white: #FFFFFF;
    --golden-maple: #FFD700;
    --forest-green: #228B22;
    --sky-blue: #0066CC;
    
    /* Semantic Colors */
    --bg-primary: #F5F5F5;
    --bg-secondary: #E8E8E8;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --border-color: #DDDDDD;
    
    /* Neumorphism Shadows */
    --shadow-light: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
    --shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
    --shadow-3d: 0 8px 0 var(--maple-red), 0 10px 20px rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Layout */
    --header-height: 70px;
    --max-width: 1200px;
    --border-radius: 20px;
    
    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-primary);
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--maple-red);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LAYOUT - Grid System & Structure
   ============================================ */

.l-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* Header */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--maple-red) 0%, #CC0000 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.l-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    width: 100%;
}

.l-header__logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--canada-white);
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
}

.l-header__logo-text {
    white-space: nowrap;
}

/* Navigation */
.l-nav {
    display: flex;
    align-items: center;
}

.l-nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    list-style: none;
}

.l-nav-menu__item {
    white-space: nowrap;
}

.l-nav-menu__link {
    color: var(--canada-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.l-nav-menu__link:hover,
.l-nav-menu__link.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--golden-maple);
}

/* Burger Menu */
.l-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1002;
}

.l-nav__burger-line {
    width: 25px;
    height: 3px;
    background: var(--canada-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.l-nav__burger.is-active .l-nav__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.l-nav__burger.is-active .l-nav__burger-line:nth-child(2) {
    opacity: 0;
}

.l-nav__burger.is-active .l-nav__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer */
.l-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1A1A1A 100%);
    color: var(--canada-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.l-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.l-footer__section h3,
.l-footer__section h4 {
    color: var(--golden-maple);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.l-footer__links {
    list-style: none;
}

.l-footer__links li {
    margin-bottom: var(--spacing-xs);
}

.l-footer__links a {
    color: var(--canada-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.l-footer__links a:hover {
    opacity: 1;
    color: var(--golden-maple);
    padding-left: 5px;
}

.l-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.l-footer__compliance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
    margin-top: var(--spacing-sm);
}

.l-footer__compliance-logo {
    height: 35px !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.l-footer__compliance-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.l-footer__help-text {
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    opacity: 0.8;
}

.l-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.l-footer__canadian {
    margin-top: var(--spacing-xs);
    color: var(--golden-maple);
}

/* ============================================
   MODULES - Reusable Components
   ============================================ */

/* Buttons (3D Effect) */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.m-btn--primary {
    background: var(--golden-maple);
    color: var(--text-dark);
    box-shadow: 0 6px 0 #CCA300, 0 8px 15px rgba(255, 215, 0, 0.4);
}

.m-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #CCA300, 0 11px 20px rgba(255, 215, 0, 0.5);
}

.m-btn--primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #CCA300, 0 3px 8px rgba(255, 215, 0, 0.3);
}

.m-btn--3d {
    box-shadow: var(--shadow-3d);
}

.m-btn--3d:hover {
    transform: translateY(-4px);
}

.m-btn--3d:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--maple-red), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.m-btn--outline {
    background: transparent;
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
    box-shadow: none;
}

.m-btn--outline:hover {
    background: var(--sky-blue);
    color: var(--canada-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.m-btn--secondary {
    background: var(--forest-green);
    color: var(--canada-white);
}

.m-btn--sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.m-btn--large {
    padding: 16px 36px;
    font-size: 1.125rem;
    border-radius: 16px;
}

/* Hero Section */
.m-hero-section {
    background: linear-gradient(135deg, var(--maple-red) 0%, #CC0000 50%, var(--golden-maple) 100%);
    color: var(--canada-white);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: var(--spacing-xl);
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.m-hero-section::before {
    content: '🍁';
    position: absolute;
    font-size: 20rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    pointer-events: none;
}

.m-hero-section__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.m-hero-section__title {
    color: var(--canada-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
}

.m-hero-section__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--golden-maple);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.m-hero-section__text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.m-hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.m-hero-section__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Section */
.m-section {
    padding: var(--spacing-xl) 0;
}

.m-section__title {
    text-align: center;
    color: var(--maple-red);
    margin-bottom: var(--spacing-md);
}

.m-section__subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

/* Benefits Grid */
.m-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.m-benefit-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.m-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.m-benefit-card__icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.m-benefit-card__title {
    color: var(--maple-red);
    margin-bottom: var(--spacing-sm);
}

.m-benefit-card__text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Games Grid */
.m-games-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.m-game-card {
    flex: 0 0 auto;
    width: clamp(300px, 30vw, 400px);
    max-width: 400px;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.m-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.m-game-card__image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--forest-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-game-card__overlay {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
}

.m-game-card__content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.m-game-card__title {
    color: var(--maple-red);
    margin-bottom: var(--spacing-sm);
}

.m-game-card__description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex: 1;
}

.m-game-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.m-game-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

.m-game-card__actions .m-btn {
    width: 100%;
    max-width: 250px;
}

/* Testimonials */
.m-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.m-testimonial-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--golden-maple);
}

.m-testimonial-card__rating {
    color: var(--golden-maple);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.m-testimonial-card__text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.m-testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.m-testimonial-card__author strong {
    color: var(--maple-red);
}

.m-testimonial-card__author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Accordion */
.m-faq-accordion {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.m-faq-item {
    background: var(--bg-primary);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.m-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--maple-red);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.m-faq-item__question:hover {
    background: rgba(255, 0, 0, 0.05);
}

.m-faq-item__icon {
    transition: transform 0.3s ease;
    color: var(--golden-maple);
}

.m-faq-item.is-active .m-faq-item__icon {
    transform: rotate(180deg);
}

.m-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.m-faq-item.is-active .m-faq-item__answer {
    max-height: 500px;
}

.m-faq-item__answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    line-height: 1.7;
}

/* Disclaimer Section */
.m-disclaimer-section {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
    color: var(--canada-white);
    padding: var(--spacing-xl) 0;
    border-top: 3px solid var(--golden-maple);
    border-bottom: 3px solid var(--golden-maple);
}

.m-disclaimer-section__content {
    text-align: center;
}

.m-disclaimer-section h3 {
    color: var(--canada-white);
    margin-bottom: var(--spacing-md);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.m-disclaimer-section p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.125rem;
}

.m-disclaimer-section__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin: var(--spacing-lg) 0;
}

.m-disclaimer-section__help {
    font-size: 1rem;
    margin-top: var(--spacing-lg);
}

.m-disclaimer-section__help a {
    color: var(--golden-maple);
    font-weight: 700;
    text-decoration: underline;
}

.m-disclaimer-section__help a:hover {
    color: var(--canada-white);
}

/* ============================================
   UI COMPONENTS - Badges, Tags, Modals
   ============================================ */

.ui-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ui-badge--free {
    background: var(--forest-green);
    color: var(--canada-white);
    animation: pulse 2s infinite;
}

.ui-badge--featured {
    background: var(--golden-maple);
    color: var(--text-dark);
}

.ui-badge--new {
    background: var(--sky-blue);
    color: var(--canada-white);
}

.ui-badge--large {
    padding: 10px 20px;
    font-size: 1rem;
}

.ui-badge--success {
    background: var(--forest-green);
    color: var(--canada-white);
}

.ui-badge--danger {
    background: var(--maple-red);
    color: var(--canada-white);
}

.ui-badge--info {
    background: var(--sky-blue);
    color: var(--canada-white);
}

.ui-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--sky-blue);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ui-age-restriction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--maple-red);
    color: var(--canada-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    border: 3px solid var(--golden-maple);
}

/* Modals */
.ui-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: var(--spacing-md);
}

.ui-modal.is-hidden {
    display: none;
}

.ui-modal__content {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ui-modal__header {
    padding: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.ui-modal__header h2 {
    color: var(--maple-red);
    margin: 0;
}

.ui-modal__body {
    padding: var(--spacing-lg);
    text-align: center;
}

.ui-modal__body p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.ui-modal__actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.ui-modal__warning {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Cookie Banner */
.ui-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1A1A1A 100%);
    color: var(--canada-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    border: 2px solid var(--golden-maple);
}

.ui-cookie-banner.is-hidden {
    display: none;
}

.ui-cookie-banner__content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.ui-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

.ui-cookie-banner__link {
    color: var(--golden-maple);
    font-size: 0.875rem;
    text-decoration: underline;
}

.ui-cookie-banner__link:hover {
    color: var(--canada-white);
}

/* ============================================
   STATE - Dynamic States
   ============================================ */

.is-active {
    /* Applied dynamically via JS */
}

.is-hidden {
    display: none !important;
}

.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE - Mobile Adaptations
   ============================================ */

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    .l-nav-menu {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--maple-red) 0%, #CC0000 100%);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        align-items: stretch;
    }
    
    .l-nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .l-nav-menu__item {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .l-nav-menu__item:last-child {
        border-bottom: none;
    }
    
    .l-nav-menu__link {
        display: block;
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .l-nav__burger {
        display: flex;
    }
    
    .m-hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: var(--spacing-lg);
    }
    
    .m-hero-section__actions {
        flex-direction: column;
    }
    
    .m-game-card {
        width: 100%;
        max-width: 400px;
    }
    
    .m-games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .ui-cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: none;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .m-benefits-grid,
    .m-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .l-footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .l-footer__compliance-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .l-header__logo-text {
        font-size: 1.125rem;
    }
    
    .ui-badge--large {
        padding: 8px 14px;
        font-size: 0.875rem;
    }
    
    .m-btn--large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Print Styles */
@media print {
    .l-header,
    .ui-modal,
    .ui-cookie-banner,
    .m-hero-section__actions,
    .l-nav__burger {
        display: none;
    }
    
    body {
        background: white;
    }
}

