:root {
    --bg: #0b0f14;
    --card: #1a1f26;
    --text: #e6e6e6;
    --muted: #9aa3ad;

    --gold: linear-gradient(135deg, #f5c46b, #b8860b);
    --silver: linear-gradient(135deg, #d9d9d9, #8c8c8c);
    --bronze: linear-gradient(135deg, #d18b5f, #7a3e1d);
    --light-color: #fff;

    --gold-1: #f5c46a;
    --gold-2: #c48a2c;
    --gold-3: #8a5a12;
    --dark: #0b0f14;
}

@font-face {
    font-family: 'Horizon Oblique';
    src: url('../../../main/fonts/horizondrift-oblique.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Horizon Drift';
    src: url('../../../main/fonts/horizondrift-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    transition: 180ms ease;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: "Horizon Oblique", sans-serif;
    margin: 0;
    letter-spacing: 4px;
}

h2 {
    font-size: 2em !important;
}

p {
    margin: 0;
}

.main {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    background-color: var(--bg-center);
    padding: 2em;
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #B7E8CC;
    background: radial-gradient(circle, rgb(174, 255, 211) 0%, rgb(0, 8, 3) 79%);
    background-image: url(../../../main/img/backgroundMobile.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: contrast(1.05) saturate(1.05);
    z-index: 0;
}

.main::after {
    content: "";
    height: 500px;
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(252, 0, 0, 0.02) 1px, transparent 1px);
    background-image: url(../../../main/img/flares.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 50%,
            rgba(0, 0, 0, 0) 100%);
}

@media screen and (max-width: 768px) {
    .main {
        padding: 0;
    }
}

.hw {
    font-family: "Horizon Oblique", sans-serif;
    font-size: 1.4em;
    padding-bottom: .5em;
}

.title {
    font-size: 2.5em;
    text-align: center;
    line-height: 30px;
    padding-bottom: .5em;
}

.ranking-title {
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 2px;
    font-weight: 600;
}

.smoke {
    min-height: 100vh;
    width: 100vw;
    height: 100%;
    position: absolute;
}

.smoke::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../../../main/img/smoke.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .7;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 999;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    padding-bottom: 0px;
    display: flex;
    color: var(--light-color);
    flex-direction: column;
    align-items: center;
}



.card‑regulamento {
    background: linear-gradient(180deg, #4f6c3669 0%, rgba(6, 2, 30, 0.48) 100%);
    background-blend-mode: multiply;
    max-width: 900px;
    margin: 0 10px;
    border-radius: 1.875rem;
    box-shadow: 0 10px 50px rgb(0 255 206 / 8%);
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: #fff;
}

.card‑regulamento a {
    color: #66b0ff;
}

.card‑regulamento a:hover {
    color: #99ccff;
    text-decoration: underline;
}

.card‑regulamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.875rem;
    padding: 2px;
    background: linear-gradient(180deg,
            var(--secondary-color) 0%,
            rgba(var(--secondary-color-rgb), 0.4) 70%,
            rgba(var(--secondary-color-rgb), 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: background 0.5s ease;
}

.card‑regulamento:hover::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 1)),
        linear-gradient(270deg,
            #ff0000,
            #ff9900,
            #33ff00,
            #00ffff,
            #3300ff,
            #ff00cc,
            #ff0000);
    background-size: 100% 100%, 400% 400%;
    background-repeat: no-repeat, no-repeat;
    animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.warningWeekly{
      background:#4f6c3669;
  border-left:4px solid #00ff95;
  padding:10px 14px;
  margin-top:12px;
  border-radius:4px;
}