div.content-contest-large {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

div.content-contest-large div {
    font-size: clamp(40px, 10vw, 80px);
    padding: 16px 32px;
    display: inline-block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

div.content-contest-large span {
    display: inline-block;
    width: 100%;
}

div.content-contest-large span.contest-orange {
    background-color: var(--gullys-main-orange);
}

div.content-contest-large span:nth-child(1) div {
    -webkit-text-stroke: 1px var(--gullys-main-blue);
    background: linear-gradient(135deg, var(--gullys-main-blue) 50%, var(--gullys-main-orange) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

div.content-contest-large span:nth-child(2) div {
    background-color: var(--gullys-main-blue);
    color: var(--gullys-main-orange)
}

div.content-contest-large span:nth-child(3) div {
    -webkit-text-stroke: 1px var(--gullys-main-orange);
    background: linear-gradient(135deg, var(--gullys-main-blue) 50%, var(--gullys-main-orange) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    border-top: 1px solid var(--gullys-main-orange);
    border-bottom: 1px solid var(--gullys-main-orange);
}

div.content-contest-large span:nth-child(4) div {
    color: var(--gullys-main-blue);
    background-color: var(--gullys-main-orange)
}

div.content-contest-large span:nth-child(5) div {
    border-top: 1px solid var(--gullys-main-orange);
    border-bottom: 1px solid var(--gullys-main-orange);
    color: orange
}

p.contest-paragraph {
    padding: 8px;
    border-bottom: 1px solid var(--gullys-main-orange);
    margin-top: 32p;
    margin-bottom: 32px;
}

div.winner-content {
    font-size: 38px;
    margin: 0 auto;
    width: 50%;
    min-width: 800px;
    padding: 32px;
    text-align: center;
    box-sizing: border-box;
}

div.winner-content div.winner-head {
    font-size: 38px;
    color: orange;
    border-bottom: 1px solid var(--gullys-main-orange);
    margin-bottom: 8px;
    padding-bottom: 8px;
}

div.winner-content div.winner-place {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 16px;
}

.winner-number {
    border: solid var(--gullys-main-gray) 1px;
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    color: var(--gullys-main-blue);
}

.winner-number-first {
    background-color: var(--gullys-orange-0);
}

.winner-number-second {
    background-color: var(--gullys-gray-0);
}

.winner-number-third {
    background-color: var(--gullys-orange-1);
}

.winner-number-other {
    background-color: var(--gullys-main-blue);
    color: var(--gullys-main-gray);
}

div.winner-content div.winner-place .winner-name {
    color: var(--gullys-main-gray);
    display: inline-flex;
    align-items: center;
}

table.contest-chronik-table {
    margin: 0 auto;
    width: 60%;
    font-size: 36px;
    border-collapse: collapse;
    border-spacing: 0;
}

table.contest-chronik-table th {
    background-color: var(--gullys-main-orange);
    color: var(--gullys-main-blue);
    text-align: center;
	height: 32px;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    font-weight: normal;
}

table.contest-chronik-table td {
    color: var(--gullys-main-gray);
    text-align: center;
	height: 64px;
}

table.contest-chronik-table tbody tr {
    border-bottom: 1px solid var(--gullys-main-gray);
}

table.contest-chronik-table tr td:nth-child(2) {
    color: var(--gullys-main-orange);
}

table.contest-winner-table {
    width: 80%;
    margin: 0 auto;
    font-size: 28px;
    border-collapse: collapse;
    border-spacing: 0;
}

table.contest-winner-table th {
    border-bottom: var(--gullys-main-orange) 1px solid;
    color: var(--gullys-main-orange);
    text-align: center;
    height: 48px;
    font-weight: normal;
    font-size: 28px;
}

table.contest-winner-table td {
    border-bottom: var(--gullys-main-gray) 1px solid;
    color: var(--gullys-main-gray);
    text-align: center;
    height: 64px;
    font-size: 28px;
}

sup.gullys-crp {
    color: var(--gullys-main-orange);
    font-weight: bold;
}

.w-shape {
    width: 50%;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    padding: 8px;
    padding-top: 16px;
    padding-bottom: 0px;
    color: var(--gullys-main-blue);
    clip-path: polygon(
        10% 0%,
        40% 40%,
        60% 40%,
        90% 0%,
        100% 100%,
        0% 100%
    );
    background-color: var(--gullys-main-orange);
    position: relative;
    overflow: hidden;
}

.shiny::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.5) 100%
    );
    transform: rotate(-25deg);
    animation: shine 2s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(-25deg);
  }
  100% {
    transform: translateX(100%) rotate(-25deg);
  }
}

@media (max-width: 900px) {
    div.winner-content {
        min-width: 0;
        width: 100%;
        font-size: 24px;
    }

    table.contest-chronik-table {
        width: 100%;
    }

    table.contest-chronik-table {
        font-size: 28px;
    }

    table.contest-winner-table {
        width: 100%;
    }

    table.contest-winner-table th {
        font-size: 16px;
    }

    table.contest-winner-table td {
        font-size: 16px;
    }
}