@font-face {
    font-family: 'PraktikaRegular';
    src: url('../fonts/Fenotype - Praktika Regular.otf') format('opentype');
}

@font-face {
    font-family: 'PraktikaMedium';
    src: url('../fonts/Fenotype - Praktika Medium.otf') format('opentype');
}

@font-face {
    font-family: 'PraktikaBlack';
    src: url('../fonts/Fenotype - Praktika Black.otf') format('opentype');
}

@font-face {
    font-family: 'PraktikaExtraBold';
    src: url('../fonts/Fenotype - Praktika ExtraBold.otf') format('opentype');
}

@font-face {
    font-family: 'UberMove-Regular';
    src: url('../fonts/UberMove-Regular.otf') format('opentype');
}
/* This common css will fit for iphone 15 pro varients */

/*To prevent highlight of the selection - end*/
body, html {
    margin: 0;
    font-family: 'PraktikaBlack', Arial, sans-serif;
    /*background: url('../images/bg.png') no-repeat center center fixed;*/
    background-size: cover;
    color: #fff;
    text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/* Overlay for landscape mode */
#landscape-overlay {
    padding-top: 5%;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1000;
}

#landscape-overlay img {
    max-width: 50%;
    height: auto;
}

#landscape-overlay .message {
    font-size: 2em;
    margin-top: 20px;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none; /* Prevent interaction */
}


/*To prevent highlight of the selection - Start */
* {
	margin: 0;
    padding: 0;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
	-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
	outline: none !important;
	-webkit-touch-callout: none; /* Disable long-press context menu on iOS */
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */

}

button, a, p, input {
    pointer-events: auto; /* Allow interaction with clickable elements */
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	/*z-index: 1;*/
}

.header {
   text-align: center;
   padding: 5% 10% 0 10%;
  
}

.logo {
    width: 70%;
	 z-index: 1;
}

.content {
    margin-top: 20px;
    z-index: 2; /* Ensure content is above overlay */
	pointer-events: auto; /* Ensure the content can be interacted with */
}

.title {
    font-family: 'PraktikaExtraBold', sans-serif;
    font-size: 1.6em;
    margin: 5% 0 0 0;
    color: #ffb700;
}

.subtitle {
    font-family: 'PraktikaExtraBold', serif;
    font-size: 1.4em;
}

.ins-title {
   font-family: 'PraktikaExtraBold', sans-serif;
    font-size: 2.5em;
    margin: 10% 10% 5%;
    color: white;
    text-align: left;
   /* line-height: 1.1;*/
}

.ins-subtitle {
    font-family: 'PraktikaMedium', sans-serif;
    font-size: 1.4em;
    margin: 0 10% 0;
    color: white;
    text-align: left;
    /*line-height: 1.1;*/
}
.ques-title {
	font-family: 'PraktikaBlack', sans-serif;
	font-size: 1.5em;
	margin: 10% 10% 5%;
	color: white;
	line-height: 1.1;
}

.ques-text {
    font-family: 'PraktikaExtraBold', sans-serif;
    font-size: 2.8em;
    margin: 0 10% 0;
    color: white;
    line-height: 1.2;
}
.answer-title {
	font-family: 'PraktikaBlack', sans-serif;
	font-size: 1.3em;
	margin: 10% 10% 5%;
	color: white;
	/*line-height: 1.1;*/
}

.answer-correctOption{
	font-family: 'PraktikaBlack', sans-serif;
    font-size: 2.5em;
    margin: 10% 10% 0;
    color: white;
    /*line-height: 1.1;*/
}
.answer-text {
    font-family: 'PraktikaBlack', sans-serif;
    font-size: 1.5em;
    margin: 1% 10% 0;
    color: white;
    /*line-height: 1.1;*/
}
.result-title {
	font-family: 'PraktikaBlack', sans-serif;
	font-size: 1.3em;
	/*margin: 10% 10% 5%;*/
	margin: 17% 5% 2%;
	color: white;
	/*line-height: 1.1;*/
}

.result-text {
    font-family: 'PraktikaExtraBold', sans-serif;
    font-size: 2.5em;
    margin: 0 2% 0;
    color: white;
    /*line-height: 1.2;*/
}
.result-description {
    font-family: 'PraktikaExtraBold', sans-serif;
    font-size: 1.3em;
    margin: 0 8% 0;
    color: white;
   /* line-height: 1.2;*/
}

p {
    font-family: 'PraktikaMedium', sans-serif;
    font-size: 1em;
    color: white;
}
button.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}
  
button.btn.yellow {
    border-radius: 40px;
	background-color: #ffbc00;
    border: none;
	color: #000;
	text-align: center;
	text-decoration: none;
    display: inline-block;
    font-size: 2em;
    margin: 20px 5px;
	width: 60%;
	font-family: 'PraktikaExtraBold', serif;
}

