/* ============================================
   PROJET: site25-de (dellangelo.de)
   
   CSS ARCHITECTURE: Prefix Style (c-, l-, m-, u-)
   PALETTE: German Precision (black, red, gold, white, gray, blue)
   EFFECT: Pattern Backgrounds (geometric patterns)
   TYPOGRAPHY: Bold Display (Oswald + Raleway)
   BUTTONS: Split Color (divided fill on hover)
   ============================================ */

/* ============================================
   CSS VARIABLES - German Precision Theme
   ============================================ */
:root {
    /* Primary Palette - German Precision */
    --precision-black: #1a1a1a;
    --editorial-red: #c41e3a;
    --classic-gold: #d4af37;
    --paper-white: #fafafa;
    --ink-gray: #4a4a4a;
    --accent-blue: #2c3e50;
    
    /* Extended Palette */
    --deep-black: #0d0d0d;
    --warm-white: #f5f5f5;
    --steel-gray: #6c6c6c;
    --crimson-red: #a0152e;
    --amber-gold: #ffc107;
    --navy-blue: #1e3a5f;
    
    /* Functional Colors */
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --info-blue: #17a2b8;
    
    /* Typography */
    --font-heading: 'Oswald', 'Arial Black', sans-serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    /* Layout */
    --header-height: 70px;
    --max-width: 1200px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Shadows */
    --shadow-subtle: 0 2px 4px rgba(26, 26, 26, 0.1);
    --shadow-medium: 0 4px 8px rgba(26, 26, 26, 0.15);
    --shadow-strong: 0 8px 16px rgba(26, 26, 26, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   BASE - Reset & Foundation
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--precision-black);
    background-color: var(--paper-white);
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ============================================
   LAYOUT (l-) - Structural Layout Classes
   ============================================ */
.l-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.l-container--narrow {
    max-width: 800px;
}

.l-container--wide {
    max-width: 1400px;
}

/* ============================================
   COMPONENTS (c-) - Reusable Components
   ============================================ */

/* Header Component */
.c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--precision-black);
    color: var(--paper-white);
    z-index: 1000;
    border-bottom: 3px solid var(--editorial-red);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(196, 30, 58, 0.05) 35px, rgba(196, 30, 58, 0.05) 70px);
}

.c-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-lg);
}

/* Logo Component */
.c-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.c-logo__text {
    color: var(--paper-white);
}

.c-logo__text span {
    color: var(--editorial-red);
}

.c-logo__badge {
    background: var(--editorial-red);
    color: var(--paper-white);
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Component */
.c-nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.c-nav__link {
    color: var(--paper-white);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    transition: var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.c-nav__link:hover,
.c-nav__link.u-active {
    color: var(--editorial-red);
}

.c-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--editorial-red);
    transition: var(--transition-medium);
}

.c-nav__link:hover::after,
.c-nav__link.u-active::after {
    width: 100%;
}

/* Burger Menu */
.c-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.c-burger span {
    width: 25px;
    height: 3px;
    background: var(--paper-white);
    transition: var(--transition-fast);
}

/* Hero Component */
.c-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: var(--space-xxl);
    min-height: calc(100vh - var(--header-height));
    background: var(--precision-black);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(196, 30, 58, 0.03) 50px, rgba(196, 30, 58, 0.03) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(196, 30, 58, 0.03) 50px, rgba(196, 30, 58, 0.03) 100px);
    color: var(--paper-white);
    text-align: center;
    background-attachment: scroll;
}

.c-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.c-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.c-hero__highlight {
    display: block;
    color: var(--editorial-red);
    margin-top: var(--space-sm);
}

.c-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-xl);
    color: var(--warm-white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.c-hero__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.c-hero__badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Header */
.c-section__header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.c-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    color: var(--precision-black);
}

.c-section__subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--ink-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Games Section */
.c-games {
    padding: var(--space-xxl) 0;
    background: var(--paper-white);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(26, 26, 26, 0.02) 20px, rgba(26, 26, 26, 0.02) 40px);
}

/* Benefits Section */
.c-benefits {
    padding: var(--space-xxl) 0;
    background: var(--precision-black);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(196, 30, 58, 0.05) 30px, rgba(196, 30, 58, 0.05) 60px);
    color: var(--paper-white);
}

.c-benefits .c-section__title {
    color: var(--paper-white);
}

.c-benefits .c-section__subtitle {
    color: var(--warm-white);
}

/* FAQ Section */
.c-faq {
    padding: var(--space-xxl) 0;
    background: var(--paper-white);
    background-image: 
        repeating-linear-gradient(135deg, transparent, transparent 25px, rgba(26, 26, 26, 0.02) 25px, rgba(26, 26, 26, 0.02) 50px);
}

