/* ============================================
   AACHTOPF.DE - СОЦИАЛЬНОЕ КАЗИНО (ГЕРМАНИЯ)
   
   CSS АРХИТЕКТУРА: OOCSS (Object-Oriented CSS)
   ПАЛИТРА: German Industrial (steel-gray, bavarian-blue, forest-green, amber-gold)
   ЭФФЕКТ: Brutalism (жёсткие тени, контрастные рамки, смелые формы)
   ТИПОГРАФИКА: Bold Display (Oswald + Raleway)
   КНОПКИ: 3D Effect с жёсткими тенями
   
   Компания: DRAGON PERFORMANCE LTD
   ============================================ */

/* === ПЕРЕМЕННЫЕ (German Industrial Theme) === */
:root {
    /* German Industrial Palette */
    --steel-gray: #4a5568;
    --bavarian-blue: #0a3d62;
    --forest-green: #1e5128;
    --amber-gold: #f59e0b;
    --industrial-black: #1a1a2e;
    --concrete-light: #e2e8f0;
    --rust-red: #c0392b;
    --chrome-silver: #bdc3c7;
    
    /* Brutalist Shadows */
    --brutal-shadow: 8px 8px 0 var(--industrial-black);
    --brutal-shadow-hover: 12px 12px 0 var(--industrial-black);
    --brutal-shadow-active: 4px 4px 0 var(--industrial-black);
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Header */
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--concrete-light);
    color: var(--industrial-black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* === OOCSS OBJECTS === */

/* Object: Media (image + content) */
.media {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.media__img {
    flex-shrink: 0;
}

.media__body {
    flex: 1;
}

/* Object: Grid */
.grid {
    display: grid;
    gap: var(--space-md);
}

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

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

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

/* Object: Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

/* Object: Card (OOCSS base) */
.card {
    background: white;
    border: 4px solid var(--industrial-black);
    box-shadow: var(--brutal-shadow);
    padding: var(--space-md);
    transition: all 0.2s ease;
    color: var(--industrial-black);
}

.card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--brutal-shadow-hover);
}

/* Object: Button (OOCSS base) */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border: 4px solid var(--industrial-black);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--brutal-shadow);
    text-align: center;
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--brutal-shadow-hover);
}

.btn:active {
    transform: translate(4px, 4px);
    box-shadow: var(--brutal-shadow-active);
}

/* Skins: Button variants */
.btn--primary {
    background: var(--amber-gold);
    color: var(--industrial-black);
}

.btn--secondary {
    background: var(--bavarian-blue);
    color: white;
}

.btn--success {
    background: var(--forest-green);
    color: white;
}

.btn--danger {
    background: var(--rust-red);
    color: white;
}

/* Object: Badge */
.badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border: 2px solid var(--industrial-black);
    background: var(--amber-gold);
    color: var(--industrial-black);
}

.badge--free {
    background: var(--forest-green);
    color: white;
}

.badge--warning {
    background: var(--rust-red);
    color: white;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--industrial-black);
    border-bottom: 4px solid var(--amber-gold);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.site-logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-logo__badge {
    background: var(--forest-green);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border: 2px solid white;
}

/* Navigation */
.nav-main {
    display: flex;
    align-items: center;
}

.nav-main__list {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
}

.nav-main__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--concrete-light);
    text-decoration: none;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-main__link:hover {
    color: var(--amber-gold);
    border-color: var(--amber-gold);
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--amber-gold);
    cursor: pointer;
    z-index: 1600;
}

.burger__line {
    width: 25px;
    height: 3px;
    background: var(--amber-gold);
    transition: all 0.3s ease;
}

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

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

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

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--bavarian-blue) 0%, var(--industrial-black) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.02) 50px,
            rgba(255,255,255,0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.02) 50px,
            rgba(255,255,255,0.02) 100px
        );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 4px 4px 0 var(--industrial-black);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--concrete-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero__badges {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

/* === SECTIONS === */
.section {
    padding: var(--space-xl) 0;
}

.section--dark {
    background: var(--industrial-black);
    color: white;
}

.section--gray {
    background: var(--steel-gray);
    color: white;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: var(--amber-gold);
    margin: var(--space-sm) auto 0;
}

.section--dark .section__title::after,
.section--gray .section__title::after {
    background: var(--amber-gold);
}

/* === BENEFITS SECTION === */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.benefit-card {
    flex: 0 0 auto;
    width: 300px;
    max-width: 100%;
    text-align: center;
}

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

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.benefit-card__text {
    font-size: 0.95rem;
    color: var(--steel-gray);
}

/* === GAMES SECTION === */
.games-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    text-align: center;
    position: relative;
}

.game-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid var(--industrial-black);
}

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

.game-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.game-card__rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.game-card__star {
    color: var(--amber-gold);
    font-size: 1.25rem;
}

.game-card__desc {
    font-size: 0.9rem;
    color: var(--steel-gray);
    margin-bottom: var(--space-md);
}

