* {
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
}

&--itunes::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #eee;
    box-shadow: 0 0 1px 1px #bbb, inset 0 0 7px rgba(0, 0, 0, 0.3)
}

&--itunes::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(left, #96A6BF, #63738C);
    box-shadow: inset 0 0 1px 1px #5C6670;
}

&--itunes::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(left, #8391A6, #536175);
}

/* Refresh Button */
.page-referesh {
    height: 52px;
    position: fixed;
    bottom: 5px;
    right: -25px;
    padding: 15px 25px;
}

/* Header */

.header-background {
    background-color: black;
    padding: 30px 0 20px;
}

.header-background ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.header-background ul li {
    float: left;
    padding: 0 50px;
    width: 25%;
}

.header-background ul li a {
    display: block;
    padding: 12px 33px;
    text-align: center;
    background: #ffd800;
    color: #000;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 2px 2px hsla(0, 0%, 100%, .9);
    border: 1px solid #000;
    font-size: 14px;
}

.header-background ul li a:hover {
    background: white;
    box-shadow: 2px 2px #ffd800;
}

@media only screen and (max-width: 991px) {
    .header-background ul li a {
        box-shadow: none;
        padding: 9px 6px;
        font-size: .7rem;
        text-decoration: none;
    }

    .header-background ul li {
        padding: 0 4px;
    }
}

.header-background marquee {
    font-size: 12px;
    font-weight: bold;
    color: white;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.header-background .logo {
    background: #ffd800;
    padding: 30px 0;
    font-size: 27px;
    text-align: center;
    font-weight: 700;
    margin-top: 25px;
}

.blink {
    animation: blinker 1.5s linear infinite;
    font-family: sans-serif;
    color: black;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}




/* Chart Page */

.chart-page-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 2rem;
    text-align: center;
    background-color: black;
    color: white;
    padding: 9px 30px;
}

.chart-page-ribbon {
    padding: 20px 0;
    color: #000;
    border-bottom: 1px solid #000;
    border-top: 2px solid #000;
    background: linear-gradient(180deg, #ff9000 0, #ffe400);
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .chart-page-ribbon {
        font-size: 15px;
    }
}


.yearly-game-chart-container {
    margin-top: 10px;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;
    gap: 5px;
    padding: 10px;
}

.yearly-game-chart-container a{
    text-decoration: none;
}

.yearly-game-chart-inner-div {
    background-color: #ffe400;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    font-family: Helvetica,sans-serif;
}

.yearly-game-chart-inner-div:hover {
    background-color: black;
    color: #ffe400;
}

.margin-top{
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .yearly-game-chart-container {
        grid-template-columns: 1fr;
    }
}




/* Yearly Chart Page */

.yearResultTable {
    display: flex;
    background-color: white;
    overflow-x: scroll;
   
}


.yearResultTable .yearGame .row-column {
    width: fit-content;
    min-width: 70px;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    font-size: 16px;
    color: blue;
    border-bottom: 1px solid #dee2e6;
}

.yearResultTable .yearGame .row-column:nth-child(1){
    background-color: #ffd800;
    color: black;
    font-size: 17px;
    border: none;
}

.yearResultTable .yearResult div:nth-child(1) {
    background-color: #ffd800;
    min-width: 90px;
    text-align: center;
    font-weight: 700;
    color: black;
    font-size: 17px;
    border: none;
}

.yearResultTable .yearResult {
    flex-grow: 1;
}

.yearResultTable .yearResult .row-column {
    padding: 10px 0;
    font-size: 16px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: blue;
    font-weight: bold;
    border-bottom: 1px solid #dee2e6;
}