
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* max-width: 990px; */
    margin: 0 auto;
    padding: 20px;
    /* background-color: #0B002D;
    color: #ffffff; */
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
text-align: center;
overflow-x: hidden;
}
.d-none {
    display: none !important
}
h1, h2 {
    text-align: center;
    /* background: linear-gradient(45deg, #F04075, #EE9A25); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

h2 {
    font-size: 2em;
    margin-top: 20px;
}

.question-container, #result, #homepage {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    /* margin-bottom: 20px; */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
border: 1px solid;
}


@media (min-width: 1080px) {
	.option {padding: 15px 70px;}
}

    .option:hover, .option.selected {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        /* box-shadow: 0 4px 15px 0 rgba(240, 64, 117, 0.3); */
    }

    .option::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .option.selected::after {
        opacity: 1;
    }

    .option.correct {
        background: rgba(0, 255, 0, 0.2);
    }
	.option.Correct::after {
		background-image: url(../images/check.svg);
	        background-size: 20px 20px;
		top: unset;
		bottom: 0;
		opacity: 1;
	}

    .option.incorrect {
        background: rgba(255, 0, 0, 0.2);
    }
	.option.inCorrect::after {
		background-image: url(../images/x.svg);
	        background-size: 20px 20px;
		top: unset;
		bottom: 0;
	}


@media (min-width: 1080px) {
	.option::after {width: 40px; height: 40px;}
	.option.Correct::after, .option.inCorrect::after {background-size: 40px 40px; bottom: -10px;}
}

button, input[type="submit"] {
    /* background: linear-gradient(45deg, #F04075, #EE9A25); */
background-color: rgba(33, 37, 41, 1) !important;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    /* box-shadow: 0 4px 15px 0 rgba(240, 64, 117, 0.75); */
}

    button:hover, input[type="submit"]:hover {
        /* background: linear-gradient(45deg, #EE9A25, #F04075); */
        transform: translateY(-2px);
        /* box-shadow: 0 6px 20px 0 rgba(240, 64, 117, 0.8); */
    }

#result {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    animation: fadeIn 1s ease-in;
}

.qrcode-container {
    /* padding-top: 10px;
    padding: 20px;  Adjust this value as needed */
    background-color: #ffffff; /* Optional: Set background color to match `colorLight` */
    display: inline-block; /* Keeps padding tight around the QR code */
}

#qrcode {
    /*display: flex;*/
    justify-content: center;
    /* margin-top: 20px; */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#emailForm {
    margin-top: 20px;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

    input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

#homepage {
    text-align: center;
}

    #homepage p {
        margin-bottom: 20px;
    }

#qr-entry {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.img-fluid {max-width: 100%;}

.mobile-view {display: none;}
@media (max-width: 576px) {
	.desktop-view {display: none;}
	.mobile-view {display: block;}
}