/* === FAQ SECTION === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 4px solid var(--industrial-black);
    box-shadow: var(--brutal-shadow);
    margin-bottom: var(--space-md);
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--concrete-light);
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-item__question:hover {
    background: var(--chrome-silver);
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--amber-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-item__answer {
    padding: var(--space-md);
    max-height: 500px;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    max-width: 100%;
    position: relative;
    color: var(--industrial-black);
}

.testimonial-card__quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.testimonial-card__author {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-card__rating {
    color: var(--amber-gold);
    margin-top: var(--space-xs);
}

/* === LEADERBOARD === */
.leaderboard {
    max-width: 600px;
    margin: 0 auto;
}

.leaderboard__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
}

.leaderboard__rank {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-gold);
    min-width: 50px;
    text-align: center;
}

.leaderboard__name {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.leaderboard__score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
}

/* === DISCLAIMER === */
.disclaimer {
    background: var(--rust-red);
    color: white;
    padding: var(--space-lg) 0;
    border-top: 6px solid var(--industrial-black);
    border-bottom: 6px solid var(--industrial-black);
}

.disclaimer__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: var(--space-md);
}

.disclaimer__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer__badges {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.disclaimer__badge {
    background: white;
    color: var(--industrial-black);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: 3px solid var(--industrial-black);
}

/* === FOOTER === */
.site-footer {
    background: var(--industrial-black);
    color: white;
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--amber-gold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 3px solid var(--amber-gold);
}

.footer-col__list {
    list-style: none;
}

.footer-col__link {
    display: block;
    color: var(--concrete-light);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col__link:hover {
    color: var(--amber-gold);
}

.footer-col__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--chrome-silver);
}

.compliance-logos {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
}

.compliance-logo {
    height: 40px;
    width: auto;
    background: white;
    padding: 8px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.compliance-logo:hover {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 2px solid var(--steel-gray);
}

.footer-bottom__text {
    font-size: 0.85rem;
    color: var(--chrome-silver);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--rust-red);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    border: 3px solid white;
    border-radius: 50%;
    margin-left: var(--space-sm);
}

/* === MODALS === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.modal.active {
    display: flex;
}

.modal__content {
    background: white;
    border: 6px solid var(--industrial-black);
    box-shadow: 12px 12px 0 var(--industrial-black);
    max-width: 500px;
    width: 100%;
    padding: var(--space-xl);
    text-align: center;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.modal__text {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.modal__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === COOKIE BANNER === */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border: 4px solid var(--industrial-black);
    box-shadow: var(--brutal-shadow);
    padding: var(--space-md);
    z-index: 9999;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.cookie-banner__text {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.cookie-banner__buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-banner__link {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--bavarian-blue);
}

/* === FORMS === */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 3px solid var(--industrial-black);
    background: white;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-gold);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

/* === BREADCRUMBS === */
.breadcrumbs {
    padding: var(--space-sm) 0;
    background: var(--concrete-light);
    border-bottom: 2px solid var(--industrial-black);
}

.breadcrumbs__list {
    display: flex;
    gap: var(--space-sm);
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumbs__link {
    color: var(--bavarian-blue);
    text-decoration: none;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__separator {
    color: var(--steel-gray);
}

.breadcrumbs__current {
    color: var(--steel-gray);
}

/* === ARTICLE === */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.article__header {
    margin-bottom: var(--space-xl);
}

.article__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.article__meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--steel-gray);
}

.article__content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: var(--space-lg) 0 var(--space-md);
}

.article__content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: var(--space-md) 0 var(--space-sm);
}

.article__content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.article__content ul,
.article__content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.article__content li {
    margin-bottom: var(--space-xs);
}

/* === PAGE HEADER === */
.page-header {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    background: var(--bavarian-blue);
    text-align: center;
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 var(--industrial-black);
}

.page-header__subtitle {
    color: var(--concrete-light);
    margin-top: var(--space-sm);
    font-size: 1.1rem;
}

/* === TABS === */
.tabs {
    margin-bottom: var(--space-lg);
}

.tabs__list {
    display: flex;
    gap: var(--space-xs);
    list-style: none;
    border-bottom: 4px solid var(--industrial-black);
}

.tabs__button {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    background: var(--concrete-light);
    border: 4px solid var(--industrial-black);
    border-bottom: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.tabs__button:hover {
    background: var(--chrome-silver);
}

.tabs__button.active {
    background: var(--amber-gold);
}

.tabs__panel {
    display: none;
    padding: var(--space-lg);
    background: white;
    border: 4px solid var(--industrial-black);
    border-top: none;
}

.tabs__panel.active {
    display: block;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .burger {
        display: flex;
        justify-self: end;
    }
    
    .nav-main {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--industrial-black);
        padding: var(--space-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1500;
        border-bottom: 4px solid var(--amber-gold);
    }
    
    .nav-main.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-main__list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-main__link {
        display: block;
        padding: var(--space-sm);
        border-bottom: 1px solid var(--steel-gray);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + var(--space-lg));
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .games-grid,
    .benefits-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .game-card,
    .benefit-card,
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .modal__content {
        padding: var(--space-lg);
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .site-logo__text {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .card {
        padding: var(--space-sm);
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
