/*
=================================
GRAIN DE BULLES - SOCIAL CASINO
CSS Architecture: SMACSS (Scalable and Modular Architecture for CSS)
Typography: Bold Display (Oswald + Raleway)
Color Palette: Canadian Adventure
Visual Effect: Pattern Backgrounds (geometric patterns)
=================================
*/

/* =================================
   BASE STYLES
   ================================= */
:root {
    /* Canadian Adventure Palette */
    --forest-green: #2d5016;
    --maple-red: #c1440e;
    --adventure-brown: #8b5a3c;
    --mountain-blue: #1976d2;
    --pine-green: #1b5e20;
    --sky-blue: #87ceeb;
    --earth-tan: #d4a574;
    --snow-white: #f5f5f5;
    
    /* Functional Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #f5f5f5;
    --background: #fafafa;
    --surface: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Header Height */
    --header-height: 70px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    /* Pattern Background - Geometric diagonal lines */
    background-image: 
        linear-gradient(45deg, transparent 48%, var(--border) 48%, var(--border) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--border) 48%, var(--border) 52%, transparent 52%);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--mountain-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--maple-red);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-green);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* =================================
   LAYOUT STYLES (l- prefix)
   ================================= */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.l-header {
    background: var(--surface);
    box-shadow: 0 2px 8px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

.l-hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%);
    color: var(--text-light);
    padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-sm) var(--spacing-xl);
    text-align: center;
    position: relative;
    /* Pattern overlay */
    background-image: 
        linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
}

.l-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
    position: relative;
}

.l-section--alt {
    background: var(--snow-white);
}

.l-page-header {
    background: linear-gradient(135deg, var(--mountain-blue) 0%, var(--sky-blue) 100%);
    color: var(--text-light);
    padding: calc(var(--header-height) + var(--spacing-lg)) var(--spacing-sm) var(--spacing-lg);
    text-align: center;
    /* Pattern overlay */
    background-image: 
        linear-gradient(135deg, var(--mountain-blue) 0%, var(--sky-blue) 100%),
        repeating-linear-gradient(60deg, transparent, transparent 15px, rgba(255,255,255,0.08) 15px, rgba(255,255,255,0.08) 30px);
}

