
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: sans-serif;
}
:root{
	--background-color: #061222;
	--color-text: #fff;
	--color-title: #ffffff;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body{
	background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
	transition: 0.8s;
}
/*----head area start----*/

/* Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Slightly reduced height for better responsiveness */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #061222;
    z-index: 1000;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Adds slight shadow */
    transition: background 0.3s ease-in-out; /* Smooth transition effect */
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    /* In mobile, this menu might stack or hide behind a hamburger */
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 10px;
    transition: 0.3s;
}

.menu a:hover {
    color: #00aaff;
}

/* Search Bar */
.menu input[type="search"] {
    padding: 8px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.logo h2 a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

#check {
    display: none;
}

.checkbtn {
    margin-right: 40px;
    float: right; /* Consider using flexbox for alignment instead of float if possible */
    line-height: 80px;
}

.toggle-btn {
    display: none; /* Hidden by default, likely for desktop */
    margin-right: 20px;
    background: var(--color-title);
    padding: 0.2em 1.2em;
    border-radius: 100vh;
    cursor: pointer;
}

.toggle-btn span {
    color: #111827;
    font-size: 18px;
}

#moon {
    width: 20px;
}

.menu input {
    padding: 0.4em 1em;
    outline: none;
    border: none;
    border-radius: 30px;
    border: .6px solid rgb(168, 168, 168);
}

/* Login/Register & Subscribe Buttons */
.loginregister {
    list-style: none;
    display: flex; /* Make it a flex container to align buttons horizontally */
    align-items: center; /* Vertically align items */
    gap: 10px; /* Space between buttons */
    margin-left: 20px; /* Add some space from the main menu */
}

.loginregister li a {
    font-size: 16px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: #00aaff; /* Default background for these action buttons */
    color: #fff !important; /* Ensure white text, override inline style */
    transition: 0.3s;
    display: inline-block; /* Ensure padding and background apply correctly */
}

.loginregister li a:hover {
    background: #0088cc;
}

/* Optional: Make the Subscribe button stand out more if desired */
.subscribe-btn {
    background: var(--orange-600); /* Use a different color, like orange */
}

.subscribe-btn:hover {
    background: var(--orange-700); /* Darker orange on hover */
}

