/* === Gamoking - MafiaCreator-inspired Modern Theme === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Roboto+Condensed:wght@400;500;600;700&display=swap');

:root {
    --dark: #1e1e24;
    --dark-medium: #2a2a32;
    --dark-light: #36363f;
    --dark-header: #1a1a22;

    --orange: #f47920;
    --orange-dark: #d4651a;
    --orange-light: #ff9a4a;
    --orange-glow: rgba(244,121,32,0.15);

    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-bg: #f0f0f0;
    --border: #e0e0e0;
    --border-dark: #d0d0d0;

    --text: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-light: rgba(255,255,255,0.85);
    --text-light-muted: rgba(255,255,255,0.55);

    --success: #27ae60;
    --danger: #e74c3c;
    --info: #3498db;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 2px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 6px 24px rgba(0,0,0,0.15);

    --radius: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--text);
    line-height: 1.25;
    font-weight: 600;
}

img { max-width: 100%; }
::selection { background: var(--orange); color: #fff; }

/* === Container === */
.container { max-width: 1600px; margin: 0 auto; padding: 0 24px; }

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-orange {
    background: linear-gradient(180deg, var(--orange-light), var(--orange));
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 2px 4px rgba(244,121,32,0.3);
}
.btn-orange:hover {
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    box-shadow: 0 3px 8px rgba(244,121,32,0.4);
    transform: translateY(-1px);
    color: #fff;
}
.btn-dark {
    background: linear-gradient(180deg, var(--dark-light), var(--dark));
    color: var(--text-light);
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.btn-dark:hover {
    background: linear-gradient(180deg, #444, var(--dark-light));
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-dark);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255,255,255,0.05);
}
.btn-white {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover { border-color: var(--orange); color: var(--orange); }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 12px 32px; font-size: 0.9rem; }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; }
.btn.disabled { opacity: 0.4; pointer-events: none; }

/* === Alerts === */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 14px; font-size: 0.88rem; }
.alert-success { background: #eaf7ef; border: 1px solid #b8e6c8; color: var(--success); }
.alert-error { background: #fdecea; border: 1px solid #f5c6cb; color: var(--danger); }

/* === Badges === */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-free { background: #eaf7ef; color: var(--success); }
.badge-premium { background: var(--orange-glow); color: var(--orange-dark); }
.badge-active { background: #eaf7ef; color: var(--success); }
.badge-inactive { background: #fdecea; color: var(--danger); }

/* === Forms === */
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px var(--orange-glow);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === Tables === */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 14px; text-align: left; }
.table th {
    background: var(--off-white);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
}
.table td { border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.table tr:hover td { background: var(--orange-glow); }

/* === Cards === */
.card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* === Section Headers (orange bar style) === */
.section-bar {
    background: linear-gradient(180deg, var(--orange-light), var(--orange));
    color: #fff;
    padding: 8px 14px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius) var(--radius) 0 0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
    margin-top: 6px;
}
.orange-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 8px auto 12px;
    border-radius: 3px;
}

/* ============================================ */
/* === TOP BAR (Stats)                      === */
/* ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--text-light-muted);
    font-size: 0.75rem;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 6px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-stats { display: flex; gap: 20px; }
.top-stats span { display: flex; gap: 4px; }
.top-stats .num { color: var(--orange); font-weight: 700; }

/* ============================================ */
/* === NAVIGATION                           === */
/* ============================================ */
.main-nav {
    background: linear-gradient(180deg, var(--dark-medium), var(--dark-header));
    border-bottom: 3px solid var(--orange);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}
.nav-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-brand .crown { font-size: 1.2rem; }
.nav-brand .brand-orange { color: var(--orange); }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a {
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 16px;
    transition: all 0.15s;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.nav-links a:hover {
    color: var(--orange);
    background: rgba(255,255,255,0.04);
}
.nav-links a.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
    background: rgba(255,255,255,0.04);
}
.nav-links .btn {
    margin-left: 12px;
    margin-bottom: 0;
    border-bottom: none;
    padding: 8px 18px;
}

/* ============================================ */
/* === HERO SECTION                         === */
/* ============================================ */
.hero-section {
    background: linear-gradient(180deg, var(--dark-medium) 0%, var(--dark) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at 70% 50%, rgba(244,121,32,0.08) 0%, transparent 70%);
}
.hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 540px; }
.hero-label {
    display: inline-block;
    background: rgba(244,121,32,0.15);
    border: 1px solid rgba(244,121,32,0.3);
    color: var(--orange);
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    border-radius: 2px;
}
.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    line-height: 1.15;
}
.hero-content h1 .orange { color: var(--orange); }
.hero-content .hero-desc {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-visual {
    flex-shrink: 0;
    width: 360px;
    height: 280px;
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 40%, rgba(244,121,32,0.1) 0%, transparent 60%);
}
.hero-icon-wrap { text-align: center; position: relative; z-index: 2; }
.hero-icon-wrap .icon { font-size: 3.5rem; margin-bottom: 8px; }
.hero-icon-wrap .label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-icon-wrap .sublabel { color: var(--text-light-muted); font-size: 0.82rem; margin-top: 2px; }

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}
.stat-item .stat-label {
    font-size: 0.72rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* === CONTENT AREA (sidebar + main)        === */
/* ============================================ */
.content-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
}
.content-wrap.has-right-sidebar {
    grid-template-columns: 1fr 260px;
}
.content-wrap.three-col {
    grid-template-columns: 220px 1fr 240px;
}