button.btn.blue {
	border-radius: 45px;
	background-color: #009cc8;
	color: #fff;
	border: none;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1.4em;
	margin: 4% 0 0;
	width: 100%;
	height: 60px;
	font-family: 'PraktikaExtraBold', serif;
}

.privacy-policy{
		font-family: 'UberMove-Regular', sans-serif;
		font-size: 0.7em;
		color: white;
		/*margin: 0.1% 0 0 0;*/
	}

/* Video Background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure the video is behind everything else */
}

/*.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensure the background image is behind everything else */
/*}*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 0; /* Ensure the overlay is above the background image */
    display: block; /* Ensure the overlay is displayed */
	 /*pointer-events: none;*/
}

.page-content{
    display: block; /* Show overlay on question, answer, and result pages */
}

#options-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-between;
}

.option-btn {
    margin: 10px;
}

.bottom-content {
    position: fixed; /* Makes the element stick in place */
    bottom: 0; /* Aligns it to the bottom of the viewport */
    width: 100%; /* Ensures it stretches across the screen width */
    text-align: center; /* Centers the content within the element */
    background-color: hsl(0deg 0% 0% / 0%); /* Optional: Apply a background color to ensure visibility */
    padding: 10% 0 10% 0;  /* Adjusts spacing around the content */
}

.btm {
	/* media Query */
	display: flex;
	font-size: 1em;
	/*padding: 10px; /* Add padding to prevent cropping */
	align-content: flex-start;
	flex-direction: column;
	width: 100%;
	color: white;
	font-family: 'UberMove-Regular', sans-serif;
	/*text-decoration: underline;*/
	align-items: center;
	flex-wrap: nowrap;
}

.btm a {
	color: white;
    font-family: 'UberMove-Regular', sans-serif;
    text-decoration: underline;
}

.btm a:hover {
    text-decoration: underline;
}
/* 
Verified devices
iphone 15 pro - OK
iphone 15 - OK
iphone 13 - OK
iphone X - OK
iphone 15 pro max - ok
*/

/* Xiaomi Mi 11, Nord 2*/
@media only screen 
  and (min-device-width: 320px) 
  and (min-device-height: 568px)
  and (-webkit-device-pixel-ratio: 2){
	    .title { font-size: 1.8em;
		margin: 5% 0 0 0;
	}
	.subtitle { font-size: 1.7em; }
	.ins-title { font-size: 2.7em;
		margin: 10% 10% 5%;
	}
	.ins-subtitle { font-size: 1.5em;
		margin: 0 10% 0;
	}
	.ques-title { font-size: 1.7em;
		margin: 10% 5% 5%;
		line-height: 1.1;
	}
	.ques-text { font-size: 3.1em; 
		margin: 0 6% 0;
	}
	.answer-title { font-size: 1.6em;
		margin: 10% 5% 5%;
	}
	.answer-correctOption{ font-size: 3em;
		margin: 5% 5% 0;
	}
	.answer-text { font-size: 1.9em;
		margin: 1% 5% 0;
	}
	.result-title { font-size: 1.5em;
		margin: 0 10% 0;	
	}
	.result-text { font-size: 2.8em;
		margin: 0 2% 0;	
	}
	.result-description { font-size: 1.5em; 
		margin: 0 5% 0;
	}
	p { font-size: 1.5em; }
	button.btn.yellow {	border-radius: 40px;
		font-size: 2.3em;
		margin: 20px 5px;
		width: 60%;
	}
	button.btn.blue { /*Defined in main.js*/ }
	.privacy-policy{ font-size: 1em; }
  }

/* Styles for most other iPhones*/
  @media only screen 
  and (min-device-width: 320px) 
  and (min-device-height: 568px) 
  and (-webkit-device-pixel-ratio: 3) {
	  button.btn.blue { /*Defined in main.js*/ }
  }
  
  
/* Styles for most iPhones */
/*
iphone 15 pro max
iphone 14 pro max
iphone 13 pro max
iphone 12 pro max
iphone 11 pro max
iphone 11*/
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 430px) 
  and (min-device-height: 896px) 
  and (max-device-height: 932px) 
  and (-webkit-device-pixel-ratio: 2), 
  only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 430px) 
  and (min-device-height: 896px) 
  and (max-device-height: 932px) 
  and (-webkit-device-pixel-ratio: 3) {
	  
	.title {
		font-size: 1.8em;
		margin: 5% 0 0 0;
	}
	.subtitle { font-size: 1.7em; }
	.ins-title { font-size: 2.7em;
		margin: 10% 10% 5%;
		line-height: 1.1;
	}
	.ins-subtitle {	font-size: 1.5em;
		margin: 0 10% 0;
	}
	.ques-title { font-size: 1.7em;
		margin: 10% 5% 5%;
		line-height: 1.1;
	}
	.ques-text { font-size: 2.9em; }
	.answer-title { font-size: 1.6em;
		margin: 10% 5% 5%;
	}
	.answer-correctOption{ font-size: 3em;
		margin: 5% 5% 0;
	}
	.answer-text { font-size: 1.9em;
		margin: 1% 5% 0;
	}
	.result-title { font-size: 1.8em; }
	.result-text { font-size: 3em; }
	.result-description { font-size: 1.5em; }
	p { font-size: 1.5em; }
	button.btn { padding: 10px 20px;
		margin-top: 20px;
	}
	button.btn.yellow { border-radius: 40px;
		font-size: 2.3em;
		margin: 20px 5px;
		width: 60%;
	}
	button.btn.blue { /*Defined in main.js*/ }
	.privacy-policy{ font-size: 1em; }
}

