@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
 font-family: 'Poppins',sans-serif;;
    box-sizing: border-box;
}

body{
    color: #fff;
    background: #09001d;
    overflow: hidden;
    
    
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background:transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 32px;
    color:#fff;
    text-decoration: none;
    font-weight: 700;
    filter: drop-shadow(0 0 5px #09001d);
}

.navbar a{
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-left: 35px;
    transition: .3s ease;
}

.navbar a:hover,
.navbar a.active{
    color:#f93dca;
    font-weight: 500;
}

.navbar a.active{
    font-size: 18px;
    border: .3px inset rgb(133, 133, 2);
    font-weight: 800;
    padding: 5px 14px;
}

.navbar a.active:hover{
    border: .4px inset yellowgreen;

}

.main{
    min-height: 100vh;
    background: #09001d;
   pointer-events: auto;
   transition: .3s ease;
   
}

.main.active{
    pointer-events: none;
    filter: blur(15px);
}

.container{
    display: flex;
    height: 100vh;
    width: 200%;
}

 .home{
    position: relative;
    left: -50%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content{ 
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-content h1{
    font-size: 70px;
    font-weight: 700;
    color: #fb70d8;
    text-shadow: 12px 3px #950170
    
}

.home-content p{
    color: white;
    font:16px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0 0 0 .3);
    margin-bottom: 30px;
}

.home-content .start-btn{
    width: 190px;
    height: 55px;
    background:#020006;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px rgb(21,21,100);
    font-size: 18px;
    color: #fd9b9b;
    text-shadow: 1px 1px 1px #f502b8;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
}

.home-content .start-btn:hover{
    background: #09001d;
    box-shadow: none;
    color: #faacac;
}

.popup-info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 500px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 25px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.popup-info.active{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.3);
}

.popup-info h2{
    font-size: 50px;
    color: #c40094;
}

.popup-info .info{
    display: inline-block;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 4px 0;
}

.popup-info .btn-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #999;
    margin-top: 10px;
    padding: 15px  0 7px;
}

.popup-info .btn-group .info-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #c40094;
    border: 2px solid #c40094;
    outline: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0 0 0 .3);
    cursor: pointer;
    transition: .4s;
}

.popup-info .btn-group .info-btn:nth-child(1){
    background: #ece9ec;
    color: #c40094;
}

.popup-info .btn-group .info-btn:nth-child(1):hover{
    background: #c40094;
    color: #fff;
}

.popup-info .btn-group .info-btn:nth-child(2){
    background-color: #c40094;
    color: #fff;
}
.popup-info .btn-group .info-btn:nth-child(2):hover{
    background: #cecaca;
    color: #950170;
    border-color: #950170;
}


.quiz-section{
    position: relative;
    left: -50%; 
    /* left: 0; */
    width: 100%;
    background:#09001d;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .8s ease;
    transition-delay: .25s;
    z-index: 100;
}

.quiz-section.active{
    left:0
}


.quiz-section .quiz-box{
    position: relative;
    width: 500px;
    background: transparent;
    border: 2px solid #c40094;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    opacity: 0;
    pointer-events: none;
    transform: scale(.9);
    transition: .3s ease;
    transition-delay: 0s;
    pointer-events: none;
    transition: .3s ease;
}

.quiz-section .result-box.active{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%,-50%) scale(1);
}

.quiz-section .quiz-box.active{
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    transition: 1s ease;
    transition-delay: 1s;

}


.quiz-box h1{
    font-size: 32px;
    text-align: center;
    background: linear-gradient(45deg,transparent,#c40094,transparent);
    border-radius: 6px;
}

.quiz-box .quiz-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #c40094;
    margin-bottom: 30px;
}

.quiz-header span{
    font-size: 18px;
    font-weight: 500;
}

.quiz-header .header-score{
    background: #c40094;
    border-radius: 3px;
    padding: 7px;
}

.quiz-box .question-text{
    font-size: 24px;
    font-weight: 600;
}

.option-list .option{
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    font-size: 17px;
    margin: 15px 0;
    cursor: pointer;
    transition: .3s;
}

.option-list .option.correct{
    background: rgb(58, 213, 58);
    border-color: green;
}

.option-list .option.incorrect{
    background:rgb(243, 19, 19);
    border-color: rgb(170, 21, 21);
}



.option-list .option.disabled{
    pointer-events: none;
}

.option-list .option:hover{
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}


.quiz-box .quiz-footer{
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #c40094;
    align-items: center;
    padding-top: 20px;
    margin-top: 25px;
}

.quiz-footer .question-total{
    font-size: 16px;
    font-weight: 600;
}

.quiz-footer .next-btn{
    width: 100px;
    height: 45px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .1);
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: rgba(255, 255, 255, .3);
    font-weight: 600;
     cursor: pointer; 
    pointer-events: none; 
    transition: .3s;
}

.quiz-footer .next-btn.active:hover{
    background: #7d045f;
    border-color: #62024a;
}

.quiz-footer .next-btn.active{
    pointer-events: auto;
    background: #c40094;
    border-color: #c40094;
    color: #fff;
}


.quiz-section .result-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background: transparent;
    border: 2px solid #c40094;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.result-box h2{
    font-size: 40px;
}

.result-box .percentage-container{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 40px;
}

.percentage-container .circular-progress{
    position: relative;
    width: 200px;
    height: 200px;
    background: conic-gradient(#c40094 3.6deg, rgba(255, 255, 255, .1) 0deg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.percentage-container .circular-progress::before{
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background:#09001d;
    border-radius: 50%;

}

.circular-progress .progress-value{
    position: relative;
    font-size: 40px;
    font-weight: 600;
    text-shadow: 3px 5px 4px #980473;
}

.result-box .score-text{
    font-size:20px;
    font-weight: 60;
    margin-top:-20px;
    color: #f981db;
    text-shadow: 3px 1px 1px #e305ab
}

.result-box .score-text>span{
    color: #950170;
}

.result-box .game{
    width: 100%;
    margin-top:12px
}

.result-box .buttons{
    display: flex;
}

.buttons button{
    width: 130px;
    height: 47px;
    background: #c40094;
    border: 2px solid #c40094;
    outline: none;
    border-radius: 16px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 11px 20px;
    cursor: pointer;
    margin-top: 30px;
}



.buttons button:nth-child(1):hover{
    background:transparent;
    color: #7d045f;
}

.buttons button:nth-child(2){
    background: transparent;
    color: #c40094;
}

.buttons button:nth-child(2):hover{
    background: #c40094;
    color: #fff;
}

