/*Menu drop-down*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}
html, body {
	height: 100%;			
}
body {
	font-family:Times New Roman;       
	margin: 0px;
	background: #000;
	color: #fff	;		
}
/*font*/
@font-face {
	font-family: myFont;
	src: url('../fonts/font-1.ttf');
}	
#header {
	position: fixed;
    margin-top: -22px; 
	z-index:99;
	width: 100%;
	background: green;
}
.gamerock-div {
	letter-spacing:13px;          
	background:linear-gradient(to right bottom, #ffdeb4, #4a7ea0);
	color:#000;
	width: 100%; 
	height:50px; 
	padding-left:10px; 
	font-size:25px;     
	font-weight:bold;
	margin-top:22px;
	padding-top: 10px;  
	font-family: myFont;
	z-index: 99;
}   
.container {				
	display: block;
	height: 100%;
	border: 0px solid red;
	width: 45px;
	position: absolute;
	justify-self: right;
	top: 15px;
}
.nav {
	position: absolute;
	width: 300px;
	height: 0px;
	border-radius: 15px;
	transition: height 1s;
	right: 10px;
	background: linear-gradient(to right bottom, #ffdeb4, #4a7ea0);
	overflow: hidden;
	z-index: 99;
	cursor: pointer;
}

#label-1 {				
font-size: 2.4em;				
line-height: 60px;				
cursor: pointer;
color: #fff;				
transition: 2s;	
padding-right: 12px;				
}		
#label-2 {
color: transparent;
margin-left: -40px;		
}

.label-container {
margin-top: 0px;
background: #000;			
margin-left: 0px;		
height: 57px;
width: 100%;
display: block;
padding-left: 1px

}	

#toggle {
display: none;
}
.nav > a {
display: block;
line-height: 30px;
text-decoration: none;
color: #000;
padding-left: 25px;
padding-top: 20px;
font-size: 20px;
cursor: pointer;
}
.nav > a:hover {
background: rgba(0,0,0,.7);
color: #fff;
border-left: 5px solid #fff;
box-shadow: 0px 10px 10px;
padding-left: 40px;
}


#toggle:checked ~ nav {
height: 310px;
}


#toggle:checked ~ .label-container > #label-1 {
color: transparent;
}

#toggle:checked ~ .label-container > #label-2 {
font-size: 2.4em;				
line-height: 60px;				
cursor: pointer;
color: #fff;				
transition: 2s;					
}

/* buttons in menu*/
/*btn-1*/
#btn-1 {
background: none;
border: none;
font-size: 20px;
padding-top: 15px;
padding-left: 18px;
font-family:Times New Roman;
}
.btn-1-body {
position: absolute;
width: 0px;
height: 90px;
background: transparent;				
margin-left: 110px;
margin-top: -30px;
overflow: hidden;
transition: width 1s
}					
.btn-1-body > a {
text-decoration: none;
color: #000;
font-size: 14px;
display: block;
padding-top: 10px;
cursor: pointer;
}
.btn-1-body a:hover {
background: #000;
color: #fff;
}
#btn-1:hover > .btn-1-body {
width: 100px;
border: 1px solid black;
}
/*btn-2*/
#btn-2 {
background: none;
border: none;
font-size: 20px;
padding-top: 15px;
padding-left: 18px;
font-family: Times New Roman;
}
.btn-2-body {
position: absolute;
width: 0px;
height: 90px;
background: transparent;				
margin-left: 110px;
margin-top: -30px;
overflow: hidden;
transition: width 1s
}					
.btn-2-body > a {
text-decoration: none;
color: #000;
font-size: 13px;
display: block;
padding-top: 10px;
}
.btn-2-body a:hover {
background: #000;
color: #fff;
}
#btn-2:hover > .btn-2-body {
width: 100px;
border: 1px solid black;
}