.l-page-header__title {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.l-page-header__subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.l-disclaimer {
    background: #fff3cd;
    border-top: 3px solid var(--maple-red);
    border-bottom: 3px solid var(--maple-red);
    padding: var(--spacing-md) 0;
}

.l-footer {
    background: var(--forest-green);
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    /* Pattern overlay */
    background-image: 
        linear-gradient(to bottom, var(--forest-green), var(--pine-green)),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}

/* =================================
   MODULE STYLES (m- prefix)
   ================================= */

/* Header Module */
.m-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.m-logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Module */
.m-nav {
    display: none;
}

.m-nav__list {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.m-nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.m-nav__link:hover,
.m-nav__link.is-active {
    background: var(--maple-red);
    color: var(--text-light);
}

/* Burger Menu Module */
.m-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.m-burger__line {
    width: 30px;
    height: 3px;
    background: var(--forest-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.m-burger.is-active .m-burger__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.m-burger.is-active .m-burger__line:nth-child(2) {
    opacity: 0;
}

.m-burger.is-active .m-burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Module */
.m-hero {
    max-width: 800px;
    margin: 0 auto;
}

.m-hero__title {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.m-hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
}

.m-hero__note {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 500;
}

.m-hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Module */
.m-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.m-btn--primary {
    background: var(--maple-red);
    color: var(--text-light);
    border-color: var(--maple-red);
}

.m-btn--primary:hover {
    background: var(--adventure-brown);
    border-color: var(--adventure-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 68, 14, 0.3);
}

.m-btn--secondary {
    background: var(--text-secondary);
    color: var(--text-light);
    border-color: var(--text-secondary);
}

.m-btn--secondary:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
}

.m-btn--outline {
    background: var(--surface);
    color: var(--maple-red);
    border-color: var(--maple-red);
    font-weight: 700;
}

.m-btn--outline:hover {
    background: var(--maple-red);
    color: var(--text-light);
    border-color: var(--maple-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 68, 14, 0.3);
}

.m-btn--ghost {
    background: transparent;
    color: var(--mountain-blue);
    border-color: var(--mountain-blue);
}

.m-btn--ghost:hover {
    background: var(--mountain-blue);
    color: var(--text-light);
}

.m-btn--large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.m-btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Section Header Module */
.m-section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.m-section-header__title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.m-section-header__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Games Grid Module */
.m-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

/* Game Card Module */
.m-game-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.m-game-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.m-game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-game-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--maple-red);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-game-card__content {
    padding: var(--spacing-md);
}

.m-game-card__title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.m-game-card__description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.m-game-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.m-feature-tag {
    background: var(--snow-white);
    color: var(--forest-green);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.m-game-card__footer {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Benefits Grid Module */
.m-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* Benefit Card Module */
.m-benefit-card {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease;
    border: 2px solid var(--border);
}

.m-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--maple-red);
}

.m-benefit-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.m-benefit-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.m-benefit-card__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Articles Grid Module */
.m-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* Article Card Module */
.m-article-card {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--maple-red);
}

.m-article-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.m-article-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.m-article-card__category {
    background: var(--mountain-blue);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.m-article-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.m-article-card__excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.m-article-card__link {
    color: var(--maple-red);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.m-article-card__link:hover {
    color: var(--forest-green);
}

/* Section Footer Module */
.m-section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.m-section-footer .m-btn--outline {
    background: var(--maple-red);
    color: var(--text-light);
    border-color: var(--maple-red);
    font-weight: 700;
    padding: 14px 35px;
}

.m-section-footer .m-btn--outline:hover {
    background: var(--adventure-brown);
    border-color: var(--adventure-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 68, 14, 0.3);
}

/* Disclaimer Module */
.m-disclaimer {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 5px solid var(--maple-red);
}

.m-disclaimer__title {
    color: var(--maple-red);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.m-disclaimer__text {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer Module */
.m-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.m-footer__heading {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.m-footer__text {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.m-footer__company {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.m-footer__links {
    list-style: none;
}

.m-footer__links li {
    margin-bottom: 8px;
}

.m-footer__links a {
    color: var(--text-light);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.m-footer__links a:hover {
    opacity: 1;
    color: var(--earth-tan);
}

.m-footer__logos {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.m-footer__logos a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.m-footer__logos a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.m-footer__logo {
    height: 50px;
    width: auto;
    background: var(--surface);
    padding: 8px;
    border-radius: 6px;
    display: block;
}

.m-footer__bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    opacity: 0.9;
}

/* Modal Module */
.m-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: var(--spacing-sm);
}

.m-modal__content {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.m-modal__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-green);
}

.m-modal__text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.m-modal__buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* Cookie Consent Module */
.m-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest-green);
    color: var(--text-light);
    padding: var(--spacing-md);
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.m-cookie.is-active {
    transform: translateY(0);
}

.m-cookie__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.m-cookie__text {
    flex: 1;
    min-width: 250px;
}

/* Content Wrapper Module */
.m-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.m-content {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    line-height: 1.8;
}

.m-content h2 {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 3px solid var(--maple-red);
}

.m-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.m-content h3 {
    margin-top: var(--spacing-md);
    color: var(--mountain-blue);
}

.m-content p {
    margin-bottom: var(--spacing-sm);
}

.m-list {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
    line-height: 1.8;
}

.m-list li {
    margin-bottom: 8px;
}

.m-info-box,
.m-highlight-box {
    background: var(--snow-white);
    border-left: 4px solid var(--mountain-blue);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 6px;
}

.m-highlight-box {
    border-left-color: var(--maple-red);
    background: #fff3cd;
}

.m-cta-box {
    background: linear-gradient(135deg, var(--mountain-blue), var(--sky-blue));
    color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.m-cta-box h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.m-cta-box p {
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
}

.m-help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.m-help-card {
    background: var(--snow-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 2px solid var(--maple-red);
}

.m-help-card h3 {
    color: var(--maple-red);
    margin-bottom: var(--spacing-sm);
}

.m-helpline {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--maple-red);
    margin: var(--spacing-sm) 0;
}

/* Tabs Module */
.m-tabs {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    overflow: hidden;
}

.m-tabs__header {
    display: flex;
    border-bottom: 2px solid var(--border);
    background: var(--snow-white);
}

.m-tabs__button {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-tabs__button.is-active {
    background: var(--surface);
    color: var(--maple-red);
    border-bottom: 3px solid var(--maple-red);
}

.m-tabs__button:hover {
    background: var(--surface);
    color: var(--forest-green);
}

.m-tabs__content {
    display: none;
    padding: var(--spacing-lg);
}

.m-tabs__content.is-active {
    display: block;
}

.m-tab-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Form Module */
.m-form {
    max-width: 600px;
    margin: var(--spacing-lg) 0;
}

.m-form__group {
    margin-bottom: var(--spacing-md);
}

.m-form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.m-form__input,
.m-form__textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.m-form__input:focus,
.m-form__textarea:focus {
    outline: none;
    border-color: var(--mountain-blue);
}

.m-form__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.m-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.m-contact-info {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border);
}

/* Guides Grid Module */
.m-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

/* Guide Card Module */
.m-guide-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease;
}

.m-guide-card:hover {
    transform: translateY(-6px);
}

.m-guide-card__image {
    height: 200px;
    overflow: hidden;
}

.m-guide-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-guide-card__placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--mountain-blue), var(--sky-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-guide-card__icon {
    font-size: 5rem;
}

.m-guide-card__content {
    padding: var(--spacing-md);
}

.m-guide-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.m-guide-card__description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.m-guide-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

/* Reviews Grid Module */
.m-reviews-grid {
    display: grid;
    gap: var(--spacing-xl);
}

/* Review Card Module */
.m-review-card {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    overflow: hidden;
}

.m-review-card__header {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--snow-white);
    flex-wrap: wrap;
}

.m-review-card__image {
    flex: 0 0 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.m-review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-review-card__info {
    flex: 1;
    min-width: 250px;
}

.m-review-card__title {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.m-review-card__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-sm);
}

.m-stars {
    color: #ffa500;
    font-size: 1.5rem;
}

.m-rating-text {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.m-review-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.m-review-card__content {
    padding: var(--spacing-lg);
    line-height: 1.8;
}

.m-review-card__content h4 {
    color: var(--mountain-blue);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.m-review-card__content h4:first-child {
    margin-top: 0;
}

.m-review-card__footer {
    display: flex;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
}

/* =================================
   STATE STYLES (is- prefix)
   ================================= */
.is-hidden {
    display: none !important;
}

.is-active {
    display: block;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (min-width: 768px) {
    .m-nav {
        display: block;
    }
    
    .m-burger {
        display: none;
    }
    
    .m-hero__title {
        font-size: 4rem;
    }
    
    .l-page-header__title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .m-nav {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--surface);
        box-shadow: 0 4px 12px var(--shadow);
        padding: var(--spacing-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .m-nav.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .m-nav__list {
        flex-direction: column;
        gap: 0;
    }
    
    .m-nav__link {
        display: block;
        padding: var(--spacing-sm);
        border-radius: 6px;
    }
    
    .m-hero__title {
        font-size: 2.5rem;
    }
    
    .m-hero__subtitle {
        font-size: 1.2rem;
    }
    
    .m-hero__buttons {
        flex-direction: column;
    }
    
    .m-game-card__footer,
    .m-modal__buttons {
        flex-direction: column;
    }
    
    .m-btn {
        width: 100%;
    }
    
    .m-cookie__content {
        flex-direction: column;
        text-align: center;
    }
    
    .m-review-card__header {
        flex-direction: column;
    }
    
    .m-review-card__image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
}

