/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/

@charset "utf-8";
/*
        INCLUDES
*/
@import "bootstrap.min.css";
@import "animate.css";
@import "onetrust.css";

/* FONTS */
@font-face {
    font-family: 'Haffer';
    src: url('../fonts/Haffer-Regular.eot');
    src: url('../fonts/Haffer-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Haffer-Regular.woff2') format('woff2'),
        url('../fonts/Haffer-Regular.woff') format('woff'),
        url('../fonts/Haffer-Regular.ttf') format('truetype'),
        url('../fonts/Haffer-Regular.svg#Haffer-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MD_Nichrome';
    src: url('../fonts/MDNichrome-Regular.eot');
    src: url('../fonts/MDNichrome-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MDNichrome-Regular.woff2') format('woff2'),
        url('../fonts/MDNichrome-Regular.woff') format('woff'),
        url('../fonts/MDNichrome-Regular.ttf') format('truetype'),
        url('../fonts/MDNichrome-Regular.svg#MDNichrome-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-default: #101024;
    --color-primary: #FF3C00;
    --color-secondary: #FF0078;
    --color-text: #FAF5F0;
    --dark-gray: #222222;
    --animate-delay: 0.5s;
    --main-font: "Haffer", sans-serif;
    --second-font: "MD_Nichrome", sans-serif;
}

/* GENERAL */

* {
    box-sizing: border-box !important;
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font);
    background-color: var(--color-default);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
.hero-section {
    background: linear-gradient(180deg, #FF3C00 0%, #0F0F23 20%);
    padding-top: 5rem;
}

.hero-section img {
    max-width: 400px;
    margin-top: 2rem;
}

.hero-section .licence-img {
    max-width: 250px;
}

/* GAME RULES SCREENS */
#gameRulesSection {
    padding: 50px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
#gameRulesSection p {
    font-size: 1.25rem;
    margin-bottom: 0;
}
#gameRulesSection .rule-screen.first-screen p {
    font-size: 1.5rem;
}
#gameRulesSection .rules-border {
    max-width: 100%;
    width: 864px; 
    border-radius: 4px;
    padding: 2rem;
    background: linear-gradient(55deg, #FF0078 20%, #FF3C00 80%);
}
#gameRulesSection .rules-container {
    max-width: 860px;
    min-height: 600px;
    padding: 1rem;
    margin: 0 auto;
    background-color: var(--color-default);
}
#gameRulesSection .rules-container .rule-screen {
    display: none;
    justify-content: center;
}
#gameRulesSection .rules-container .rule-screen .img-arrow {
    width: 50px;
    height: 50px;
}
#gameRulesSection .rules-container .rule-screen .help-text p {
    font-size: 1rem !important;
}
#gameRulesSection .rules-container .rule-screen.active {
    display: flex;
}
#gameRulesSection .rules-container button {
    background-color: var(--color-primary);
    color: var(--color-text);
    height: 50px;
    font-family: var(--second-font);
    font-size: 2rem;
    line-height: 1;
    border: none;
    border-radius: 50px;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
}
#gameRulesSection .rules-container button:hover { 
    background-color: var(--color-text);
    border-color: var(--color-primary);
    color: var(--color-primary);
}
#gameRulesSection #rulePrevBtn.inactive,
#gameRulesSection #ruleNextBtn.inactive {
    opacity: 0;
    pointer-events: none;
}

#gameRulesSection #startGameBtn.inactive,
#gameRulesSection #skipRulesBtn.inactive {
    display: none;
    pointer-events: none;
}


/*GAME STYLE*/
#gameSection {
    position: relative;
    -webkit-user-select: none;   
    -moz-user-select: none;  
    -ms-user-select: none;      
    user-select: none;          
  
    -webkit-touch-callout: none; 
}
.controls-wrapper {
    display: flex;
    justify-content: space-around;
}
.control-button {
    -webkit-user-select: none !important;   
    -moz-user-select: none !important;  
    -ms-user-select: none !important;      
    user-select: none !important;          
    touch-action: manipulation !important;

    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    border: none;
}

.controller svg .cls-1 {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4px;
  }

.controller svg .cls-2 {
    fill: #ef4323;
    stroke-width: 0px;
}
.controller svg .cls-2:hover,
.controller svg .cls-2:focus {
    fill: var(--color-secondary);
    box-shadow: 0 0 0 0 rgba(var(--color-secondary), .5)}
