:root {
    --primary-color: #C7974B;
    --background-color: #0A0A0A;
    --nav-background: rgba(16, 16, 16, 0.95);
    --card-background: rgba(32, 32, 32, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: url('../img/image2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.elir-root-content {
    margin-top: 140px;
    padding: 20px 0 80px 0;
}

h1,
h2,
h3 {
    color: var(--color-8);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Swonderful-Bold';
    font-size: 120px;
    text-transform: uppercase;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 25px;
}

a * {
    pointer-events: none;
    cursor: not-allowed;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: 'BebasNeue-Regular';
}

.share-button {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.share-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.developer {
    padding: 0 1rem 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--color-7);
}

.desktop #content_snippets::-webkit-scrollbar,
.desktop::-webkit-scrollbar {
    width: 8px;
}

.desktop #content_snippets::-webkit-scrollbar-thumb,
.desktop::-webkit-scrollbar-thumb {
    background: #F7DA9A;
    border-radius: 10px;
}

.desktop #content_snippets::-webkit-scrollbar-track,
.desktop::-webkit-scrollbar-track {
    background: #334F87;
}



@media (max-width: 767.9px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .voting-header {
        flex-direction: column;
        gap: 1rem;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
    }
}

.container {
    width: 92%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}