<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Jolly LLB 3 - Official Trailer</title>
<link href="https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
font-family: 'Poppins', sans-serif;
color: #fff;
overflow-x: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
padding: 20px;
}
/* باقی تمام CSS وہی رہے گی جو آپ کے پاس ہے */
.bollywood-decoration {
position: fixed;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.decoration-item {
position: absolute;
opacity: 0.1;
}
.decoration-item:nth-child(1) {
top: 10%;
left: 5%;
font-size: 120px;
color: #ffd700;
transform: rotate(-15deg);
}
.decoration-item:nth-child(2) {
bottom: 15%;
right: 8%;
font-size: 100px;
color: #e50914;
transform: rotate(10deg);
}
.decoration-item:nth-child(3) {
top: 40%;
left: 15%;
font-size: 80px;
color: #00a8ff;
transform: rotate(5deg);
}
.container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
flex: 1;
}
.main-heading {
font-family: 'Arvo', serif;
font-size: 4rem;
text-align: center;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 3px;
background: linear-gradient(45deg, #ffd700, #e50914, #00a8ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
position: relative;
padding: 10px 20px;
}
.main-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 200px;
height: 4px;
background: linear-gradient(90deg, transparent, #ffd700, transparent);
}
.subtitle {
font-size: 1.2rem;
text-align: center;
margin-bottom: 30px;
color: #ccc;
max-width: 600px;
}
.content-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
width: 100%;
}
.poster-section {
flex: 1;
min-width: 300px;
max-width: 400px;
position: relative;
}
.poster-container {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
transition: transform 0.3s ease;
}
.poster-container:hover {
transform: scale(1.03);
}
.poster-image {
width: 100%;
height: auto;
display: block;
border-radius: 15px;
}
.poster-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
padding: 20px;
border-radius: 0 0 15px 15px;
}
.movie-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 5px;
color: #ffd700;
}
.movie-info {
font-size: 0.9rem;
color: #ddd;
}
.video-section {
flex: 2;
min-width: 300px;
max-width: 700px;
position: relative;
}
.video-container {
position: relative;
width: 100%;
height: 400px; /* iframe کے لیے fixed height */
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.video-player {
width: 100%;
height: 100%;
border: none;
background: #000;
}
.skip-button {
position: absolute;
top: 15px;
right: 15px;
background: rgba(229, 9, 20, 0.9);
color: white;
border: none;
padding: 8px 15px;
border-radius: 20px;
font-weight: 600;
cursor: pointer;
display: none;
z-index: 10;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.skip-button:hover {
background: rgba(255, 20, 30, 1);
transform: scale(1.05);
}
.watch-more-button {
display: block;
width: 100%;
margin-top: 20px;
background: linear-gradient(45deg, #e50914, #ff416c);
color: white;
border: none;
padding: 15px;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
text-decoration: none;
box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}
.watch-more-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(229, 9, 20, 0.6);
}
.watch-more-button:active {
transform: translateY(1px);
}
.movie-details {
margin-top: 30px;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 20px;
width: 100%;
max-width: 800px;
}
.details-title {
font-size: 1.5rem;
margin-bottom: 15px;
color: #ffd700;
text-align: center;
}
.details-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}
.detail-item {
display: flex;
align-items: center;
gap: 10px;
}
.detail-icon {
color: #e50914;
font-size: 1.2rem;
}
.stars {
display: flex;
justify-content: center;
margin: 20px 0;
}
.star {
color: #ffd700;
font-size: 1.5rem;
margin: 0 2px;
}
/* Footer Styles */
footer {
background: rgba(0, 0, 0, 0.7);
margin-top: 50px;
padding: 30px 0;
border-top: 2px solid #ffd700;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 30px;
padding: 0 20px;
}
.footer-section {
flex: 1;
min-width: 250px;
}
.footer-heading {
font-size: 1.3rem;
color: #ffd700;
margin-bottom: 15px;
position: relative;
padding-bottom: 10px;
}
.footer-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background: #e50914;
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover {
color: #ffd700;
}
.social-icons {
display: flex;
gap: 15px;
margin-top: 15px;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: #ffd700;
text-decoration: none;
transition: all 0.3s;
}
.social-icons a:hover {
background: #e50914;
transform: translateY(-3px);
}
.footer-bottom {
text-align: center;
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
.main-heading {
font-size: 2.5rem;
}
.content-wrapper {
flex-direction: column;
align-items: center;
}
.poster-section, .video-section {
max-width: 100%;
}
.video-container {
height: 300px; /* موبائل کے لیے کم height */
}
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-heading::after {
left: 50%;
transform: translateX(-50%);
}
.social-icons {
justify-content: center;
}
}
</style>
</head>
<body>
<!-- Bollywood decorative elements -->
<div class="bollywood-decoration">
<div class="decoration-item">★</div>
<div class="decoration-item">♥</div>
<div class="decoration-item">♦</div>
</div>
<div class="container">
<h1 class="main-heading">Jolly LLB 3<br>New BollyWood Movie</h1>
<p class="subtitle">Watch Now Full Movie In FHD.</p>
<div class="content-wrapper">
<div class="poster-section">
<div class="poster-container">
<img src="https://i.pinimg.com/736x/76/c0/10/76c010a390252709d6f32ad4a73c1712.jpg" alt="Jolly LLB 3 Poster" class="poster-image">
<div class="poster-overlay">
<div class="movie-title">Jolly LLB 3</div>
<div class="movie-info">Drama • Comedy • 2024 • 2h 18m</div>
</div>
</div>
<a href="techpk" class="watch-more-button" target="_blank">
Watch More HD Videos
</a>
</div>
<div class="video-section">
<div class="video-container">
<!-- YouTube وڈیو کے لیے iframe -->
<iframe
id="trailerVideo"
class="video-player"
src="https://www.youtube.com/embed/kt104peSAKU?autoplay=1&mute=1&controls=1"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
<button class="skip-button" id="skipButton">Skip Ad</button>
</div>
<div class="stars">
<span class="star">★</span>
<span class="star">★</span>
<span class="star">★</span>
<span class="star">★</span>
<span class="star">☆</span>
</div>
</div>
</div>
<div class="movie-details">
<h2 class="details-title">Movie Details</h2>
<div class="details-content">
<div class="detail-item">
<span class="detail-icon">★</span>
<span><strong>Watch Now : </strong> In FHD</span>
</div>
<div class="detail-item">
<span class="detail-icon">★</span>
<span><strong>Director:</strong> Subhash Kapoor</span>
</div>
<div class="detail-item">
<span class="detail-icon">★</span>
<span><strong>Cast:</strong> Akshay Kumar, Arshad Warsi</span>
</div>
<div class="detail-item">
<span class="detail-icon">★</span>
<span><strong>Genre:</strong> Comedy, Drama, Courtroom</span>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3 class="footer-heading">About Jolly LLB 3</h3>
<p>The third installment in the popular Jolly LLB franchise, featuring courtroom drama, comedy, and social messages.</p>
<div class="social-icons">
<a href="techpk"><i class="fab fa-facebook-f"></i></a>
<a href="techpk"><i class="fab fa-twitter"></i></a>
<a href="techpk"><i class="fab fa-instagram"></i></a>
<a href="techpk"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-section">
<h3 class="footer-heading">Quick Links</h3>
<ul class="footer-links">
<li><a href="techpk">Home</a></li>
<li><a href="techpk">Trailer</a></li>
<li><a href="techpk">Cast & Crew</a></li>
<li><a href="techpk">Gallery</a></li>
<li><a href="techpk">News</a></li>
</ul>
</div>
<div class="footer-section">
<h3 class="footer-heading">Contact Info</h3>
<ul class="footer-links">
<li><i class="fas fa-map-marker-alt"></i> Mumbai, India</li>
<li><i class="fas fa-phone"></i> +91 1234567890</li>
<li><i class="fas fa-envelope"></i> info@jollyllb3.com</li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Jolly LLB 3. All Rights Reserved.</p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const skipButton = document.getElementById('skipButton');
// Show skip button after 2 seconds
setTimeout(() => {
skipButton.style.display = 'block';
}, 2000);
// Skip ad functionality
skipButton.addEventListener('click', function() {
// YouTube وڈیو پر ری ڈائریکٹ
window.open('techpk', '_blank');
});
});
</script>
</body>
</html>