.game-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px;
    background-color: var(--color-default);
}
.controllers {
    padding-top: 1rem;
}
.left-controllers,
.right-controllers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.game-border {
    background: linear-gradient(119deg, #FF0078 6%, #FF3C00 69.81%);
    border-radius: 12px;
}
#gameContainer {
    max-width: 864px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}
#gameEndScreen {
    max-width: 800px;
    display: none;
    background-color: var(--color-default);
    margin: 2rem;
    padding: 1.5rem;
}

#gameEndScreen h4 {
    color: var(--color-primary);
}
#gameEndScreen .bonus-question .answer {
    display: flex;
    align-items: center;
    margin: 0.5rem;
}
#gameEndScreen .bonus-question .answer label {
    margin-left: 0.5rem;
    cursor: pointer;
}

#gameEndScreen .buttons-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border-radius: 4px;
    flex: 1;
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
}

#gameEndScreen .buttons-wrapper a:hover {
    color: var(--color-primary);
    background-color: var(--color-text);
}

#gameEndScreen .score-time-container h5 {
    text-transform: uppercase;
}

#gameEndScreen .score-time-container p {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 2rem;
}

.character-animation {
    max-width: 200px;
    height: auto;
    flex: 1;
}

.hide {
    display: none;
}

.navbar-section {
    background-color: var(--color-primary);
    height: 95px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 700;
}

.nav-link {
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-default);
}

.btn-submit-form {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(var(--color-primary), .5);
    font-weight: 700;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    padding: 10px 40px;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-text);
    flex: 1;
    transition: all .5s ease-in-out;
}
.btn-submit-form:hover {
    background-color: var(--color-text);
    border-color: var(--color-primary);
    color: var(--color-primary);
}


.btn-close-modal {
    padding: 1px 18px;
    border-radius: 5px;
}

.hero-text a {
    background-color: var(--color-primary);
    color: var(--color-text);
    font-family: var(--second-font);
    font-size: 2rem;
    border-radius: 50px;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 2.5rem 0;
    transition: all .5s ease-in-out;
}

.hero-text a:hover {
    background-color: var(--color-text);
    color: var(--color-primary);
}

.hero-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding-top: 3rem;
}

.hero-text h1 {
    font-family: var(--second-font);
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.hero-text h1 strong {
    font-weight: 700;
}

.hero-text h2 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
}

.hero-text h2 strong {
    font-weight: 700;
}

.navbar-brand img {
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rules-section {
    padding: 3rem 0;
}

.rules-section h2 {
    font-family: var(--second-font);
    font-size: 2.5rem;
}

.rules-section .rules-border {
    margin-top: 2.5rem;
    max-width: 100%;
    width: 864px; 
    border-radius: 4px;
    padding: 10px;
    background: linear-gradient(165deg, #FF0078 40%, #FF3C00 60%);
}

.rules-wrapper {
    max-width: 860px;
    padding: 1rem;
    margin: 0 auto;
    background-color: var(--color-default);
}

.rules-wrapper .rule-card {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.rules-wrapper .rule-card img {
    width: 80px;
    height: 80px;
}

.rules-wrapper .rule-card p {
    margin: 0;
    padding: 0 0.5rem;
}

/*FORM*/
#formsection {
    display: none;
    background-color: var(--color-default);
    padding: 2rem 0;
}
.form-section h4 {
    font-family: var(--second-font);
    font-size: 2.5rem;
}
.form-section .form-check {
    display: flex;
    align-items: center;
}
.form-section label {
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.form-section label.form-check-label {
    font-size: 1rem;
    padding-bottom: 0;
}
.form-section label.form-check-label a {
    color: var(--color-primary);
}
.form-section input {
    color: var(--color-text);
    background-color: var(--color-default);
    border: 2px solid var(--color-primary);
    border-radius: 5px;
}
.form-control:focus {
    background-color: var(--color-default) !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    color: var(--color-text);
}
input::placeholder {
    color: var(--color-text) !important;
}
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-default);
    margin: 0;
    cursor: pointer;
    color: var(--color-primary);
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 0.15em solid var(--color-primary);
    border-radius: 50%;
    transform: translateY(-0.075em);
  
    display: grid;
    place-content: center;
}
  
input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--color-primary);
  }
  
input[type="radio"]:checked::before {
    transform: scale(1);
}

/* checkbox */
input[type="checkbox"] {
    box-sizing: border-box;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin: 6px;
    padding: 0;
    background-color: var(--color-default);
    border-radius: 6px;
    appearance: none;
    outline: none;
    transition: outline 0.5s;
}

