body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: auto;
font-family: 'Roboto', Arial, sans-serif;
background-color: #333333; 
color: #FFFFFF; 
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
transition: filter 0.5s ease;
}
@media screen and (max-width: 1024px) {
body, html {
overflow: hidden;
}
}
@media (hover: hover) and (pointer: fine) {
body, html::-webkit-scrollbar {
width: 9px; 
height: 9px;
display: initial; 
}

body, html::-webkit-scrollbar-thumb {
background-color: red; 
border-radius: 5px; 
}

body, html::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.5); 
}

body, html::-webkit-scrollbar-corner {
background-color: transparent; 
}
}
hr {
border: 1px solid #686868;
}

.parent {
display: flex;
}

.top-nav {
background-color: #333;
color: white;
width: 100%;
padding: 10px;
z-index: 1000;
display: flex;
align-items: center;
justify-content: space-between; 
box-sizing: border-box; 
overflow: hidden;
height: 5rem; 
position: fixed; 
top: 0; 
}
.top-nav .logoimg {
border-radius: 50%;
height: 45px;
width:45px;
border:none;
}
.top-nav p {
font-size: 20px;
font-weight: 800;
cursor: pointer;
color: red;
}
.top-nav i {
font-size: 28px;
font-weight: 800;
cursor: pointer;
margin-right: 10px;
}
.top-nav i:first-of-type {
margin-left: 15px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
flex-grow: 1; 
margin: 0 10px; 
padding: 10px; 
border: 1px solid #ccc;
border-radius: 25px;
font-size: 16px; 
color: #333; 
background-color: #f9f9f9; 
transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
outline: none; 
border-color: #007bff; 
}

::-webkit-input-placeholder {
color: #999;
}
:-moz-placeholder { 
color: #999;
opacity: 1;
}
::-moz-placeholder { 
color: #999;
opacity: 1; 
}
:-ms-input-placeholder { 
color: #999;
}

.verified_acc_set {
height: 20px;
width:20px;
color: rgb(29, 155, 240);
position: relative; top:4px; left:5px;
cursor:pointer;
}

.sidebar {
width: 15%;
background-color: #222; 
color: #fff;
padding: 20px;
box-sizing: border-box;
font-weight: 800;
}
.sidebar_main {
position: fixed;
left: 0;
top:5rem;
width: 14.7%;
}
.sidebar-header {
display: flex;
border-bottom: 1px solid grey;
padding: 10px;
}
.sidebar-header i {
font-size: 20px;
position: relative;
top:4px;
}

.sidebar-header h3 {
font-size: 19px;
}
.sidebar-menu {
list-style-type: none;
padding: 10px;
}
.sidebar-menu li a {
color: #fff;
text-decoration: none;
display: block;
transition: 0.3s;
font-size: 20px;
margin-bottom: 30px;
}
.sidebar-menu i {
font-size: 22px;
position: relative;
top:4px;
}
.main-content {
flex-grow: 1;
overflow-y: hidden;
padding: 20px;
margin-top: 5rem;
width: 85%;
}

.signup_login_alert {
display:flex;
align-items: center;
justify-content: center;
}
.signup_login_alert button {
align-items: center;
background-clip: padding-box;
background-color: #fa6400;
border: 1px solid transparent;
border-radius: .25rem;
box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
display: inline-flex;
font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 16px;
font-weight: 600;
justify-content: center;
line-height: 1.25;
margin: 15px;
min-height: 3rem;
padding: calc(.875rem - 1px) calc(1.5rem - 1px);
position: relative;
text-decoration: none;
transition: all 250ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: baseline;
width: auto;
-webkit-animation: breathing 2s ease-out infinite normal;
animation: breathing 2s ease-out infinite normal;
}

.signup_login_alert button:hover,
.signup_login_alert button:focus {
background-color: #fb8332;
box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.signup_login_alert button:hover {
transform: translateY(-1px);
}

.signup_login_alert button:active {
background-color: #c85000;
box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
transform: translateY(0);
}

@-webkit-keyframes breathing {
0% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}

25% {
-webkit-transform: scale(1);
transform: scale(1);
}

60% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}

100% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
}

.slider {
overflow-x: auto;
white-space: nowrap;
scroll-snap-type: x mandatory; 
}

.slider::-webkit-scrollbar {
display: none; 
}

.slider .slide {
display: inline-block;
width: 300px;
height: calc(300px * 9 / 16);
margin: 5px;
line-height: calc(300px * 9 / 16);
text-align: center;
font-size: 24px;
scroll-snap-align: center; 
border-radius: 10px;
}


@media (hover: hover) and (pointer: fine) {
.slider::-webkit-scrollbar {
width: 8px; 
height: 8px;
display: initial; 
}

.slider::-webkit-scrollbar-thumb {
background-color: red; 
border-radius: 5px; 
}

.slider::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.5); 
}