/* Disclaimer Section */
.c-disclaimer {
    padding: var(--space-xxl) 0;
    background: var(--editorial-red);
    color: var(--paper-white);
    text-align: center;
}

.c-disclaimer__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    letter-spacing: 2px;
}

.c-disclaimer__text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: var(--space-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.c-disclaimer__badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

.c-disclaimer__help {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(250, 250, 250, 0.3);
}

.c-disclaimer__help a {
    color: var(--classic-gold);
    font-weight: 600;
}

/* Footer Component */
.c-footer {
    background: var(--precision-black);
    color: var(--paper-white);
    padding: var(--space-xxl) 0 var(--space-lg);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(196, 30, 58, 0.05) 40px, rgba(196, 30, 58, 0.05) 80px);
}

.c-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.c-footer__section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--editorial-red);
    letter-spacing: 1px;
}

.c-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.c-footer__list a {
    color: var(--warm-white);
    transition: var(--transition-fast);
}

.c-footer__list a:hover {
    color: var(--editorial-red);
    padding-left: var(--space-sm);
}

.c-footer__compliance {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
}

.c-footer__compliance-row {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}

.c-footer__compliance-row--top {
    margin-bottom: var(--space-sm);
}

.c-footer__compliance-row--bottom {
    margin-top: var(--space-sm);
}

.c-footer__age-badge {
    background: var(--editorial-red);
    color: var(--paper-white);
    padding: var(--space-sm) var(--space-md);
    font-weight: 700;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid rgba(196, 30, 58, 0.8);
}

.c-footer__age-badge sup {
    font-size: 0.7em;
    vertical-align: super;
}

.c-footer__logos {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.c-footer__logo {
    height: 35px !important;
    width: auto !important;
    background: var(--paper-white);
    padding: var(--space-xs);
    border-radius: var(--border-radius);
    opacity: 0.9;
    transition: var(--transition-medium);
}

.c-footer__logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Compliance Buttons */
.c-footer__compliance-buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
    align-items: center;
    flex-wrap: wrap;
}

.c-footer__compliance-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f3e8;
    border: 2px solid var(--precision-black);
    border-radius: var(--border-radius);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    transition: var(--transition-medium);
    min-width: 150px;
    gap: var(--space-sm);
}

.c-footer__compliance-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--editorial-red);
}

.c-footer__compliance-button--check {
    color: var(--precision-black);
}

.c-footer__compliance-button--gordon {
    color: var(--editorial-red);
    flex-direction: row;
}

.c-footer__compliance-button--gordon .c-footer__compliance-button__text {
    flex: 1;
}

.c-footer__compliance-button__text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-align: left;
}

.c-footer__compliance-button__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.c-footer__compliance-button__arrow {
    width: 24px;
    height: 24px;
    background: rgba(44, 62, 80, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-footer__compliance-button__arrow::after {
    content: '→';
    color: var(--precision-black);
    font-weight: 700;
    font-size: 1rem;
}

/* Gordon Moody flame icon */
.c-footer__gordon-icon {
    width: 18px;
    height: 20px;
    background: var(--editorial-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    margin-right: var(--space-sm);
    flex-shrink: 0;
    box-shadow: 0 0 4px rgba(196, 30, 58, 0.3);
}

.c-footer__gordon-icon::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--paper-white);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.c-footer__copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 2px solid rgba(250, 250, 250, 0.1);
    color: var(--warm-white);
    font-size: 0.9rem;
}

/* Modal Component */
.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--space-lg);
}

.c-modal.u-hidden {
    display: none;
}

.c-modal__content {
    background: var(--paper-white);
    border: 3px solid var(--editorial-red);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-strong);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(196, 30, 58, 0.03) 10px, rgba(196, 30, 58, 0.03) 20px);
}

.c-modal__header {
    background: var(--precision-black);
    color: var(--paper-white);
    padding: var(--space-lg);
    border-bottom: 3px solid var(--editorial-red);
}

.c-modal__header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-modal__body {
    padding: var(--space-lg);
}

.c-modal__buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.c-modal__warning {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: var(--ink-gray);
    font-style: italic;
}

/* Cookie Consent */
.c-cookie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: var(--precision-black);
    border: 2px solid var(--editorial-red);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    z-index: 9999;
    box-shadow: var(--shadow-strong);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(196, 30, 58, 0.05) 8px, rgba(196, 30, 58, 0.05) 16px);
}

.c-cookie.u-hidden {
    display: none;
}