#night-day-container {
border: 0px solid #000;
width: 20%;
padding: 0px 0px 0px 20px;
float: right;
transition: all 2s ease; 
}
#night-mode {
color: #fff;
font-size: 2.2em;
visibility: hidden;

}		
#day-mode {
color: #fff;
font-size: 2.2em;
margin-left: -40px;
cursor: pointer;

}
#night-day-toggle {
display: none;
}
#night-day-toggle:checked ~ #day-mode{
visibility: hidden;
}
#night-day-toggle:checked ~ #night-mode{
visibility: visible;
cursor: pointer;

}

body:has(#night-day-toggle:checked) {
background-color: #fff;  
color: #000;  
}

/* menu end*/

#div1:target {
background: linear-gradient(to left bottom, #09203F, #fff, #724004 );
color: #f8f9f9;
padding: 10px;
transition-duration: 2s;
border: 1px solid black;
}  



/* bread crumbs*/

.breadcrumbs {
background: #2A9292;                
border-radius: 10px;
margin: 0 10px 10px 0px;
max-width: 95%;
display: inline-block;          
}
.breadcrumbs ul {
margin: 0;
padding: 10px;   

}
.breadcrumbs li {
display: inline;

}

.breadcrumbs li > a {
color: #fff;
text-decoration: none;
border-bottom: 1px solid white;
line-height: 20px;
}
.breadcrumbs li:last-child > a {
color: #fff;
text-decoration: none;
border: none;
}        
/* bread crumbs END*/ 

     

/*     image    gallery    */

.image-container {
margin: 0 auto;
width: 80%;
box-shadow: 0 15px 30px rgba(0,0,0,0.30), 0 11px 8px rgba(0,0,0,0.22);
margin-bottom: 20px;
transition-duration: 1s;
}
.image-container:hover {
width: 90%;
box-shadow: 0 18px 36px rgba(0,0,0,0.30), 0 14px 11px rgba(0,0,0,0.22);
}
/* make the images responsive */
img {
width: 100%;
height: auto;         
}
.image-description {
padding: 0 15px 15px 15px;
text-align: center;
}
				

#bg-image {
position: absolute;
z-index: -20;
filter: brightness(0.5) blur(.7px);
height: 545px;
}				
#bg-image-2 {
position: absolute;
filter: brightness(0.7) blur(1px);
margin-top: -15px;
height: 190px;
z-index: -20;
display: block;
}
/* 3d image slideshow start */
#slider-section {
	
}
.slideshow {
margin: 0 auto;
padding-top: -20px;
height: 200px;
perspective: 1000px;
} 
.content {
margin: auto;
width: 150px;
perspective: 1000px;
position: relative;
padding-top: 15px;
transform-style: preserve-3d;
} 
.slider-content {
width: 100%;
position: relative;
margin-right: 50px;
animation: rotate 15s infinite linear;
transform-style: preserve-3d;
} 
.slider-content:hover {
cursor: pointer;
animation-play-state: paused;
transform: scale(1.2);
transition: all 300ms;
}

.slider-content figure:nth-child(1) {
transform: rotateY(0deg) translateZ(100px);
}
.slider-content figure:nth-child(1):hover {
transform: rotateY(0deg) translateZ(200px);
}
.slider-content figure:nth-child(2) {
transform: rotateY(45deg) translateZ(100px);
}
.slider-content figure:nth-child(2):hover {
transform: rotateY(45deg) translateZ(200px);
}
.slider-content figure:nth-child(3) {
transform: rotateY(90deg) translateZ(100px);
}
.slider-content figure:nth-child(3):hover {
transform: rotateY(90deg) translateZ(200px);
}
.slider-content figure:nth-child(4) {
transform: rotateY(135deg) translateZ(100px);
}
.slider-content figure:nth-child(4):hover {
transform: rotateY(135deg) translateZ(200px);
}
.slider-content figure:nth-child(5) {
transform: rotateY(180deg) translateZ(100px);
}
.slider-content figure:nth-child(5):hover {
transform: rotateY(180deg) translateZ(200px);
}	
.slider-content figure:nth-child(6) {
transform: rotateY(225deg) translateZ(100px);
}
.slider-content figure:nth-child(6):hover {
transform: rotateY(225deg) translateZ(200px);
}	
.slider-content figure:nth-child(7) {
transform: rotateY(270deg) translateZ(100px);
}
.slider-content figure:nth-child(7):hover {
transform: rotateY(270deg) translateZ(200px);
}	
.slider-content figure:nth-child(8) {
transform: rotateY(315deg) translateZ(100px);
}
.slider-content figure:nth-child(8):hover {
transform: rotateY(315deg) translateZ(200px);
}			
.shadow {
position: absolute;
box-shadow: 0px 0px 0px #000;
padding: 35px;
width: 99%;	
text-align: center;

}
.slider-content img {
image-rendering: auto;
transition: all 300ms;
aspect-ratio: 1/1;
border-radius: 10px;
padding: 0px 5px 0px 5px;

}
.shadow a {
text-decoration: none;
color: transparent;	
}
.shadow img:hover ~ a {
color: #B0EFF0;
}
@keyframes rotate {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(360deg);
}
}
/*3d image slideshow end */	

