@import "/shared/css/root.css";

body {
    margin: 0;
    padding: 40px 20px;
    font-family: "Poppins", sans-serif;
    background: #0d0d0d;
    color: #e4e4e4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

h1 {
    font-size: 36px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 10px;
}

h2 {
    margin-top: 40px;
    color: #cfcfcf;
}

h3 {
    margin-top: 25px;
    color: #b5b5b5;
}

.cookie-actions {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.cookie-actions button {
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
}

.cookie-allow {
    background: #04b516;
    color: white;
}

.cookie-deny {
    background: var(--color-red);
    color: #fff;
}

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

a:hover {
    text-decoration: underline;
}
