:root {
    --color-bg: #100407;
    --color-bg-alt: #170508;
    --color-card: #1c171d;
    --color-card-2: #181a20;
    --color-card-3: #13151b;
    --color-border: #2d2825;
    --color-border-2: #272a30;
    --color-red: #e7000b;
    --color-red-dark: #881212;
    --color-red-light: #ab2f2c;
    --color-pink: #fbb9bc;
    --color-gold: #fdc700;
    --color-gold-2: #f5c218;
    --color-orange: #ff7a00;
    --color-gray: #717378;
    --color-gray-2: #5f6168;
    --color-white: #ffffff;
    --gradient-hero: linear-gradient(90deg, #881212 0%, #AB2F2C 100%);
    --container-max: 1240px;
    --container-pad: 24px;
    --font-base: 'Exo 2', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-white);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.5;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 16px;
}

.tod-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.tod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 32px;
    background: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    border: 0;
    cursor: pointer;
    line-height: 1;
}

.tod-btn:hover {
    background: #c80009;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(231, 0, 11, 0.35);
}

.tod-btn .tod-btn-arrow {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='m12 5 7 7-7 7'/></svg>") center/contain no-repeat;
}

.tod-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.tod-section-subtitle {
    text-align: center;
    color: var(--color-pink);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 1.7;
}

.tod-screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

@media (max-width: 1024px) {
    .tod-section-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

@media (max-width: 640px) {
    .tod-section-title {
        font-size: 24px;
    }
}