/*Hot and Exclusive games start*/
.basic-h6 {
	margin-left: 20px; 
	color: #031e53; 
	font-size: 20px; 
	padding: 20px
}
#div-hotgames {
    margin-top: 150px;
	position: relative;
}

#div-exclusivegames, #div-hotgames {
border: .2px solid black;    
background: linear-gradient(to right bottom, #F0E0F9, #DAF8F9 );  
width:90%; 
margin:10px auto;  
border-radius:15px 0px 15px 0px;
display: grid;
overflow-y: scroll;
max-height: 540px;
}
#div-exclusivegames a, #div-hotgames a {
text-decoration: none; 
color: #6F500B;
display: block;
width: 90%;
border: 0px solid red;
margin: 10px auto;

}
.exclusivegames {


}
.exclusivegames img, .hotgames img {
width: 100px;
height: 90px; 
float: left; 
margin-right: 10px; 
border-radius: 5px;
}
/*Hot and Exclusive games end*/ 

/*Gametools start */ 
#div-gametools, #apps-tools {
border: .2px solid black;    
background: linear-gradient(to right bottom, #F0E0F9, #DAF8F9 );  
width:90%; 
margin:10px auto;  
border-radius:15px 0px 15px 0px;
overflow-y: scroll;
max-height: 540px;
}
.gametools-wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);

}
#div-gametools a, #apps-tools a {
text-decoration: none; 
color: #6F500B;
display: block;
width: auto;
margin: 10px 4px;
}
.gametools-wrapper > a:nth-child(odd) {
	border: 0px solid blue;
	grid-column: 1;
}
.gametools-wrapper > a:nth-child(even) {
	border: 0px solid rgb(255, 34, 0);
	grid-column: 2;
}
.gametools {
justify-self: center;
}
.gametools img {
width: 100px; 
height: 90px; 
border-radius: 5px; 
box-shadow: 0px 10px 20px black;
}
/*Gametools end */

/*download-btn1 start */
.a-download-btn1 {
margin: 0 auto;
display: block;
border: 0px solid red;
width: 30%;
text-align: center;
}
.download-btn1 {
background: linear-gradient(to right bottom, aqua, #ccc, pink); 
color: #000;
padding: 19px;
border: none; 
border-radius: 50% / 100%; 
font-size: 18px; 
box-shadow: 0 0 15px rgba(0, 0, 0, .25);
cursor: pointer; 
font-weight: 700;
}
/*download-btn1 end */
/*share on start */ 
.div-shareon {
text-align: center;
display: flex;
width: 80%;
justify-self: center;
}
.shareon-child {
border: none;
display: flex;
width:50px;
justify-content: center;
margin: 0 10px;

}
.div-shareon a{
text-decoration: none;
border-radius: 50%;
box-sizing: border-box;
width: 50px;
height: 50px;
text-decoration: none;
transition: .3s ease;
background: none;
color: var(--color);
font-size: 2.5em;
cursor: pointer ;
pointer-events: auto;

}
.div-shareon a:hover { 	  
background: var(--color);
box-shadow: 0 0 5px var(--color), 
0 0 25px var(--color),
0 0 50px var(--color),
0 0 200px var(--color);
}
.div-shareon img{
width: 30px;
height: 30px;	
-webkit-box-reflect: below 5px linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,0.4));
}
/*share on end */  

