    :root {
        --purple: #191919;
        --red: #da9256;
    }
    * {
        padding: 0;
        margin: 0;
        border: none;
    }
    .highlight {
        background: rgba(255,215,0,0.115);
    }
    h1 {
        color: var(--red);
        font-family: 'Quicksand', sans-serif;
        font-weight: 500;
        font-size: 30px;
        margin-bottom: 20px;
    }
    h3 {
        font-family: 'Quicksand', sans-serif;
        font-size: 21px;
        font-weight: 500;
        color: var(--red);
        margin-bottom: 20px;
    }
    input[type="checkbox"] {
        margin-top: 10px;
        margin-right: 15px;
        float: left;
    }
    code {
        color: var(--red);
        font-family: monospace;
        font-size: 16px;
        background: #f7f7f7;
        padding: 3px 5px;
        border-radius: 3px;
        border: 1px solid #ebebeb;
    }
    /* Cookie Dialog */
    #gdpr-cookie-message {
       position: fixed;
    right: 30px;
    z-index: 3000;
    bottom: 30px;
    max-width: 455px;
    background-color: #454545;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    margin-left: 30px;
    }
    #gdpr-cookie-message h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
    align-items: center;
    }
    #gdpr-cookie-message h5 {
        color: var(--red);
        font-family: 'Quicksand', sans-serif;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 10px;
    }
    #gdpr-cookie-message p, #gdpr-cookie-message ul {
         color: #a5a5a5;
    font-size: 11px;
    font-weight: 600;
    line-height: 16px;
    }
    #gdpr-cookie-message p:last-child {
          margin-bottom: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    }
    #gdpr-cookie-message li {
        width: 49%;
        display: inline-block;
    }
    #gdpr-cookie-message a {
      color: #919191;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    border-radius: 8px;
    width: 100%;
    border: solid 1px #636363;
    transition: all 0.2s;
    align-items: center;
    justify-content: center;
    }
	#gdpr-cookie-message .text-cookie a {
      display: none;
    }
    #gdpr-cookie-message a:hover {
        color: white;
		border: solid 1px #636363;
		background: #636363;
    }
    #gdpr-cookie-message button {
        border: none;
    background: #d38c51;
    color: white;
    font-weight: 600;
    font-size: 12px;
    padding: 13px 0px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in;
    }
    #gdpr-cookie-message button:hover {
        background: #ab7141;
		color: white;
    }
    button#gdpr-cookie-advanced {
        background: white;
        color: var(--red);
    }
    #gdpr-cookie-message button:disabled {
        opacity: 0.3;
    }
    #gdpr-cookie-message input[type="checkbox"] {
        float: none;
        margin-top: 0;
        margin-right: 5px;
    }