/* Welcome Section */
.imgpic {
    width: 100%;
    padding: 50px 20px;
    background: url('your-image.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.mainpic h2 {
    font-size: 32px;
    color: #fff;
}

.mainpic p {
    font-size: 18px;
    color: #fff;
}

/*----head area ends----*/

.imgpic {
	background: linear-gradient(#ff00f7, #29293c);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 40vh;
	overflow: hidden;
  }
  
  .impictop {
	display: grid;
	gap: 20px;
	justify-content: center;
	align-items: center;
  }
  
  .mainpic {
	grid-column: 1;
  }
  
  .searchholder {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
  }
  
  .searchholder input {
	position: relative;
	padding: 1em 1em;
	border: none;
	outline: none;
	border-radius: 20PX;
	width: 100%;
  }
  
  .searchholder button {
	position: absolute;
	padding: 1em;
	margin-left: 140px;
	border: none;
	outline: none;
	border-radius: 20PX;
	background-color: #ffc000;
	color: #fff;
	cursor: pointer;
	width: 10%;
  }
  
  .mainpic h2 {
	display: inline-block;
	color: var(--color-text);
	font-size: 50px;
	font-weight: 600;
  }
  
  .mainpic p {
	color: var(--color-text);
  }
  
  .mainpic span {
	color: #ffc000;
	font-size: 70px;
	font-weight: 600;
  }
/*----new song area start----*/


.container1{
	background: #061222;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	justify-content: center;
	gap: 10px;
	padding: 20px;
	border-top: 2px solid rgb(0, 0, 0, 0.5);
	border-bottom: 2px solid rgb(0, 0, 0, 0.5);
	
}
.containerbox{
	box-shadow: 0px 0px 0px 0.1px #000000;
	background-color: #111827;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
	margin: 20px 30px;
	width: 400px;
	height: 150px;

}


.box1{
	margin-left: 10px;
}
.imageholder1{
	width: 140px;
	height: 150px;
	border-radius: 10px;
	margin-left: 40px;
	overflow: hidden;
}
.container img{
	margin-right: 10px;
	width: 100%;
    height: 100%
}

.box1 h3{
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 400;
	color: var(--color-text);
	transition: 0.3s ease;
}
.box1 h3:hover{
	color: var(--color-title);
}
.box1 p{
	text-transform: capitalize;
	color: var(--color-text);
}
.box1 span{
	text-transform: capitalize;
}


.box1 h4{
	display: flex;
	justify-content: center;
	color: #1b1b1b;
	padding: 0.5em 0.3em;
	background: var(--color-title);
	margin-top: 20px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 2px;
	width: auto;
	height: auto;
}

.footer {
    position: relative;
    background-color: #061222;
    width: 100%;
    margin-top: auto;  /* Keeps footer at the bottom */
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensures the footer stays at the bottom */
}

.hoder {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
}

.hoder ul li {
    padding: 7px 0px;
}

.hoder ul li a {
    color: var(--color-text);
    transition: 0.3s ease;
}

.footer .hoder a:hover {
    color: var(--color-title);
}

.hoder ul {
    margin-right: 70px;
}

.hoder h2 {
    margin-left: 30px;
}

.footerrights {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footerrights p {
    color: var(--color-text);
    padding: 20px 0px;
}

#line {
    display: flex;
    background-color: #545454;
    height: 2px;
    width: 160%;
    margin-left: -90px;
}

/*----most downloded area start----*/

  .artisttext #Download {
	width: 230px;
	margin: 40px 0;
	display: flex;
	background: var(--color-title);
	padding: 0.7em 1em;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 4px;
	color: var(--background-color);
  }
  .artistpage {
	width: 100%;
	background: hsl(214, 70%, 8%);
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 2px solid rgb(0, 0, 0, 0.4);
	border-top: 2px solid rgb(0, 0, 0, 0.4);
  }
  .artistcontaniner {
	color: var(--color-text);
	width: 100%;
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(400px, 200px));
	gap: 20px;
	border-radius: 10px;
	padding: 70px 0px;
  }
  .artistimg {
	justify-content: center;
	align-items: center;
	width: 400px;
    min-height: 50vh;
    border-radius: 10px;
	background-color: rgb(233, 12, 85);
	background: #e0e0e0;
	overflow: hidden;
	border: 0.3px solid rgb(164, 164, 164);
  }
  .detailimghorder {
	width: 100%;
	height: 46vh;
	overflow: hidden;
  }
  .artistimg img {
	width: 100%;
    height: 100%;
  }
  .artisttext {
	padding: 0 20px;
  }
  .artisttext h2 {
	font-weight: lighter;
	font-size: 18px;
	padding: 5px 0;
  }
  .artisttext h3 {
	font-weight: 400;
	font-size: 18px;
	padding: 5px 0;
  }
  .artisttext h4 {
	font-weight: 500;
	font-size: 13px;
  }
 
/*----story page area start----*/
.storycontainer{
    display: flex;
    justify-content: center;
    align-items: center;
     background-color: var(--background-color);
    width: 100%;
     min-height: 84vh;
	 border-top: 1px solid rgb(20, 15, 27);
	 border-bottom: 1px solid rgb(20, 15, 27);
}
.sec3scon{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(366px, 1fr));
	justify-content: center;
	align-items: center;
	width: 100%;
    min-height: 70px;
	gap: 10px;
	margin: 20px;
  }
  

.secholder{
    justify-content: center;
    background-color: #061222;
    width: 380px;
    height: 430px;
    transition: .3s;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 auto;
	border: 2px solid rgb(0, 0, 0, 0.4);
}
.secsbox{
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #061222;
    width: 350px;
    height: 430px;
    overflow: hidden; 
    transition: .3s; 
}
.secsimg{
	width: 360px;
	height: 300px;
	border-radius: 6px;
	overflow: hidden;
  }
  .secsimg img{
  width: 350px;
  }
  .secsdetails{
	display: flex;
	justify-content: space-between;
	padding: 1em;
	width: 100%;
	height: 160px;
	color: rgb(255, 255, 255);
	overflow: hidden; 
  }
  .secsdetails #pricent{
	color: rgb(255, 255, 255);
  }
#share {
	width: 20px;
	height: 20px;
  }
  .image-container {
	position: relative;
  }
  
  .image-text {
	position: absolute;
	top: 0px;
	left: 30px;
	width: 100px;
	color: #fff;
  }
  
  .timestamp-container {
	display: flex;
	align-items: center;
	position: relative;
	gap: 7px;
	left: 8px;
	padding-bottom: 10px;
  }