/* iPhone X */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 812px) 
  and (-webkit-device-pixel-ratio: 3) {
	  
	.ques-text { font-size: 2.6em; }
	button.btn.blue { /*Defined in main.js*/ }
	.result-title { font-size: 1.35em; }
	.result-text { font-size: 2.5em; }
	.result-description { font-size: 1.2em; }
}

/* iPhone SE (2nd and 3rd generation) */
@media only screen 
  and (device-width: 375px) 
  and (device-height: 667px) 
  and (-webkit-device-pixel-ratio: 2) {
    
	.ques-title { font-size: 1.5em;	}
	.ques-text { font-size: 2em; }
	button.btn.blue { /*Defined in main.js*/ }	
	.result-title {	font-size: 1.35em;
		margin: 0 10% 0;
	}
	.result-text { font-size: 2.5em;
		margin: 0 2% 0;
	}
	.result-description { font-size: 1.3em;
		margin: 0 8% 0;
	}
	.bottom-content { padding: 2% 0 5% 0;
	}
	button.btn.yellow { margin: 10px 5px; }
}

/* Pixel 7 */
@media only screen 
  and (device-width: 412px) 
  and (device-height: 915px) {
   .title { font-size: 1.8em;
		margin: 5% 0 0 0;
	}
	.subtitle { font-size: 1.7em; }
	.ins-title { font-size: 2.7em;
		margin: 10% 10% 5%;
		line-height: 1.1;
	}
	.ins-subtitle { font-size: 1.5em;
		margin: 0 10% 0;
	}
	.ques-title { font-size: 1.7em;
		margin: 10% 5% 5%;
		line-height: 1.1;
	}
	.ques-text { font-size: 2.9em; }
	.answer-title { font-size: 1.6em;
		margin: 10% 5% 5%;
	}
	.answer-correctOption{ font-size: 3em;
		margin: 5% 5% 0;
	}
	.answer-text { font-size: 1.9em;
		margin: 1% 5% 0;
	}
	.result-title { font-size: 1.8em; }
	.result-text { font-size: 2.5em; }
	.result-description { font-size: 1.5m; }
	p { font-size: 1.5em; }
	button.btn.yellow {	border-radius: 40px;
		font-size: 2.3em;
		margin: 20px 5px;
		width: 60%;
	}
	button.btn.blue { /*Defined in main.js*/ }
	.privacy-policy{ font-size: 1em; }
}
/* Google Pixel 7 Pro */
@media only screen 
  and (device-width: 412px) 
  and (device-height: 892px) 
  and (-webkit-device-pixel-ratio: 3.5) {
    .title { font-size: 1.8em;
		margin: 5% 0 0 0;
	}
	.subtitle { font-size: 1.7em; }
	.ins-title { font-size: 2.7em;
		margin: 10% 10% 5%;
	}
	.ins-subtitle { font-size: 1.5em;
		margin: 0 10% 0;
	}
	.ques-title { font-size: 1.7em;
		margin: 10% 5% 5%;
		line-height: 1.1;
	}
	.ques-text { font-size: 3em; 
		margin: 0 7% 0;
	}
	.answer-title { font-size: 1.6em;
		margin: 10% 5% 5%;
	}
	.answer-correctOption{ font-size: 3em;
		margin: 5% 5% 0;
	}
	.answer-text { font-size: 1.9em;
		margin: 1% 5% 0;
	}
	.result-title { font-size: 1.5em;
		margin: 0 10% 0;	
	}
	.result-text { font-size: 2.8em;
		margin: 0 2% 0;	
	}
	.result-description { font-size: 1.5em; 
		margin: 0 5% 0;
	}
	p { font-size: 1.5em; }
	button.btn.yellow {	border-radius: 40px;
		font-size: 2.3em;
		margin: 20px 5px;
		width: 60%;
	}
	button.btn.blue { /*Defined in main.js*/ }
	.privacy-policy{ font-size: 1em; }
}