/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff0000;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 2rem;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Packages Section */
#packages {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

#packages h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.package-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid #ff0000;
}

.package-header {
    text-align: center;
    margin-bottom: 1rem;
}

.package-header i {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.package-price {
    text-align: center;
    margin: 1rem 0;
}

.amount {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    margin: 1rem 0;
}

.features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: #25d366;
}

.buy-btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: auto;
}

.buy-btn:hover {
    background: #cc0000;
}

/* Contact Section */
#contact {
    padding: 4rem 2rem;
    background: #f8f9fa;
    margin-top: 3rem;
}

#contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

#contact-form button {
    padding: 0.8rem;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #cc0000;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Premium Package Styles */
.package-card.premium {
    border: 2px solid #ffd700;
    background: linear-gradient(145deg, #ffffff, #fff9e6);
    position: relative;
    overflow: hidden;
}

.package-card.premium::before {
    content: 'Premium';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #ffd700;
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-card.premium .package-header i {
    color: #ffd700;
    font-size: 2.8rem;
}

.package-card.premium .amount {
    color: #ffd700;
    font-size: 2.2rem;
}

.package-card.premium .buy-btn {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

.package-card.premium .buy-btn:hover {
    background: linear-gradient(135deg, #ffa500, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.package-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Responsive adjustments for premium cards */
@media (max-width: 768px) {
    .package-card.premium::before {
        font-size: 0.7rem;
        padding: 4px 30px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1) translateY(-5px);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .package-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .package-card {
        padding: 1.5rem;
    }

    .amount {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    main {
        padding: 1rem;
        margin-top: 60px;
    }

    #hero {
        padding: 2rem 1rem;
    }

    #hero h1 {
        font-size: 1.8rem;
    }

    .package-container {
        grid-template-columns: 1fr;
    }

    .premium::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }

    footer {
        padding: 1rem;
    }
}

/* Animation for Mobile Menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav ul.active {
    animation: slideDown 0.3s ease-out;
}

/* Touch Device Optimizations */
@media (hover: none) {
    .package-card:hover {
        transform: none;
    }

    .whatsapp-float:hover {
        transform: none;
    }
}

/* High-DPI Screen Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .package-card {
        box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .menu-btn,
    nav ul {
        display: none;
    }

    .package-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .package-container {
        display: block;
    }
}

/* Best Value Package Styles */
.package-card.best-value {
    border: 2px solid #4CAF50;
    background: linear-gradient(145deg, #ffffff, #e8f5e9);
}

.package-card.best-value::before {
    content: 'Best Value';
    background: #4CAF50;
    color: white;
}

.package-card.best-value .package-header i {
    color: #4CAF50;
}

.package-card.best-value .amount {
    color: #4CAF50;
}

.package-card.best-value .buy-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.package-card.best-value .buy-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: #ff0000;
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

/* Social Media Page Styles */
.social-content {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.social-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.social-card.youtube i { color: #ff0000; }
.social-card.instagram i { color: #e1306c; }
.social-card.facebook i { color: #4267B2; }

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background: #cc0000;
}

/* Support Section */
.support-section {
    margin-bottom: 50px;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.support-card i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.support-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.support-btn:hover {
    background: #128C7E;
}

/* WhatsApp Groups Section */
.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.whatsapp-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.whatsapp-card i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Referral Section */
.referral-section {
    margin-bottom: 50px;
}

.referral-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.referral-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.referral-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    transition: all 0.3s;
}

.referral-btn:hover {
    background: #ffa500;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .social-grid, .whatsapp-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content, .social-content {
        margin-top: 80px;
    }
    
    .social-card, .support-card, .whatsapp-card, .referral-card {
        padding: 20px;
    }
}

/* Live Stream Page Styles */
.live-content {
    max-width: 1200px;
    margin: 80px auto 50px;
    padding: 0 20px;
}

.live-hero {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.live-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notification-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    backdrop-filter: blur(5px);
}

.notification-banner i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

.notification-banner.live-now {
    background: rgba(255, 0, 0, 0.2);
}

.notification-banner.live-now i {
    color: #ff0000;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.notification-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.notification-section h3 {
    color: #333;
    margin-bottom: 10px;
}

.notification-section p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.notification-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffd700;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.notification-btn:hover {
    background: #ffa500;
    transform: translateY(-2px);
}

.notification-btn i {
    font-size: 1.2rem;
}

#live-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

#live-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.live-stream-section {
    margin-bottom: 50px;
}

.live-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.live-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-info i {
    font-size: 2rem;
    color: #ff0000;
}

.countdown-container {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 80px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff0000;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    color: #666;
}

.live-features {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.live-features ul {
    list-style: none;
    margin-top: 15px;
}

.live-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.live-features i {
    color: #28a745;
}

.join-live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
}

.join-live-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.live-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.stream-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    border-radius: 10px;
}

.stream-error i {
    font-size: 3rem;
    color: #ff0000;
    animation: pulse 2s infinite;
}

.stream-error p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff0000;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.retry-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.live-schedule {
    margin-top: 50px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.schedule-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.schedule-date, .schedule-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.schedule-date i, .schedule-time i {
    color: #ff0000;
}

.schedule-details h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Responsive adjustments for live page */
@media (max-width: 768px) {
    .live-container {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .live-hero h1 {
        font-size: 2rem;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    right: 75px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}

/* Service Compensation Policy Styles */
.legal-section .highlight-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    color: #856404;
}

.legal-section ul li, 
.legal-section ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section a {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: #128C7E;
    text-decoration: underline;
}

.legal-section ul, 
.legal-section ol {
    background: #f8f9fa;
    padding: 20px 40px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Responsive adjustments for package container */
@media screen and (max-width: 1200px) {
    .package-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .package-container {
        grid-template-columns: 1fr;
    }
} 