.todaysboxholder{ 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    
}

.story{
	width: 100%;
	height: auto;
	margin: 20px;
}
#storytitle{
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px 0px;
    background-color: #111827;
}
.story p{
	color: var(--color-text);
}
.secholder h1{
	font-size: 10px;
    margin: 10px;
	color: rgb(255, 255, 255);
}
/*----dashboard area start----*/

.Dashbord{
	position: relative;
	display: flex;
	background: #1b1b1c;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 130px;
}
.Dashbordcontainer{
	display: flex;
	align-items: center;
	
}
.Dashbord h2{
	padding: 0% 70px;
}
.username{
	display: flex;
	align-items: center;
}

.username img{
	width: 50px;
	border-radius: 50%;
}
.username h2{
	color: #ffffff;
	display: flex;
 font-size: 16px;
}
#logout{
	margin-top: 120px;
	background-color: #9333ea;
	transition: all 0.3s;
}
#logout a{
	color: #f7f7f7;
	font-size: 23px;
}
#logout:hover{
	background: #b72121;
}
.Dashbordplace{
display: grid;
grid-template-columns: 200px 1fr;

}
.Dashbordplace #Dashbordholder{
	color: #ff1fb1;
	background: #1b1b1c;
	min-height: 130vh;
	width: 200px;

}
.Dashbordplace img{
	width: 30px;
    border-radius: 50px;
	margin: 0px 10px;
}
.uploadtebleholder input{
	padding: 1em;
	outline: none;
}
#Dashbordholder li{
	border: 1px solid rgb(20, 15, 27);
}
.Dashbordplace ul li {
	padding: 20px 0px;
	display: flex;
	transition: all .3s ease;
	
}
.Dashbordplace ul li a{
	color: #eaeaea;
	transition: 0.4s;

}
#Dashbordholder li:hover{
	background: var(--color-title);
}
.adminsection{
	width: 100%;
	background: #0c080c;
}
.AddAdmin{
	
	display: flex;
	align-items: center;
	
}
.AddAdmin span{
	font-size: 24px;
	font-weight: 600;
	color: var(--color-title);
	text-transform: uppercase;
}
.UserId #ur{
	display: flex;
	background: #1b1b1c;
	padding: 1em 1em;

}
.UserId ul li{
	padding: 0px 70px;
	color: var(--color-text);
}
.adimns ul{
	border: 1px solid rgb(190, 190, 190);
	display: flex;
	padding: 1em 2em;
}
.adimns ul li{
	padding: 0px 50px;
	color: var(--color-bolder);
}
.adimns ul li a{
	color: #1b1b1c;
}
.AddAdmin button{
	color: #ddd;
	border: none;
	padding: 0.6em 1.4em;
	background: var(--color-title);
	border-radius: 6px;
	cursor: pointer;
	
}
.AddAdmin button a{
	color: var(--color-text);
	transition: all 0.3s ease-in;
}
.AddAdmin button a:hover{
	color: var(--color-bolder);
}
.uploadtebleholder table th{
	justify-content: center;
	padding: 0px 60px;

}

.viewcontent {
    border-collapse: collapse;
    width: 100%;
}

.viewcontent th, .viewcontent td {
    border: 1px solid #160a1a;
    text-align: left;
}

.viewcontent th {
    background-color: #36094b;
}

.AddAdmin {
    display: flex;
    justify-content: space-between;
}

.AddAdmin button {
    margin: 0 10px;
}
/*===admin end===*/
.Uploadarea {
	
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;

}
.uploadcontent h2{
	font-size: 17px;
}
.uploadcontent{
	display: flex;
	width: 100%;
	margin: 0px 40px;
}
.uploadtebleholder div{
	display: block;
	margin-top: 20px;
}

.uploadcontent #Title{
	outline: none;
	width: 267px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
.uploadcontent #ArtistName{
	outline: none;
	width: 170px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
.Generoption{
	margin-top: 10px;
	margin-left: 50PX;
}
#Gener{
	outline: none;
	width: 184px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
#songsupload{
	outline: none;
	width: 200px;
	height: 200px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
#songartwork{
	outline: none;
	width: 200px;
	height: 200px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}

