/* Reset & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 40px #00d4ff,
        0 0 60px #0099ff,
        0 0 80px #0099ff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: transform 0.3s ease;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    display: block;
}

.nav-links a:hover,
.nav-links a:active {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    min-height: 500px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: fadeInUp 0.8s 0.4s backwards;
    min-height: 44px;
    min-width: 44px;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #00d4ff;
    transform: scale(1.3);
}

/* Carousel Sections */
.carousel-section {
    padding: 4rem 0;
    overflow: hidden;
}

.carousel-section.dark {
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 1rem;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    position: relative;
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
}

.carousel-track img {
    height: 350px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    user-select: none;
    pointer-events: none;
}

.carousel-track img:active {
    transform: scale(0.98);
}

/* Channel Cards */
.channels-track {
    gap: 2rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.channel-card:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.08);
}

.channel-card img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain;
}

.channel-card span {
    font-weight: bold;
    color: #00d4ff;
    text-align: center;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:active {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.feature-card p {
    color: #b3b3b3;
}

/* Pricing Section */
.pricing {
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:active {
    transform: scale(1.02);
}

.pricing-card.popular {
    border-color: #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.2rem;
    color: #b3b3b3;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li:before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: bold;
    margin-right: 0.5rem;
}

.buy-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    min-width: 120px;
}

.buy-button:hover,
.buy-button:active {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.2);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-height: 100px;
}

.payment-card:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.payment-card img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Refund Policy */
.refund-policy {
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.policy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.policy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.policy-card:active {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.policy-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.policy-card h3 {
    font-size: 1.3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.policy-card p {
    color: #b3b3b3;
    line-height: 1.6;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.policy-text h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-text ul {
    list-style: none;
}

.policy-text li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.policy-text li:before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0.5rem 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background: rgba(30, 30, 60, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.3s;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #00d4ff;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.close:hover,
.close:active {
    transform: scale(1.2);
}

#selectedPlan {
    margin: 1rem 0;
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .carousel-track img {
        height: 300px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(15, 12, 41, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-left: 1px solid rgba(0, 212, 255, 0.3);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0.5rem 0;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .carousel-track img {
        height: 250px;
    }

    .channel-card {
        min-width: 150px;
        padding: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .policy-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-text {
        padding: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    #selectedPlan {
        font-size: 1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-track img {
        height: 200px;
    }

    .price {
        font-size: 2.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/* Hover effects only for devices with hover capability */
@media (hover: hover) {
    .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    }

    .pricing-card:hover {
        transform: scale(1.05);
        border-color: #00d4ff;
        box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    }

    .channel-card:hover {
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }

    .carousel-track img:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    }

    .payment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    }

    .policy-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    }
}