input[type="checkbox"]:hover {
    cursor: pointer;
}

input[type="checkbox"]:not(:disabled):checked {
    background-color: var(--color-text);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMC41NzA2IDAuNTcxMjg5TDQuMjg0ODggNi44NTdMMS40Mjc3MyAzLjk5OTg2IiBzdHJva2U9IiNGRjY5MDAiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
    
}

/*PREMII*/
.premii-section {
    background-color: var(--color-primary);
    padding-bottom: 3rem;
    -webkit-user-select: none;   
    -moz-user-select: none;  
    -ms-user-select: none;      
    user-select: none;          
    touch-action: manipulation;
}

.premii-section h2 {
    font-family: var(--second-font);
    font-weight: 700;
    font-size: 42px;
    padding: 2rem 0;
}

.premii-section h3 {
    font-family: var(--second-font);
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 1rem;
    font-size: 2rem;
}

.premii-section .small-text {
    font-size: 0.75rem;
}

.premii-section p {
    font-size: 1.5rem;
}

.premii-section img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/*WINNERS CLASAMENT*/
.winners-section,
.clasament-section {
    background: linear-gradient(180deg, #FF3C00 0%, #0F0F23 20%);
    min-height: calc(100vh - 245px);
}
.winners-section img,
.clasament-section img {
    max-width: 400px;
    margin-top: 2rem;
}
.winners-section h1,
.clasament-section h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
}
.winners-section h2,
.clasament-section h2 {
    color: var(--color-primary);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}
.winners-section h3 {
    font-size: 1.5rem;
}

.form h4 {
    font-size: 30px;
    font-weight: 900;
}

.bullet {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: #f15d5d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 70px;
    font-weight: 900;
}

.score {
    font-size: 40px;
    font-weight: 900;
}

.premii-text {
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 60px;
    margin-top: 30px;
}

#game-complete-message {
    display: none;
}

#game-complete-message h2 {
    font-weight: 600;
    font-size: 34px;
}


.score-label img {
    max-width: 70px;
}


.label {
    font-weight: bold;
}

.value {
    font-weight: normal;
}

#tapad_url {
    height: 0 !important;
}

.message-success {
	border: solid 5px;
	color: #fff;
	background: #008033;
	font-size: 20px;
}
.message-success h2 {
	font-size: 34px;
}
.message-fail {
	border: solid 5px;
	color: #fff;
	background: #bb1200;
	font-size: 20px;
}
.message-fail h2 {
	font-size: 34px;
	margin: 0;
}

#pleaserotate-graphic {
    fill: #fff;
}

#pleaserotate-backdrop {
    color: #fff;
    background-color: var(--color-default);
}
@media screen and (max-width: 370px) {
    #down {
        margin-right: 0.75rem !important;
    }
    #right {
        margin-left: 0.75rem !important;
    }
    .control-button {
        width: 62px !important;
        height: 62px !important;
    }
}
@media screen and (max-width: 768px) {
    .control-button {
        width: 70px;
        height: 70px;
    }
    #gameSection {
        z-index: 999;
    }
   .winners-section h2 {
        font-size: 1.5rem;
    } 
    .winners-section h3 {
        font-size: 1rem;
    } 
    #gameRulesSection,
    #gameRulesSection .rules-border {
        padding: 1rem;
    }
    #gameRulesSection .rules-container .rule-screen {
        min-height: 460px;
    }
    #gameRulesSection #rulePrevBtn.inactive,
    #gameRulesSection #ruleNextBtn.inactive {
        display: none;
        pointer-events: none;
    }
    #gameRulesSection #rulePrevBtn {
        order: 12;
    }
}

@media screen and (min-width: 769px) {
    #gameRulesSection .rules-container .rule-screen {
        max-height: 400px;
    }
    #gameRulesSection .rules-container {
        height: 600px;
    }
}

@media screen and (max-width: 992px) {
    .hero-section {
        padding-top: 3rem;
    }
    .game-wrapper {
        padding: 50px 10px;
        flex-direction: column;
    }
    #gameEndScreen {
        padding: 1rem;
    }
    .score-label-text {
        font-size: 20px;
    }
    #ot-sdk-btn {
        bottom: 5px !important;
        left: 5px !important;
    }
    .bullet {
        width: 150px;
        height: 150px;
        font-size: 50px;
    }
    #gameRulesSection p {
        font-size: 1rem;
    }
    #gameRulesSection .rules-container button {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    #gameContainer {
        padding: 1rem;
    }
}

