| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/xampp/htdocs-coblaa/Cinevaa/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ | CINEVAA - Streaming Support</title>
<style>
:root {
--primary-color: #e50914; /* Cinema Red */
--text-dark: #111827;
--text-light: #4b5563;
--bg-light: #f3f4f6;
--white: #ffffff;
--border: #e5e7eb;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: var(--bg-light);
color: var(--text-dark);
line-height: 1.6;
margin: 0;
padding: 0;
}
.faq-container {
max-width: 850px;
margin: 60px auto;
padding: 0 20px;
}
header {
text-align: center;
margin-bottom: 50px;
}
h1 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; }
.subtitle { color: var(--text-light); font-size: 1.1rem; }
.faq-item {
background: var(--white);
border: 1px solid var(--border);
border-radius: 12px;
margin-bottom: 15px;
overflow: hidden;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}
.faq-question {
width: 100%;
padding: 22px;
background: none;
border: none;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-dark);
}
.faq-question:hover {
background-color: #fffafa;
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
background-color: var(--white);
}
.faq-answer p {
padding: 0 22px 22px 22px;
margin: 0;
color: var(--text-light);
font-size: 1rem;
}
.icon {
font-size: 1.5rem;
transition: transform 0.3s ease;
color: var(--primary-color);
font-weight: bold;
}
/* Active State */
.faq-item.active {
border-color: var(--primary-color);
box-shadow: 0 4px 12px rgba(229, 9, 20, 0.1);
}
.faq-item.active .faq-answer {
max-height: 300px;
}
.faq-item.active .icon {
transform: rotate(45deg);
}
.contact-cta {
text-align: center;
margin-top: 50px;
padding: 30px;
background: var(--white);
border-radius: 12px;
border: 1px dashed var(--primary-color);
}
.contact-cta a {
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
}
@media (max-width: 600px) {
h1 { font-size: 2rem; }
}
</style>
</head>
<body>
<div class="faq-container">
<header>
<h1>Streaming Support</h1>
<p class="subtitle">Everything you need to know about watching on CINEVAA</p>
</header>
<div class="faq-item">
<button class="faq-question">
Is CINEVAA free to use?
<span class="icon">+</span>
</button>
<div class="faq-answer">
<p>CINEVAA offers a variety of content. While many of our features are accessible for free at coblaa.com, we may offer premium ad-free experiences or exclusive titles depending on your region.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Can I request a specific movie or show?
<span class="icon">+</span>
</button>
<div class="faq-answer">
<p>Yes! We love hearing from our community. You can use the "Request" feature on our Contact page to suggest titles you’d like to see added to our library.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
What streaming quality is available?
<span class="icon">+</span>
</button>
<div class="faq-answer">
<p>Most of our movies are available in Full HD (1080p) and 4K Ultra HD. The quality automatically adjusts based on your internet connection speed to ensure a buffer-free experience.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
Does CINEVAA work on mobile devices?
<span class="icon">+</span>
</button>
<div class="faq-answer">
<p>Yes, coblaa.com is fully optimized for mobile browsers. You can watch your favorite movies on any smartphone, tablet, or smart TV with a modern browser.</p>
</div>
</div>
<div class="faq-item">
<button class="faq-question">
The video is buffering. How do I fix it?
<span class="icon">+</span>
</button>
<div class="faq-answer">
<p>Buffering is usually caused by a slow internet connection. Try lowering the video quality settings in the player, or ensure no other heavy downloads are running on your network.</p>
</div>
</div>
<div class="contact-cta">
<p>Don't see your question? We are here 24/7.</p>
<a href="contact.html">Send us a Support Ticket →</a>
</div>
</div>
<script>
const faqItems = document.querySelectorAll('.faq-item');
faqItems.forEach(item => {
const question = item.querySelector('.faq-question');
question.addEventListener('click', () => {
// Close other open items
faqItems.forEach(otherItem => {
if (otherItem !== item) {
otherItem.classList.remove('active');
}
});
// Toggle current item
item.classList.toggle('active');
});
});
</script>
</body>
</html>