@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* 🔥 Animated Cyberpunk Background */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #020202;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    
}



/* Header with Logo and Title */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding: 20px; 
    box-shadow: 0px 1px 30px #00f7ff4d;
}

.header img {
    height: 7vw;
    margin-right: 5px;
}

.header h1 {
    font-size: 5vw;
    color: #ffffff;
    margin: 0;
}

/* 🎬 Video-Themed Animated Title */
@keyframes animatedTitle {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.site-title {
    font-size: 2rem;
    font-weight: bold;
  
    background: linear-gradient(45deg, 
        #00f7ff, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animatedTitle 3s linear infinite;
}

/* Reels Section */
.reels-title {
    display: flex;
    align-items: center;
    font-size: 4vw;
    padding-left: 5vw;
    color: #00f7ff;
    margin-top: 20px;
   font-weight:bold;
}

.video-title{
 
 
    font-size: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
    color: #00f7ff;
    margin-top: 20px;
}
.video-show{
    display: flex;
    align-items: center;
    justify-content: center;
}
.reels-title img {
    height:5vw;
    margin-right: 5px;
}


/* Video Grid */
.grid {
    display: flex;
    flex-wrap: wrap;
    
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
}
.ad-card{
    margin: 1vw;
    height: 50vw;
   
    border: 1px solid #00f7ff6c;
    overflow: hidden;
    text-align: center;
    position: relative;
}   

/* 🔥 Video Card with Neon Glow */
.card {
    text-decoration: none;
    margin: 1vw;
    height: 95vw;
    width: 45vw;
    border: 1px solid #00f7ff6c;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;
    background-color: #181818;
    border-radius: 15px;
    box-shadow: 0px 1px 30px #00f7ff1a;
}

/* Site Logo - Positioned on top of the card */
.card .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: block; /* Initially hidden */
    width: 70px; /* Adjust size as necessary */
    opacity: 0.3;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px #00f7ff6c;
   /* filter: blur(5px);  Apply blur effect */
}

/* Display the logo on hover */
.card:hover .logo {
  /* Show logo when hovered */
    opacity: 0.6;
    
}

.card img {
    transition: transform 0.3s ease-in-out;
}



/* Footer */
.footer {
    background-color: #000000;
    padding: 15px; 
    box-shadow: 0px 1px 30px #00f7ff4d;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out
}

.footer a {
    color: #00eaff;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    font-size:small;
}
.footer p {
   
    font-size:x-small;
}
.footer a:hover {
    color: #ff007f;
}

/* 🎥 Video Scanline Effect */
@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(0, 0, 0, 0.03) 50%);
    background-size: 100% 6px;
    animation: scanlines 1.5s linear infinite;
    z-index: -1;
    pointer-events: none;
}
.Download-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adds space above the button */
    
}

@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-prof{
    padding:5px;
    margin:5vw;
    font-size: 20px;
}
.text-prof a{
    color:#00f7ff;
}

.see-button {
   
    display: inline-block;
    padding: 12px 24px;
    font-size: 4.5vw;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    background: linear-gradient(45deg, #00f7ff, #ffffff, #00f7ff);
    border: 2px solid #00f7ff;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom:15px;
    background-size: 300% 300%;
    animation: animatedGradient 3s linear infinite;
    cursor: pointer;
}

.see-button:hover{

        transform: scale(1.05);
        color: black;
        cursor: pointer;
    
}

.arrow-icon{
    width: 25px ;
    margin-top: 5px;
    position: absolute;
    margin-right: 1vw;
   

}
@media (min-width: 1000px) {
    .card {
        height: 30vw;
        width: 15vw;
        margin: 10px;
    }
    .container {
    max-width:70%;    /* or whatever max width you prefer */
    margin-left: auto;
    margin-right: auto;

    }
    .header img {
        height: 4vw;
        margin-right: 5px;
    }
    
    .header h1 {
        font-size: 3vw;
        color: #ffffff;
        margin: 0;
    }
    .featured-title{
        font-size: 3vw;
        
    }
    
    
    /* Reels Section */
    .reels-title {
        display: flex;
        align-items: center;
        font-size: 2vw;
        padding-left: 5vw;
        color: #00f7ff;
        margin-top: 20px;
    }
     .reels-title img{
         height: 3vw;
     }
}

#age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: black;
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 4vw;
     font-weight: bold;
}

#age-verification-popup button {
    margin: 0 40px 25px 40px;
    
}

#age-verification-popup button:hover {
    background-color: #008cba;
}
.pagination-container {
    text-align: center;
    margin: 40px auto;
    padding-bottom: 30px;
}

.page-btn {
    display: inline-block;
    margin: 8px 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg, #00f7ff, #ffffff, #00f7ff);
    background-size: 300% 300%;
    border: 2px solid #00f7ff;
    color: #000000;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    animation: animatedGradient 3s linear infinite;
}

.page-btn:hover {
    transform: scale(1.05);
    color: #000;
    background: linear-gradient(45deg, #ffffff, #00f7ff);
}

.page-btn.active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0px 0px 10px #ffffff;
    border: 2px solid #ffffff;
    pointer-events: none;
    transform: scale(1.1);
}

.dots {
    display: inline-block;
    font-size: 20px;
    color: #00f7ff;
    padding: 0 5px;
    vertical-align: middle;
}

.Post-vid{
    padding:5vw;
    color: #00f7ff;
    
}
.Post-vid input{
    padding:15px;
    margin:5px;
    border-radius: 15px;
}
.Post-vid button{
    color: #000000;
    background-color: #00eaff;
    padding: 10px;
    border-radius: 15px;
    margin:5px;
   
}
.log-out{
    
    
    padding: 10px;
    border-radius: 15px;
    margin:5px;
   
}
.log-out a{
    color: #00eaff;
}