/*div-brokenlink start */
.div-brokenlink {
width: 85%; 
padding: 10px;
border: none; 
background:linear-gradient(to right bottom, #A9E2EF, #E3B9F0);   
border-radius: 5px; 
color:#000; 
margin: 15px auto;
}
/*div-brokenlink end*/

/*===simple CSS only image slider start===*/
.slider{
width: 60%;
aspect-ratio: 9 / 16;
margin: 20px auto;
border: 0px solid green;
}

.track{
border: 0px solid red;
overflow: hidden;
display: flex;
width:100%;
aspect-ratio: 9 / 16;
align-items: center;
}

.slider:hover .track img{
animation-play-state: paused; 
width: 80%;
}
.slider:hover {
width: 70%;
}
.track img{
width: 100%;
height: 100%;
animation: slide 16s infinite;
object-fit: contain;
flex: 0 0 100%;
display: block;
}

@keyframes slide{
0%, 20%   { transform: translateX(0%); }
25%, 45%  { transform: translateX(-100%); }
50%, 70%  { transform: translateX(-200%); }
75%, 95%  { transform: translateX(-300%); }
100%      { transform: translateX(0%); }
}
/*pagination bullets*/
.slider::after {
content: '';
display: block;
width: 12px;
height: 12px;
background: #ccc;
border-radius: 50%;
left: 30%;
box-shadow:
20px 0 #ccc,
40px 0 #ccc,
60px 0 #ccc;
position: relative;
animation: bullet 16s infinite;
}

/*Animate bullet to reflect slide */
@keyframes bullet {
/* Slide 1 active (0–25%) */
0%, 24.9% {
background: #007bff;  /* bullet 1 */
box-shadow:
20px 0 #ccc,
40px 0 #ccc,
60px 0 #ccc;
}
/* Slide 2 active (25–50%) */
25%, 49.9% {
background: #ccc;
box-shadow:
20px 0 #007bff,
40px 0 #ccc,
60px 0 #ccc;
}
/* Slide 3 active (50–75%) */
50%, 74.9% {
background: #ccc;
box-shadow:
20px 0 #ccc,
40px 0 #007bff,
60px 0 #ccc;
}
/* Slide 4 active (75–100%) */
75%, 100% {
background: #ccc;
box-shadow:
20px 0 #ccc,
40px 0 #ccc,
60px 0 #007bff;
}
}
.slider:hover::after {
animation-play-state: paused;
}
/*===simple CSS only image slider end===*/ 


/* Table*/
table {
    border-collapse: collapse;
    color: #000;
    font-family: sans-serif;
    margin-right: 15px;
    margin-left:15px;
    margin-top: 50px;
      }
table, th, td {
    border: 1px solid black;
    text-align: center;
      }
th, td {
    padding: 5px;
      }
      /* selects odd rows */
tr:nth-child(odd) {
    background: #C5D5D7;
      }
      /* selects even rows */
tr:nth-child(even) {
    background: #fff;
      }    


/*contact us page*/
#contact-us-section, #other-socials-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 10px auto;
}
#contact-us-section a, #other-socials-section a {
	margin: 20px auto;
	justify-self: center;
}

/*footer start */
footer {
color: #000;
background:linear-gradient(to right bottom, #ffdeb4, #4a7ea0); 
height: 185px; 
font-family: monospace; 
margin-bottom: -7px
}
#footer-div {
margin: 0 autp;
text-align: center;					
}
footer a {
text-decoration: none;
margin: 0px 13px 0px 10px;			
}
footer img {
width: 30px;
height: 30px;		 
} 
footer h4 {
	text-align: center;
}
#div1 {
	border: 1px solid black;
	margin: 10px auto;
}
#div1 a i {
	color: #000;
}
#div1 a {
	margin: 0 10px 0 10px;
}

/*footer end*/    