/*----Loginform area start----*/
.Loginform{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background: var(--color-bolder);
}
.Loginholder{
	display: flex;
	justify-content: center;
	width: 300px;
	height: 400px;
	padding-top: 50px;
	border-radius: 10px;
}
.Loginholder input{
	
	width: 200px;
	height: 30px;
	border: none;
	outline: none;
}
.Loginholder input{
	border-bottom: 1px solid rgb(164, 164, 164);
}
.Login p{
	font-size: 12px;
	padding-top: 10px;
	color: var(--color-bolder);
}
#loginuser{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 30px;
}
#loginbtn{
	margin-top: 10px;
	border: none;
	background: var(--color-bolder);	
	padding: 1em 6em;
	border-radius: 8px;
	text-transform: uppercase;
}
#loginbtn a{
	color: var(--color-text);
}
#loginpassword{
 padding-left: 100px;
 color: #cf4615;
}
.form-container {
	width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1b1b1c;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
	border-radius: 10px;
}

.AddAdmin {
    text-align: center;
}

.AddAdmin button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.AddAdmin button[type="submit"]:hover {
    background-color: #3e8e41;
}
/*----Loginform area end----*/

.checkbtn img{
	display: none;
}
@media (max-width:1100px){
	.container{
		display: grid;
		justify-content: center;
	}
	.menu li {
		font-size: 14px;
		padding: 0px 8px;
	}
	.mainpic h2{
		font-size: 40px;
	}
	
}
@media (max-width:850px){
	.container{
		display: grid;
		justify-content: center;
	}
.containerbox{
	height: 170px;
    width: 500px;
}
    .box1 p{
		font-size: 13px;
	}

	#Downlond {
		display: flex;
		font-size: 10px;
		font-weight: 600;
		border-radius: 2px;
		width: auto;
		height: auto;
	}

	.box1 h3 {
		text-transform: uppercase;
		font-size: 11px;
		font-weight: 400;
		color: var(--color-text);
		transition: 0.3s;
	}
	.checkbtn img{
		display: block;
		float:left;
		margin-left: 50px;
	}
	.menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        background-color: #111827;
        top: 50px;
        left: 100%; /* Off-screen initially */
        text-align: center;
        padding-top: 20px;
        transition: all 0.5s ease-in-out;
    }

    /* When active, slide into view */
    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 15px 0;
    }
	.header {
        justify-content: center; /* Center the content */
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .logo {
        position: absolute; /* Keep logo centered */
        left: 50%;
        transform: translateX(-50%); /* Center logo horizontally */
    }
	.checkbtn {
        position: absolute; /* Keep the check button in the top-right corner */
        left: 0;
        right: 20px; /* Position it at the right */
        top: 50%;
        transform: translateY(-50%); /* Center vertically */
    }

    .checkbtn {
        display: block;
        cursor: pointer;
    }


    /* Ensure login/register remains visible */
    .loginregister {
        position: absolute;
        right: 20px;
        top: 15px;
    }
}
	  
	  #check:checked ~ .menu {
		left: 0;
		display: block;
	  }
	  
	  .menu li {
		display: block;
		padding: 8px;
	  }
	  
	  .menu li a {
		font-size: 15px;
	  }
	  
	#line{
		width: 130%;
		margin-left: -30px;

	}
	.footerrights p{
		font-size: 11px;
	}
	.mainpic h2{
		font-size: 20px;
	}
	.mainpic span{
		font-size: 40px;
	
}

  
  .artistimg {
	justify-content: center;
	align-items: center;
	width: 100%;
    min-height: 40vh;
  }

.artistimg img{
	width: 100%;
    object-fit: cover;
}
.imgpic {
    width: 100%;
}
.impictop {
    margin-top: 60px;
}



@media (max-width:650px){
	.containerbox{
		height: 120px;
        width: 300px;
	}
	.imgpic {
		width: 100%;
		overflow: hidden;
	}
	
	.artistcontaniner {
		width: 100%;
		grid-template-columns: repeat(auto-fill, minmax(100%, 200px));
		}
}