.c-cookie p {
    color: var(--paper-white);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.c-cookie a {
    color: var(--classic-gold);
    font-weight: 600;
}

.c-cookie__buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ============================================
   MODULES (m-) - Feature-Specific Modules
   ============================================ */

/* Button Module - Split Color */
.m-btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--editorial-red) 50%, var(--classic-gold) 50%);
    background-size: 200% 100%;
    background-position: right;
    color: var(--paper-white);
}

.m-btn:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.m-btn--primary {
    background: linear-gradient(to right, var(--editorial-red) 50%, var(--crimson-red) 50%);
    background-size: 200% 100%;
    background-position: right;
}

.m-btn--secondary {
    background: linear-gradient(to right, var(--precision-black) 50%, var(--ink-gray) 50%);
    background-size: 200% 100%;
    background-position: right;
}

.m-btn--large {
    padding: var(--space-lg) var(--space-xxl);
    font-size: 1.1rem;
}

.m-btn--small {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
}

/* Badge Module */
.m-badge {
    display: inline-block;
    background: var(--editorial-red);
    color: var(--paper-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--precision-black);
}

/* Games Grid Module */
.m-games-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Game Card Module */
.m-game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    min-width: 280px;
    background: var(--paper-white);
    border: 3px solid var(--precision-black);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(26, 26, 26, 0.02) 5px, rgba(26, 26, 26, 0.02) 10px);
}

.m-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--editorial-red);
}

.m-game-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.m-game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--precision-black);
}

.m-game-card__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--precision-black), var(--editorial-red));
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--paper-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding: var(--space-md);
}

.m-game-card__image-placeholder.u-visible {
    display: flex;
}

.m-game-card__content {
    padding: var(--space-lg);
}

.m-game-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--precision-black);
    letter-spacing: 1px;
}

.m-game-card__description {
    color: var(--ink-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.m-game-card__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--classic-gold);
    font-weight: 600;
}

.m-game-card__button {
    width: 100%;
}

/* Benefits Grid Module */
.m-benefits-grid {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Module */
.m-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--paper-white);
    border: 3px solid var(--editorial-red);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(196, 30, 58, 0.03) 15px, rgba(196, 30, 58, 0.03) 30px);
}

.m-card__icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.m-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--precision-black);
    letter-spacing: 1px;
}

.m-card__text {
    color: var(--ink-gray);
    line-height: 1.6;
}

/* FAQ Module */
.m-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq-item {
    margin-bottom: var(--space-md);
    background: var(--paper-white);
    border: 2px solid var(--precision-black);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.m-faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: var(--precision-black);
    color: var(--paper-white);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.m-faq-question:hover {
    background: var(--editorial-red);
}

.m-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

.m-faq-item.active .m-faq-icon {
    transform: rotate(45deg);
}

.m-faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.m-faq-item.active .m-faq-answer {
    padding: var(--space-lg);
    max-height: 500px;
}

.m-faq-answer p {
    color: var(--ink-gray);
    line-height: 1.6;
}

/* ============================================
   UTILITIES (u-) - Utility Classes
   ============================================ */
.u-hidden {
    display: none !important;
}

.u-visible {
    display: flex !important;
}

.u-text-center {
    text-align: center;
}

.u-text-left {
    text-align: left;
}

.u-text-right {
    text-align: right;
}

.u-active {
    color: var(--editorial-red) !important;
}

.no-scroll {
    overflow: hidden !important;
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .c-burger {
        display: flex;
    }
    
    .c-nav {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--precision-black);
        border-top: 3px solid var(--editorial-red);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-medium);
    }
    
    .c-nav.active {
        max-height: 500px;
    }
    
    .c-nav__menu {
        flex-direction: column;
        padding: var(--space-lg);
        gap: 0;
    }
    
    .c-nav__link {
        display: block;
        padding: var(--space-md);
        border-bottom: 1px solid rgba(250, 250, 250, 0.1);
        white-space: normal;
        text-align: left;
    }
    
    .c-nav__link::after {
        left: 0;
    }
    
    .c-hero {
        padding-top: calc(var(--header-height) + 40px);
        min-height: calc(100vh - var(--header-height));
    }
    
    .c-hero__buttons {
        flex-direction: column;
    }
    
    .c-hero__badges {
        flex-direction: column;
        align-items: center;
    }
    
    .m-games-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .m-game-card {
        width: 100%;
        max-width: 400px;
    }
    
    .m-benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .m-card {
        max-width: 100%;
    }
    
    .c-footer__content {
        grid-template-columns: 1fr;
    }
    
    .c-cookie {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 600px) {
    .c-hero__title {
        font-size: 2rem;
    }
    
    .c-section__title {
        font-size: 1.75rem;
    }
    
    .m-btn {
        width: 100%;
    }
}