/* === Sidebar === */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-block {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.sidebar-block .section-bar { font-size: 0.76rem; padding: 7px 12px; }
.sidebar-list { list-style: none; }
.sidebar-list li {
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a, .sidebar-list li span.item {
    display: block;
    padding: 8px 12px;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 500;
    transition: all 0.15s;
    flex: 1;
}
.sidebar-list li a:hover { background: var(--orange-glow); color: var(--orange); padding-left: 16px; }
.sidebar-list li .meta {
    font-size: 0.76rem;
    color: var(--text-muted);
    padding-right: 12px;
    white-space: nowrap;
}
.sidebar-list li .rank {
    min-width: 24px;
    text-align: center;
    padding-left: 12px;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === Main Content === */
.main-content { display: flex; flex-direction: column; gap: 16px; }

/* === News Cards === */
.news-block {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.news-block .section-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-item {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; }
.news-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.news-item h3 a { color: var(--text); }
.news-item h3 a:hover { color: var(--orange); }
.news-meta {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.news-meta .author { color: var(--orange); font-weight: 600; }
.news-item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }
.read-more { color: var(--orange); font-size: 0.82rem; font-weight: 600; }

/* ============================================ */
/* === PAGE SECTIONS                        === */
/* ============================================ */
.page-section { padding: 48px 0; }
.page-section.white-bg { background: #fff; }
.page-section.gray-bg { background: var(--off-white); }

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.module-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}
.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}
.module-icon { font-size: 2rem; margin-bottom: 10px; }
.module-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.module-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.55; margin-bottom: 10px; }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
    border: 2px solid var(--orange);
    box-shadow: 0 4px 20px rgba(244,121,32,0.15);
}
.popular-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(180deg, var(--orange-light), var(--orange));
    color: #fff;
    padding: 4px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.pricing-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
}
.pricing-card .price span { font-size: 0.85rem; color: var(--text-muted); font-family: 'Open Sans', sans-serif; font-weight: 400; }
.pricing-card ul { list-style: none; margin-bottom: 24px; text-align: left; }
.pricing-card li {
    padding: 7px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}
.pricing-card li:last-child { border-bottom: none; }

/* === Spotlight Grid (3 col on homepage) === */
.spotlight-row {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}
.spotlight-row .section-bar { border-radius: 0; }
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.spotlight-col {
    padding: 14px;
    border-right: 1px solid var(--border);
}
.spotlight-col:last-child { border-right: none; }
.spotlight-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
}
.spotlight-col ul { list-style: none; }
.spotlight-col li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--border);
}
.spotlight-col li:last-child { border-bottom: none; }
.spotlight-col li a { color: var(--text); font-weight: 500; }
.spotlight-col li a:hover { color: var(--orange); }
.spotlight-col li .meta { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================ */
/* === FOOTER                               === */
/* ============================================ */
.site-footer {
    background: var(--dark);
    color: var(--text-light-muted);
    padding: 36px 0 20px;
    border-top: 3px solid var(--orange);
}
.footer-inner { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 24px;
}
.footer-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.footer-brand .crown { color: var(--orange); }
.footer-desc { font-size: 0.85rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--text-light-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.78rem;
}

/* ============================================ */
/* === AUTH PAGES                            === */
/* ============================================ */
.auth-body {
    background: var(--dark);
    display: flex; min-height: 100vh; align-items: center; justify-content: center;
}
.auth-container { width: 100%; max-width: 400px; padding: 20px; }
.auth-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--orange);
}
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}
.auth-logo .crown-icon { color: var(--orange); }
.auth-header h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}
.auth-footer { text-align: center; margin-top: 18px; color: var(--text-muted); font-size: 0.85rem; }

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-visual { width: 100%; max-width: 320px; height: 220px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .content-wrap { grid-template-columns: 1fr; }
    .content-wrap.three-col { grid-template-columns: 1fr; }
    .content-wrap.has-right-sidebar { grid-template-columns: 1fr; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .spotlight-col { border-right: none; border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .content-wrap { padding: 16px; }
    .nav-inner { flex-direction: column; gap: 8px; height: auto; padding: 10px 16px; }
    .nav-links { gap: 0; flex-wrap: wrap; justify-content: center; }
    .nav-links a { padding: 8px 10px; font-size: 0.78rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-section { padding: 32px 0; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
    .modules-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .top-bar-inner { flex-direction: column; gap: 4px; }
}

/* === Utility === */
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }
