<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
	/* Basic Reset */
body, h1, h2, h3, p, ul, li, a, img, div, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

p{
	font-size: 15px;
	line-height: 1.8em
}
/* Body */
body {
    background-color: #1E1E1E;
    color: white;
    
}
.full-link {
    text-decoration: none;
    color: #fff;
    /* Remove any outline or other styles if necessary */
    outline: none;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: #1E1E1E;
    position: relative;
	border-bottom: 1px solid #fff;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu a {
    color: white;
    margin: 0 5px;
    text-decoration: none;
    font-size: 16px;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Search Bar */
.search-bar {
    margin-top: 10px;
}

.search-bar input {
    padding: 5px;
    border-radius: 5px;
    border: none;
    width: 100%;
    max-width: 200px;
}

/* Categories */
.categories {
	margin-left:5%;
	width:90%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top:20px;
    margin-bottom:20px;
    justify-content: center;
}

.category {
    padding: 7px 10px;
	border-radius: 5px;
	border: 2px solid #6E6E6E;
    cursor: pointer;
    font-size: 14px;
	color:#fff;
}

.red { background-color: #ff4d4d; }
.blue { background-color: #007bff; }
.green { background-color: #28a745; }
.yellow { background-color: #ffc107; }
.gray { background-color: #363535; }

/* Notification Bar */
.notification-bar {
	width:90%;
	margin-left: 5%;
    background-color: #2b2b2b;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
	border: 2px solid #6E6E6E;
}

/* Telegram Button */
.telegram-join {
    text-align: center;
    margin: 20px 0;
	
}

.telegram-btn {
    background-color: #1da1f2;
    padding: 10px 200px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Movie Thumbnails */
.movie-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 5px;
    justify-items: center;
	padding-left:3%;
	padding-right:3%;
}

/* Movie Thumbnails */
.movie-subthumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 5px;
    justify-items: center;
	padding-left:3%;
	padding-right:3%;
}

.movie {
    position: relative;
	
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.movie img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
	padding:0px;
}

.rating, .season {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3px 5px;
    border-radius: 3px;
    font-size: 12px;
    color: white;
	
}

.rating {
    top: 15px;
    left: 15px;
	color:#000;
	background-color:#ffff00;
}

.season {
    top: 15px;
    right: 15px;
	color:#ffff00;
	background-color:#000;
}
/* Centered Container */
.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	margin-top: 30px;
    
}


	
/* Media Queries for Responsiveness */

/* For tablets and larger screens */
@media (min-width: 600px) {
	
	
/* Search container */
.search-container {
	width: 40%;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 30px;
    padding: 0px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Search input field */
.search-input {
	width:30%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px 10px;
    flex: 1;
    border-radius: 30px;
}

/* Search button */
.search-button {
    background-color: #007bff;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0056b3;
}
	/* Centered Div */
.centered-div {
    width: 70%; /* 50% width */
    padding: 20px;
    border-radius: 8px;
}
	.footer-mobile{
		display: none;
	}
    .navbar {
        flex-wrap: nowrap;
    }

    .menu {
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        display: none; /* Hide toggle button on larger screens */
    }

    .search-bar input {
        width: 200px;
    }
}

/* For mobile devices */
@media (max-width: 600px) {
	/* Centered Div */
.centered-div {
    width: 90%; /* 50% width */
    padding: 20px;
    border-radius: 8px;
}
	.telegram-btn {
		background-color: #1da1f2;
		padding: 10px 20px;
		color: white;
		border: none;
		border-radius: 5px;
		cursor: pointer;
	}
    .menu {
        display: none; /* Hide menu by default on mobile */
        flex-direction: column;
        align-items: flex-start;
        background-color: #1a1a1a;
        width: 100%;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .menu.active {
        display: flex; /* Show menu when active */
    }

    .menu-toggle {
        display: block; /* Show toggle button on mobile */
    }
}
.ad1{
	width:100%;
	height:336px;

	margin:20px 20px 20px 0px;
}
.ad2{
	width:100%;
	height:336px;

	margin:20px 20px 20px 0px;
}
.ad3{
	width:100%;
	height:150px;
	background-color: #fff;
	margin:20px 20px 20px 0px;
}
a{
	color:#C82B2B;
}
/* Footer Styles */
.footer {
	width:95%;
	float:left;
    background-color: #1E1E1E;
    color: #b3b3b3;
    padding: 40px 20px;
    text-align: left;
    font-size: 14px;
    margin-top: 40px;
	position: relative;
    bottom: 0;
}

.footer-content {
	
    max-width: 100%;
    margin: 0 auto;
}



.footer-links {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #b3b3b3;
}

.back-to-top {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.back-to-top:hover {
    color: #ffffff;
}

/* Media Query for Footer Adjustments on Smaller Screens */
@media (max-width: 600px) {
	
	
/* Search container */
.search-container {
	width: 70%;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 30px;
    padding: 0px 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Search input field */
.search-input {
	width:60%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px 10px;
    flex: 1;
    border-radius: 30px;
}

/* Search button */
.search-button {
    background-color: #007bff;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0056b3;
}
	
	.footer {
	width:90%;
	float:left;
    background-color: #1E1E1E;
    color: #b3b3b3;
    padding: 40px 20px;
    text-align: left;
    font-size: 14px;
    margin-top: 40px;
	position: relative;
    bottom: 0;
}
    .footer-links {
		display: none;
		}
	.footer-mobile a {
		color: #b3b3b3;
		text-decoration: none;
		transition: color 0.3s;
	}
	
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* Basic Reset */

/* Search Icon Styling */
.search-icon {
    font-size: 24px;
    cursor: pointer !important;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    color: #333; /* Color of the search icon */
	
}

/* Popup Search Field Styling */
.search-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.9); /* Dark semi-transparent background */
}

/* Search Popup Content */
.search-popup-content {
    width: 80%;
    max-width: 600px;
    text-align: center;
	
}

/* Search Input Field */
.search-field {
    width: 100%;
    padding: 15px;
    font-size: 24px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #fff; /* White background */
    color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Hide the scroll of the background when popup is open */
body.no-scroll {
    overflow: hidden;
}
.movie-info {
	margin-top:20px;
    max-width: 800px;  
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.info-label {
    width: 200px;
    font-weight: bold;
    color: #fff;
}

.info-value {
    flex-grow: 1;
    color: #fff;
}

.info-value-red {
    color: #ff4d4d;
}
.download-container {
    text-align: center;
}

.timer {
    font-size: 24px;
    margin: 10px 0;
    color: #fff;
    display: none; /* Hidden by default */
}
.btn {
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
}
.btn.disabled {
    background-color: #ff6a00;
    cursor: not-allowed;
	
}






/* Contact Form Container */
.contact-form-container {
    background-color: #3a3a3a;
	
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 60%;
    text-align: center;
	margin-top:80px;
}

.contact-form-container h2 {
    margin-bottom: 20px;
    color: #fff;
}

/* Form Groups */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

/* Submit Button */
.btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    width: 100%;
}

.btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 15px 20px;
    }
}
/* Video container styling */
.video-container {
  width: 100%;
 
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

/* Responsive iframe for YouTube video */
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

</pre></body></html>