/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0d0d1a;
    --bg-secondary: #1a1a2e;
    --bg-card: #252542;
    --bg-card-hover: #2d2d4a;
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #7c3aed;
    --accent-green: #22c55e;
    --accent-green-dark: #16a34a;
    --accent-gold: #fbbf24;
    --accent-pink: #ec4899;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #3f3f5a;
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    --shadow-glow-green: 0 0 20px rgba(34, 197, 94, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
}

.btn-login:hover {
    background: var(--accent-purple);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-signup {
    background: var(--gradient-green);
    color: white;
    animation: pulse-green 2s infinite;
    box-shadow: var(--shadow-glow-green);
}

.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(34, 197, 94, 0.7);
    }
}

.btn-cta {
    background: var(--gradient-green);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    animation: pulse-green 2s infinite;
    box-shadow: var(--shadow-glow-green);
}

.btn-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.7);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-green);
    color: white;
    padding: 14px;
    font-size: 16px;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.4);
    }
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(34, 197, 94, 0.6);
}

.btn-jackpot {
    background: var(--gradient-gold);
    color: #1a1a2e;
    padding: 14px 32px;
    font-size: 16px;
}

.btn-jackpot:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.btn-vip {
    background: var(--gradient-purple);
    color: white;
    padding: 14px 32px;
}

.btn-vip:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Mobile Top Buttons */
.mobile-top-buttons {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-secondary);
    padding: 10px 16px;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-top-buttons .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
}

.mobile-top-buttons .btn-cta {
    animation: pulse-green 2s infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
}

.logo-text {
    color: var(--accent-purple);
}

.logo-accent {
    color: var(--text-primary);
}

.main-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--bg-card);
}

.mobile-nav-link:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.mobile-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.mobile-nav-buttons .btn {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.95) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(139, 92, 246, 0.2) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-title .highlight {
    color: var(--accent-green);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

/* Hero Form */
.hero-form {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 13px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-purple);
}

.form-login {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-login a {
    color: var(--accent-purple);
    font-weight: 600;
}

.form-login a:hover {
    text-decoration: underline;
}

/* Category Tabs */
.categories {
    padding: 24px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.tab:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.tab.active {
    background: var(--gradient-purple);
    color: white;
    border-color: var(--accent-purple);
}

/* Games Sections */
.games-section {
    padding: 48px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.view-all {
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 14px;
}

.view-all:hover {
    color: var(--accent-purple-dark);
    text-decoration: underline;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.game-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.game-badge.new {
    background: var(--accent-green);
    color: white;
}

.game-badge.hot {
    background: var(--accent-pink);
    color: white;
}

/* Jackpot Section */
.jackpot-section {
    padding: 48px 0;
}

.jackpot-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.jackpot-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.jackpot-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.jackpot-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.jackpot-amounts {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.jackpot-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jackpot-label {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.jackpot-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: jackpot-glow 2s infinite;
}

@keyframes jackpot-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 40px rgba(251, 191, 36, 0.4);
    }
}

/* Winners Section */
.winners-section {
    padding: 48px 0;
    background: var(--bg-secondary);
}

.winners-ticker {
    overflow: hidden;
    margin-top: 24px;
}

.winners-track {
    display: flex;
    gap: 16px;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 280px;
    border: 1px solid var(--border-color);
}

.winner-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.winner-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.winner-name {
    font-weight: 600;
    color: var(--text-primary);
}

.winner-game {
    font-size: 12px;
    color: var(--text-secondary);
}

.winner-amount {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 18px;
}

/* VIP Section */
.vip-section {
    padding: 48px 0;
}

.vip-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--accent-purple);
}

.vip-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.vip-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
}

.vip-levels {
    display: flex;
    gap: 24px;
}

.vip-level {
    text-align: center;
}

.vip-level img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.vip-level span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Providers Section */
.providers-section {
    padding: 48px 0;
    background: var(--bg-secondary);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.provider-card {
    background: var(--bg-card);
    padding: 20px 32px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.provider-card:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--accent-purple);
}

/* Content Sections */
.content-section {
    padding: 48px 0;
}

.content-section.alt-bg {
    background: var(--bg-secondary);
}

.content-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.content-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-purple);
}

.content-card h3 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--text-primary);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-card .btn {
    margin-top: 16px;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.info-table th,
.info-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.info-table td {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-table tr:hover td {
    background: rgba(139, 92, 246, 0.1);
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.tips-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Hero Bonus Text */
.hero-bonus {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-bonus .highlight {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Hero Title Adjustment */
.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.payment-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.payment-methods span {
    color: var(--text-secondary);
    font-size: 14px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 12px;
}

.disclaimer a {
    color: var(--accent-purple);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .hero-container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-bonus {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .mobile-top-buttons {
        display: flex;
    }

    .mobile-nav {
        top: 120px;
    }

    .main-nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero {
        padding-top: 160px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-bonus {
        font-size: 22px;
    }

    .content-card {
        padding: 24px;
    }

    .content-card h2 {
        font-size: 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .vip-card {
        flex-direction: column;
        text-align: center;
    }

    .vip-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 40px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-bonus {
        font-size: 20px;
    }

    .hero-form {
        padding: 24px;
    }

    .jackpot-card {
        padding: 32px 20px;
    }

    .jackpot-amounts {
        flex-direction: column;
        gap: 24px;
    }

    .jackpot-value {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .vip-levels {
        gap: 16px;
    }

    .vip-level img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .mobile-top-buttons {
        padding: 8px 12px;
    }

    .mobile-top-buttons .btn {
        padding: 12px 16px;
        font-size: 13px;
    }

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

    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-bonus {
        font-size: 18px;
    }

    .content-card {
        padding: 20px;
    }

    .content-card h2 {
        font-size: 18px;
    }

    .info-table th,
    .info-table td {
        padding: 10px 12px;
        font-size: 12px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
    }

    .category-tabs {
        gap: 6px;
    }

    .tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-column {
        flex: 1;
        min-width: 140px;
    }

    .jackpot-title {
        font-size: 28px;
    }

    .vip-title {
        font-size: 24px;
    }

    .vip-card {
        padding: 32px 20px;
    }
}


.logo-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}
.content-card ul, .content-card ol {
    margin: 16px 0 16px 22px;
    color: var(--text-secondary);
}
.content-card li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.content-card table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