.slider::-webkit-scrollbar-corner {
background-color: transparent; 
}
}
.poster {
background-image: url(../img/poster.png);
background-size: cover;
background-size: 110%;
background-repeat: no-repeat; 
}
.horrorposter {
background-image: url(../img/horrorposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.thrillerposter {
background-image: url(../img/thrillerposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.romanceposter {
background-image: url(../img/romanceposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.cricketposter {
background-image: url(../img/cricketposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.sciencefictionposter {
background-image: url(../img/sciencefictionposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.fantasyposter {
background-image: url(../img/fantasyposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
}
.adventureposter {
background-image: url(../img/adventureposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.historicalposter {
background-image: url(../img/historicalposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.philosophyposter {
background-image: url(../img/philosophyposter.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.category {
overflow-x: auto;
white-space: nowrap;
margin-top: 10px;
}
.category .round {
display: inline-block;
border: 1px solid #313131;
width: 90px;
height:90px;
margin: 5px;
border-radius: 50%;
cursor: pointer;
}
.category::-webkit-scrollbar {
display: none;
}
.category {
-ms-overflow-style: none;
scrollbar-width: none;
}
.horrorbg {
background-image: url(../img/bg-horror.png);
background-size: cover;
background-size: 110%;
background-repeat: no-repeat;
}
.thrillerbg {
background-image: url(../img/bg-thriller.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
} 
.romancebg {
background-image: url(../img/bg-romance.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
}
.politicsbg {
background-image: url(../img/bg-politics.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
}
.cricketbg {
background-image: url(../img/bg-cricket.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
}
.psychologybg {
background-image: url(../img/bg-psychology.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat;
}
.sciencefictionbg {
background-image: url(../img/bg-Sciencefiction.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.fantasybg {
background-image: url(../img/bg-fantasy.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.adventurebg {
background-image: url(../img/bg-adventure.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.historicalbg {
background-image: url(../img/bg-historical.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.philosophybg {
background-image: url(../img/bg-philosophy.png);
background-size: cover;
background-size: 100%;
background-repeat: no-repeat; 
}
.story_con {
border:none;
}
.story_con header {
display: flex;
align-items: center;
}
.story_con header i {
color:red;
margin: 5px;
}
.story_con .stories {
overflow-x: auto; 
white-space: nowrap; 
display: flex;
padding: 10px;
}

.stories .container {
height: 120px;
width: 120px;
flex-shrink: 0; 
margin-right: 15px; 
border-radius: 10px;
}
.container img {
object-fit: cover; 
width: 100%; 
height: 100%; 
border-radius: 10px;
}
.stories::-webkit-scrollbar {
display: none;
}

.index.php {
text-align: center;
font-size:16px;
}

.language_popup {
position: absolute;
left:0;
right:0;
bottom:0;
height:150px;
background-color: hsl(0, 0%, 100%);
z-index: 2000;
display: none;
}
.language_popup p {
color:#111;
margin-left: 20px;
font-weight: 800;
}
.language_popup b {
color:#111;
margin-right: 20px;
margin-top: 5px;
font-weight: 800;
position: absolute;
top:0;
right: 0;
font-size: 35px;
cursor: pointer;
}
.buttoncon {
display: flex;
width: 100%;
align-items: center;
justify-content: center;
}
.buttoncon button {
background-color: #FFFFFF;
border: 1px solid #222222;
border-radius: 8px;
box-sizing: border-box;
color: #222222;
cursor: pointer;
display: inline-block;
font-family: Circular,-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
font-size: 16px;
font-weight: 600;
line-height: 20px;
margin: 10px;
outline: none;
padding: 13px 23px;
position: relative;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
width: auto;
}

.buttoncon button.active {
border:2px solid red;
color:red;
}

.buttoncon button:disabled {
border-color: #DDDDDD;
color: #DDDDDD;
cursor: not-allowed;
opacity: 1;
}

html, body {
overflow: hidden; 
height: 100%; 
}
.blur {
filter: blur(10px);
}
.loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
z-index: 9999;
}
.loader {
width: 56px;
height: 56px;
border-radius: 50%;
border-top: 5px solid red;
border-right: 5px solid transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#loading-text {
font-size: 19px;
position: relative; top:30px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-weight: 900;
}

.footer-txt{
text-align: center;
}
/* Mobile Responsive */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1024px){
.parent {
display: flex;
flex-direction: column;
height: 100%;
}
.top-nav i{
display:none;
}
.sidebar {
display: none; 
}
.main-content {
box-sizing: border-box;
flex-grow: 1;
overflow-y: auto;
padding: 20px;
margin-top: 5rem;
width: 100%;
}
@media (hover: hover) and (pointer: fine) {
.main-content::-webkit-scrollbar {
width: 9px; 
height: 9px;
display: initial; 
}

.main-content::-webkit-scrollbar-thumb {
background-color: red; 
border-radius: 5px; 
}

.main-content::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.5); 
}

.main-content::-webkit-scrollbar-corner {
background-color: transparent; 
}
}
}