/* ========================================
   MARTIN CASINO DEUTSCHLAND - STYLES
   ======================================== */

/* Сброс базовых стилей и переменные */
:root {
    --primary-purple: #6B21A8;
    --deep-purple: #4C1D95;
    --dark-purple: #2E1065;
    --accent-orange: #F97316;
    --bright-orange: #EA580C;
    --accent-pink: #DB2777;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY - Уникальные стили для элементов контента
   ======================================== */

/* H1 - Главные заголовки */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* H2 - Подзаголовки секций */
h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-pink));
    border-radius: 2px;
}

/* H3 - Подзаголовки внутри блоков */
h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

/* P - Параграфы текста */
p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0;
}

/* LI - Элементы списков */
li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 0.5rem;
    top: 0.5em;
}

/* UL - Базовые списки */
ul {
    margin-bottom: 1.5rem;
    list-style: none;
}

/* A - Ссылки */
a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-orange);
}

/* TABLE - Таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

thead {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    color: var(--white);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
    color: var(--light-text);
}

tbody tr {
    transition: var(--transition);
}

tbody tr:hover {
    background: var(--light-bg);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* BLOCKQUOTE - Цитаты */
blockquote {
    border-left: 4px solid var(--accent-orange);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--light-text);
}

/* CODE - Код */
code {
    background: var(--dark-purple);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
}

/* HR - Горизонтальные линии */
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

/* STRONG - Жирный текст */
strong {
    font-weight: 600;
    color: var(--dark-text);
}

/* EM - Курсив */
em {
    font-style: italic;
    color: var(--primary-purple);
}

/* ========================================
   BUTTONS - Кнопки
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-pink), #BE185D);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(219, 39, 119, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--deep-purple);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--accent-orange);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-purple));
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: var(--white);
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--dark-purple);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
}

.carousel-slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.carousel-slide-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 20;
}

.carousel-arrow:hover {
    background: var(--accent-orange);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* ========================================
   GAME SCROLL SECTIONS
   ======================================== */

.game-section {
    padding: 2rem 0;
    background: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title h2 {
    margin-bottom: 0;
}

.section-title h2::after {
    display: none;
}

.section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.view-all-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--accent-orange);
    gap: 0.5rem;
}

.game-scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.game-scroll-container::-webkit-scrollbar {
    display: none;
}

.game-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-image .placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 33, 168, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.game-card-info {
    padding: 1rem;
}

.game-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    font-size: 0.8125rem;
    color: var(--light-text);
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

/* ========================================
   AUTHOR BLOCK
   ======================================== */

.author-section {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.author-block {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    color: var(--white);
}

.author-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.author-content h2::after {
    background: var(--accent-orange);
}

.author-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.author-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: linear-gradient(135deg, var(--dark-purple), var(--deep-purple));
    color: var(--white);
    padding-top: 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row:last-child {
    border-bottom: none;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
    margin-top: 0.5rem;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.provider-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.provider-logo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.provider-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.regulator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.regulator-logo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.regulator-logo:hover {
    background: rgba(255, 255, 255, 0.2);
}

.regulator-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.footer-links li::before {
    display: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
}

.disclaimer-box h4 {
    color: var(--accent-orange);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.responsible-gaming {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.responsible-gaming span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .provider-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 0.75rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    /* Hero Carousel */
    .hero-carousel {
        height: 300px;
    }

    .carousel-slide-content h2 {
        font-size: 1.5rem;
    }

    .carousel-slide-content p {
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    /* Game Cards */
    .game-card {
        flex: 0 0 160px;
    }

    .game-card-image {
        height: 160px;
    }

    /* Author Block */
    .author-block {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .author-image {
        margin: 0 auto;
        width: 120px;
        height: 120px;
    }

    /* Footer */
    .footer-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .provider-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .regulator-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Content */
    .content-block {
        padding: 1.5rem;
    }

    /* Table Responsive */
    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 250px;
    }

    .carousel-slide-content {
        padding: 1rem;
    }

    .carousel-slide-content h2 {
        font-size: 1.25rem;
    }

    .game-section {
        padding: 1.5rem 0;
    }

    .section-header {
        padding: 0 0.75rem;
    }

    .game-scroll-container {
        padding: 0.5rem 0.75rem 1rem;
    }

    .game-card {
        flex: 0 0 140px;
    }

    .game-card-image {
        height: 140px;
    }

    .game-card-info {
        padding: 0.75rem;
    }

    .game-card-title {
        font-size: 0.875rem;
    }

    .author-section,
    .content-section {
        padding: 2rem 0.75rem;
    }

    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-actions .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.game-card {
    animation: fadeInUp 0.5s ease forwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.15s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.25s; }
.game-card:nth-child(5) { animation-delay: 0.3s; }
.game-card:nth-child(6) { animation-delay: 0.35s; }

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}
