:root {
    --color-brand: #ef4444;
    --color-cta: #f59e0b;
    --font-main: Bahnschrift, 'Arial Black', 'Helvetica Neue', sans-serif;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --border: #ddd;
    --bg-light: #f8f8f8;
    --bg-card: #fff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.6;
    margin-top: 0;
}

p {
    margin-top: 0;
    line-height: 1.6;
}

ul, ol {
    padding-left: 1.4em;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-cta);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    line-height: 1.6;
}

.btn:hover {
    background: #d97706;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-brand {
    background: var(--color-brand);
    color: #fff;
}

.btn-brand:hover {
    background: #dc2626;
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.table-responsive,
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    max-width: 100%;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    line-height: 1.6;
}

th {
    font-weight: 700;
    background: var(--bg-light);
    color: var(--text-dark);
}

tr:hover td {
    background: #fafafa;
}

input, textarea, select {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
}

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

:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        font-size: 16px;
    }

    .grid, [class*='grid'] {
        grid-template-columns: 1fr !important;
    }

    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }

    th, td {
        padding: 10px 12px;
        font-size: 14px;
    }
}