@media (max-width:450px){
	
	.hoder{
		font-size: 10px;
	}
    #line {
        width: 60%;
        margin-left: 1px;
    }
	.toggle-btn {
	    font-size: 10px;
		margin-right: 20px;
		padding: 0.2em 1.2em;
}
.toggle-btn span {
    font-size: 10px;
}
     #moon{
	width: 10px;
}
.container1{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,200px));
	justify-content: center;
	width: 100%;
	
}
.sec3scon {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    gap: 10px;
    margin: 0px;
}
.secholder {
	width: 100%;
    height: 500px;
	border-radius: 0px;
	margin: 0;
}
.todaysboxholder {
    width: 100%;
    gap: 10px;
}
.secsimg {
    width: 100%;
    height: 370px;
	border-radius: 0;
    overflow: hidden;
}
.secsbox {
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: .3s;
}
.secsimg img {
    width: 100%;
		height: auto;
		object-fit: cover;
	
}
.secsdetails {
    width: 100%;
    height: 90px;
}
.checkbtn img{
	margin-left: 10px;

}
.imgpic{
	display: none;
}
@media (max-width:300px){
	
}.toggle-btn {
		display: none;
	    font-size: 10px;
		margin-right: 20px;
		padding: 0.2em 1.2em;
}
.toggle-btn span {
    font-size: 10px;
}
.header {
    justify-content: left;

}
}
@media (max-width: 768px) { /* Adjust breakpoint as per your menu's collapse point */
    .checkbtn {
        display: block; /* Show hamburger menu button */
    }

    .menu {
        position: fixed;
        width: 100%;
        height: 100vh; /* Full viewport height for overlay menu */
        background: #061222; /* Dark background for mobile menu */
        top: 70px; /* Below the header */
        left: -100%; /* Hide off-screen initially */
        text-align: center;
        flex-direction: column; /* Stack menu items vertically */
        transition: all 0.5s ease;
        padding-top: 20px; /* Add some top padding */
    }

    .menu li {
        margin: 20px 0; /* Space between stacked menu items */
    }

    .menu a {
        font-size: 20px; /* Larger font size for mobile */
    }

    .menu input[type="search"] {
        width: calc(100% - 40px); /* Adjust width to fit mobile screen with padding */
        margin-top: 10px;
    }

    #check:checked ~ .menu {
        left: 0; /* Slide in menu when checkbox is checked */
    }

    .loginregister {
        /* When menu is open, these also need to stack or adjust */
        position: absolute; /* Position relative to .header or main container */
        bottom: 20px; /* Place at the bottom of the mobile menu */
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column; /* Stack buttons vertically in mobile */
        width: calc(100% - 40px); /* Adjust width */
        margin: 0; /* Remove horizontal margin */
    }

    .loginregister li {
        width: 100%; /* Make list items full width */
        margin-bottom: 10px; /* Space between stacked buttons */
    }
    
    .loginregister li:last-child {
        margin-bottom: 0;
    }

    .loginregister li a {
        width: 100%; /* Make buttons full width */
        box-sizing: border-box; /* Include padding in width */
    }

    .toggle-btn {
        display: flex; /* Show dark mode toggle button on mobile */
        align-items: center;
        gap: 5px;
    }
}

.storycontainerback{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color:#061222;
	width: 100%;
	height: auto;
	gap: 20px;
	border-top: 2px solid rgb(0, 0, 0, 0.5);
    border-bottom: 2px solid rgb(0, 0, 0, 0.5);
}

.secholderback{
  display: grid;
    justify-content: center;

    background-color: #061222;
    width: 100%;
    height: 430px;
    transition: .3s;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 auto;
    border: 2px solid rgb(0, 0, 0, 0.4);
}
.secsbox{
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #061222;
    width: 100%;
    height: 430px;
    border-radius: 6px;
    overflow: hidden; 
    transition: .3s; 
}
.secsimg{
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}
.secsimg img{
 width: 100%;
}
.secsdetailsback{
  font-weight: 600;
    text-align: start;
    width: 180px;
    overflow: hidden; 
}
.todaystitleback{
    margin: 10px 0px;
    font-size: 7px
} 
.secsdetailsback #pricent{
	color: rgb(255, 102, 0);
  } 
  .secholderback h1 {
    font-size: 10px;
    margin: 10px;
    color: rgb(255, 255, 255);
}
/* :: 10.0 Guest CSS */
/* Global Styles */


.box-sizing{
  margin: 0;
  padding: 0;
}

.container34 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Featured Guests Area */

.featured-guests-area {
  background-color: #061222;
  padding: 40px 0;
  border-bottom: 2px solid rgb(0, 0, 0, 0.5);
}

.featured-guests-area .section-heading {
  margin-bottom: 40px;
}

