/* ============ ШРИФТИ e-Ukraine ============ */
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-UltraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'e-Ukraine';
    src: url('../assets/fonts/e-Ukraine-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============ ДИЗАЙН-ТОКЕНИ ============ */
:root {
    --color-bg: #111111;
    --color-white: #FFFFFF;
    --color-grey: #A1A1A1;
    --color-accent: #8ECE79;
    --card-bg-top: rgba(17, 17, 17, 0.25);
    --card-bg-bottom: rgba(17, 17, 17, 0.5);
    --card-radius: 20px;
    --card-blur: 20px;
    --card-glow-top: inset 0 5px 10px rgba(255, 255, 255, 0.3);
    --card-glow-bottom: inset 0 -10px 30px rgba(255, 255, 255, 0.3);
    --section-max-width: 1440px;
    --section-padding-x: 20px;
    --section-gap: 20px;
    --title-col-width: 453px;
    --content-col-width: 926px;
}

/* ============ РЕСЕТ ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'e-Ukraine', sans-serif;
    font-weight: 300;
    background: var(--color-bg);
    color: var(--color-white);
    line-height: 1.4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
}

a:has(img) {
    text-decoration: none;
    display: block;
    line-height: 0;
}
