@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text: #fff;
    --turquoise: #00d7b0;
    --white: #ffffff;
    --background: #432975;
    --border: #D040A7;
    --sizehover: 245px;
}
body {
    height: 100vh;
    background: var(--background);
    color: var(--text);
}
.contentgame {
    width: 100%;
    aspect-ratio: 14 / 8;
    max-height: calc(100vh - (( 50px + 2.5vw ) * 2 ));
    padding: 0 30px;
}
.ccampo {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    background: var(--background);
    position: relative;
}
.cmarqueetop {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}
.cmarqueebottom {
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
.clogocampo {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}
.clogocampo svg {
    width: 23%;
    height: auto;
}
.ccampomedio {
    height: 100%;
    width: 1px;
    background: var(--border);
    margin: auto;
}
.ccampo {
    position: relative;
    overflow: hidden;
}
#game-container {
    z-index: 400;
    position: relative;
}
.paddle {
    position: absolute;
    width: 30px;
    height: 150px;
    background-color: var(--turquoise);
}
.player-paddle {
    left: 10px;
}
.cpu-paddle {
    right: 10px;
}
.ball {
    z-index: 10;
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--turquoise);
    border-radius: 50%;
    left: 68%;
    top: 23.7%;
}
.cvcenter {
    display: table;
    height: 100%;
    width: 100%;
}
.cvcenterinner {
    display: table-cell;
    vertical-align: middle;
}

.sscore {
    font-family: "Syncopate", sans-serif;
    font-weight: 600;
    font-size: 70px;
    position: absolute;
    display: block;
    color: var(--turquoise);
}
.sscoreplayer {
    left: 20px;
    top: 20px;
}
.sscorecpu {
    right: 20px;
    bottom: 20px;
}
.ball {
    opacity: 0;
}
.gamestarted .ball {
    opacity: 1;
}
.cworkcol {
    margin-bottom: 0px !important;
}
.cursor-dotnotcursor {
    cursor: pointer;
}
.cursor-dot a {
    display: block;
    height: 100%;
}
.chovercursor a {
    font-size: inherit;
    font-family: inherit;
}



/*//////////// MARQUEE */

.cmarqueetop {
    border-top: 1px solid var(--border);
    padding-top: 10px;
}
.cmarqueeright::before {
    content: "";
    z-index: 10;
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 20%;
    background: rgb(67, 41, 117);
    background: linear-gradient(84deg, rgba(67, 41, 117,0) 50%, rgba(67, 41, 117,1) 100%);
}

.cmarqueeitem {
    font-family: 'Syncopate', sans-serif;
    font-size: calc(20px + 2.5vw);
    font-weight: inherit;
    pointer-events: none;
}
.cmarqueeleft::before {
    content: "";
    z-index: 10;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 20%;
    background: rgb(67, 41, 117);
    background: linear-gradient(84deg, rgba(67, 41, 117,1) 10%, rgba(67, 41, 117,0) 100%);
}