.featured-guests-area .section-heading h2 {
  font-size: 36px;
  color: #fff;
  text-align: center;
}

.featured-guests-area .section-heading .line {
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}

/* Row 2 */

.row2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Single Featured Guest */

.single {
  background-color: #111827;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(0, 0, 0, 0.4);
}

.single img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.single .guest-info {
  padding: 20px;
  text-align: center;
}

.single .guest-info h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.single .guest-info span {
  font-size: 16px;
  font-weight: 400;
  color: #afaeae;
}
.video-column {
  width: 250px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-duration {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.video-status {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.video-channel {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.video-views {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.video-upload-time {
  font-size: 12px;
  color: #666;
}
.video-image {
  width: 100%;
  height: 150px; /* adjust the height to your liking */
  overflow: hidden;
  margin-bottom: 10px;
}

.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */

@media only screen and (max-width: 1200px) {
  .container34 {
    padding: 10px;
  }
  .featured-guests-area .section-heading h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .row2 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .single img {
    height: 150px;
  }
}

@media only screen and (max-width: 768px) {
  .featured-guests-area {
    padding: 20px 0;
  }
  .row2 {
    grid-template-columns: repeat(auto-fill, minmax(164pxpx, 1fr));
  }
  .single img {
    height: 100px;
  }
}

@media only screen and (max-width: 576px) {
  .container34 {
    padding: 0;
  }
  .featured-guests-area .section-heading h2 {
    font-size: 24px;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .single img {
    height: 350px;
  }
}
@media (max-width:450px){
	
  .secholderback {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}
.todaysboxholder {
    width: 100%;
    gap: 10px;
}
.secsimg {
    width: 100%;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
}
.secsbox {
    width: 100%;
    height: 350px;
    overflow: hidden;
    transition: .3s;
}
.secsimg img {
    width: 100%;
    
}
}


:root{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #ffffff;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body {
    background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
/* Hide Scrollbars but Allow Scrolling */
.main-content {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer */
}

.main-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
/* Completely Hide Scrollbars */
html, body {
    height: 100%;
    overflow: auto; /* Allow scrolling */
    margin: 0;
    padding: 0;
}

/* Ensure Sidebar Content is Scrollable but Hides Scrollbars */
.sidebar, .right-sidebar, .main-content {
    overflow-y: auto; /* Allows scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer */
}

.sidebar::-webkit-scrollbar, 
.right-sidebar::-webkit-scrollbar, 
.main-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}


/* Container Layout */
.container_main {
    display: flex;
    flex-direction: column; /* Ensure all content is stacked vertically */
    height: 100vh; /* Full height of the viewport */
    overflow: hidden; /* Prevent overflow*/
}

/* Sidebar - Left */
.sidebar {
    width: 300px;
    background: linear-gradient(135deg, #020211, #1f183b);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid white;
}

.profile h2 {
    font-size: 18px;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    margin-top: 15px;
}

.sidebar nav ul li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

nav ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mini Player */
.mini-player {
    background: linear-gradient(135deg, #020211, #28104e);
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
}

.mini-player h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Player Content */
.player-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.player-content img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.song-info {
    text-align: left;
}

.song-title {
    font-weight: bold;
    font-size: 14px;
}

.artist-name {
    font-size: 12px;
    opacity: 0.8;
}

/* Controls */
.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.controls button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Progress Bar */
#progress {
    width: 100%;
    margin-top: 10px;
    appearance: none;
    height: 5px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#progress::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* Time */
#current-time, #duration {
    font-size: 12px;
    opacity: 0.7;
}


/* Main Content */
.main-content {
    margin-left: 300px; /* Space for left sidebar */
    margin-right: 300px; /* Space for right sidebar */
    overflow-y: auto;    /* Allow scrolling within the main content */
    height: 100vh;       /* Full height of the viewport */
    width: calc(100% - 600px); /* Account for left and right sidebars */
    padding: 2px;       /* Padding for content */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}



/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.top-bar input {
    padding: 10px;
    width: 220px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a5acd, #9370db);
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero button {
    background: #ff9800;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.hero button:hover {
    background: #ffab40;
}

/* Playlist */
.playlist h2 {
    margin-bottom: 10px;
}

.playlist-grid {
    display: flex;
    gap: 15px;
}

.playlist-item img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    transition: 0.3s;
}

.playlist-item img:hover {
    transform: scale(1.1);
}
/* Trending Section */
.trending {
    margin-top: 20px;
}

/* Song List */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1e1e2e;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.song-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.song-details {
    flex: 1;
}

.song-title {
    font-weight: bold;
    font-size: 14px;
}

.artist-name {
    font-size: 12px;
    opacity: 0.7;
}

.song-duration {
    font-size: 12px;
    opacity: 0.7;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-bar {
    width: 100px;
    appearance: none;
    height: 5px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}


/* Right Sidebar */
.right-sidebar {
    width: 300px;
    background: linear-gradient(135deg, #020211, #1f183b);
    padding: 20px;
    position: fixed;
    right: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}

.right-sidebar h2 {
    margin-bottom: 15px;
}

.right-sidebar ul {
    list-style: none;
}

.right-sidebar ul li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 5px;
    border-radius: 6px;
    transition: 0.3s;
}

.right-sidebar ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Music Player */
.music-player {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.music-player audio {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container_main {
        grid-template-columns: 1fr;
        height: auto;
    }
    .sidebar, .right-sidebar {
        display: none;
    }
    .main-content {
        width: 100%;
    }
    .main-content {
        margin-left: 0;
        margin-right: 0;
        overflow-y: auto;
        height: 100vh;
    }
}
.music-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.music-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161616;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.music-item:hover {
    background: #222;
}

.music-info {
    display: flex;
    flex-direction: column;
}

.music-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.music-genre {
    color: #888;
    font-size: 14px;
}

.music-duration {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 14px;
}

.clock-icon {
    width: 14px;
    height: 14px;
    background: url('clock-icon.svg') no-repeat center;
    background-size: contain;
    margin-right: 5px;
}

.musicbox {
    background: #020211;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    border-radius: 10px
}

.login-container {
    display: flex;
    width: 80%;
    max-width: 1000px;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}

.login-box {
    width: 50%;
    padding: 40px;
    background: #161616;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #bbb;
}

a {
    color: #f79d65;
    text-decoration: none;
}

.input-group {
    margin-top: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: none;
    background: #222;
    color: white;
    border-radius: 6px;
    font-size: 14px;
}

.remember-me {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.remember-me label {
    margin-left: 8px;
    font-size: 14px;
    color: #bbb;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #f79d65;
    color: black;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #bbb;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: none;
    background: #222;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.google-btn img {
    width: 18px;
    margin-right: 10px;
}

.login-info {
    width: 50%;
    background: linear-gradient(45deg, #002244, #8b4b2b);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.info-content {
    max-width: 80%;
}

.headphones-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.features {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 45%;
}

.exclusive-section {
    width: 90%;
    text-align: center;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 span {
    color: #f79d65;
}

p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 20px;
}

.music-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.music-item {
    display: flex;
    width: 100%;
    align-items: center;
    background: #061222;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    transition: 0.3s;
}

.music-item:hover {
    background: #222;
}

.music-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.music-info {
    padding-left: 15px;
    flex: 1;
}

.music-info h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.artist {
    font-size: 14px;
    color: #f79d65;
}

.stats {
    font-size: 12px;
    color: #bbb;
}


 /* facebook lite slider*/
  .slider-container {
    display: grid;
    position: relative;
    align-items: center;
    width: 100%;
    min-height: 25vh;
    background-color: var(--background-color);
    overflow: hidden;
	border-top: 2px solid rgb(0, 0, 0, 0.5);

  }
  .dragging {
    transition: none;
  }
  .slider {
    display: flex;  
    flex-wrap: nowrap;
    gap: 5px;
    /*transition: transform 0.3s ease;*/
  }
  
  .slide {
    position: relative;
    display: flex;
    width: 200px;
    height: 200px;
    border-radius: 7px;
    flex-shrink: 0;
    overflow: hidden;
  }
.slide #checklist{
  position: absolute;
    width: 40px;
    height: 40px;
    left: 80px;
    top: 120px;
}
  .slide img {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    margin: 0 auto;
  }
  .slide span{
    position: absolute;
    color: #fff;
    font-size: 22px;
    top: 160px;
    left: 60px;

}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
  }
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  
  .slider-nav img {
    width: 50px;
    height: 50px;
  }
  @media (max-width: 768px) {
    .slide {
      width: 150px;
      height: 200px;
    }
    .slider-container {
        min-height: 26vh;

      }
      .slider-nav img {
        width: 50px;
        height: 50px;
      }
      .slide #checklist{
        left: 80px;
        top: 70px;
        width: 30px;
        height: 30px;
    }
    .slide span{
        position: absolute;
        color: #fff;
        font-size: 16px;
        top: 100px;
    }
  }
  @media (max-width: 500px) {
    .slide {
      width: 100px;
      height: 150px;
    }
    .slider-container {
        min-height: 20vh;
        top: 10px;
        margin-top: 60px;
        

      }
      .slider-nav img {
        width: 40px;
        height: 40px;
      }
      .slide #checklist{
        width: 20px;
        height: 20px;
    }
    .slide #checklist {
      left: 45px;
      top: 60px;
    }
    .slide span{
        position: absolute;
        color: #fff;
        font-size: 12px;
        top: 80px;
        left: 30px;
    }
  }
 /* facebook lite slider end*/

.storycontainerback{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color:#061222;
	width: 100%;
	height: auto;
	gap: 20px;
	border-top: 2px solid rgb(0, 0, 0, 0.5);
    border-bottom: 2px solid rgb(0, 0, 0, 0.5);
}

.secholderback{
  display: grid;
    justify-content: center;

    background-color: #061222;
    width: 100%;
    height: 430px;
    transition: .3s;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 auto;
    border: 2px solid rgb(0, 0, 0, 0.4);
}
.secsbox{
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #061222;
    width: 100%;
    height: 430px;
    border-radius: 6px;
    overflow: hidden; 
    transition: .3s; 
}
.secsimg{
    width: 100%;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}
.secsimg img{
 width: 100%;
}
.secsdetailsback{
  font-weight: 600;
    text-align: start;
    width: 180px;
    overflow: hidden; 
}
.todaystitleback{
    margin: 10px 0px;
    font-size: 7px
} 
.secsdetailsback #pricent{
	color: rgb(255, 102, 0);
  } 
  .secholderback h1 {
    font-size: 10px;
    margin: 10px;
    color: rgb(255, 255, 255);
}
/* :: 10.0 Guest CSS */
/* Global Styles */


.box-sizing{
  margin: 0;
  padding: 0;
}

.container34 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Featured Guests Area */

.featured-guests-area {
  background-color: #061222;
  padding: 40px 0;
  border-bottom: 2px solid rgb(0, 0, 0, 0.5);
}

.featured-guests-area .section-heading {
  margin-bottom: 40px;
}

.featured-guests-area .section-heading h2 {
  font-size: 36px;
  color: #fff;
  text-align: center;
}

.featured-guests-area .section-heading .line {
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin: 20px auto;
}

/* Row 2 */

.row2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Single Featured Guest */

.single {
  background-color: #111827;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(0, 0, 0, 0.4);
}

.single img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.single .guest-info {
  padding: 20px;
  text-align: center;
}

.single .guest-info h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.single .guest-info span {
  font-size: 16px;
  font-weight: 400;
  color: #afaeae;
}
.video-column {
  width: 250px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-duration {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.video-status {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.video-channel {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.video-views {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.video-upload-time {
  font-size: 12px;
  color: #666;
}
.video-image {
  width: 100%;
  height: 150px; /* adjust the height to your liking */
  overflow: hidden;
  margin-bottom: 10px;
}

.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */

@media only screen and (max-width: 1200px) {
  .container34 {
    padding: 10px;
  }
  .featured-guests-area .section-heading h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .row2 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .single img {
    height: 150px;
  }
}

@media only screen and (max-width: 768px) {
  .featured-guests-area {
    padding: 20px 0;
  }
  .row2 {
    grid-template-columns: repeat(auto-fill, minmax(164pxpx, 1fr));
  }
  .single img {
    height: 100px;
  }
}

@media only screen and (max-width: 576px) {
  .container34 {
    padding: 0;
  }
  .featured-guests-area .section-heading h2 {
    font-size: 24px;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .single img {
    height: 350px;
  }
}
@media (max-width:450px){
	
  .secholderback {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}
.todaysboxholder {
    width: 100%;
    gap: 10px;
}
.secsimg {
    width: 100%;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
}
.secsbox {
    width: 100%;
    height: 350px;
    overflow: hidden;
    transition: .3s;
}
.secsimg img {
    width: 100%;
    
}
}

