
:root {
    --primary-text-color: #ffffff;
    --secondary-text-color: #fed700;

    --header-bg-color: #000000;
    --heading-section-bg-color: #262000;
    --content-section-1-bg-color: #1a1501;
    --content-section-2-bg-color: #322e01;
    --content-section-3-bg-color: #1a1501;
    --footer-bg-color: #120f00;

    --button-bg-color: #ffd600;
    --button-text-color: #000000;

    --table-bg-color: #000000;
    --table-head-text-color: #ffd600;
    --table-body-text-color: #c3c3c3;
    --table-border-color: #969514;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: var(--primary-text-color);
    background-color: #000000;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--header-bg-color);
}

section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 1rem;
}

.heading-section {
    width: 100%;
    align-items: center;
    gap: 6rem;
    background-color: var(--heading-section-bg-color);
    padding: 2rem 1rem;
}

h1 {
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: -0.5px;
    font-weight: 800;
    text-align: center;
    font-size: 2.2rem;
}


h1 .bonus {
    color: var(--secondary-text-color);
    font-size: 1.1em;
}

h2 .bonus {
    color: var(--secondary-text-color);
    font-size: 1.1em;
}

.link-button_main {
    display: block;
    background-color: var(--button-bg-color);
    padding: 1rem;
    border-radius: 0.7rem;
    font-weight: 800;
    font-size: 1rem;
    color: var(--button-text-color);
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin: 1rem auto;
    max-width: 800px;
}

.content-section-1 {
    background-color: var(--content-section-1-bg-color);
}

.content-section-1 .regular-list {
    font-size: 0.8rem;
    line-height: 1.3em;
    color: var(--primary-text-color);
    padding: 0;
    list-style-position: inside;
}

.content-section-2 {
    background-color: var(--content-section-2-bg-color);
}

.content-section-2 h3 {
    text-align: left;
}

.content-section-2 .contents-list {
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.contents-list a {
    color: var(--primary-text-color);
}

.content-section-3 {
    background-color: var(--content-section-3-bg-color);
}

.content-section-3 table {
    font-size: 0.8rem;
    border-collapse: collapse;
    background-color: var(--table-bg-color);
    width: 100%;
}

.content-section-3 table th {
    font-size: 1em;
    border: 1px solid var(--table-border-color);
    color: var(--table-head-text-color);
    padding: 0.5rem;
}

.content-section-3 table td {
    font-size: 1.1em;
    border: 1px solid var(--table-border-color);
    color: var(--table-body-text-color);
    padding: 0.5rem;
    line-height: 1.5em;
}

footer {
    background-color: var(--footer-bg-color);
    padding: 1.5rem 0;
    text-align: center;
}
.header-buttons a {
    display: block;
    background-color: var(--button-bg-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    color: var(--button-text-color);
    font-size: 1.4rem;
    margin: 5px;
}
header {
    padding: 10px;
}
@media (min-width: 1200px) {
    header {
        justify-content: space-between;
        padding: 0 3rem;
    }

    .header-buttons {
        display: flex;
        gap: 1rem;
    }

    section {
        padding: 2rem 8rem;
    }


    .content-section-3 table th {
        font-size: 1.2em;
    }

    .content-section-3 table td {
        font-size: 1.3em;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 20px;
    }

    li {
        font-size: 1.1rem;
        line-height: 1.3em;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    color: white;
    font-weight: bold;
}

td:first-child {
    font-weight: bold;
}

td:first-child span {
    font-size: 1.2em;
    margin-right: 10px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
}

nav li {
    margin: 10px;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 850px) {
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.heading-section, .content-section-3 {
    max-width: 1200px;
    margin: 0 auto;
}
.content-section-3 img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}
