/*
Theme Name: germanTheme
Theme URI: http://german-iptv.local
Author: Antigravity
Author URI: https://google.com
Description: A premium dark IPTV theme for the German market.
Version: 1.1.0
Text Domain: germantheme
*/

:root {
    --bg-dark: #000000;
    --bg-card: #0f0f13;
    --bg-card-gradient: linear-gradient(145deg, #1a1a20 0%, #000000 100%);
    --primary: #FF5722;
    /* Orange-Red from target */
    --primary-hover: #F4511E;
    --secondary: #E53935;
    /* Red trial button */
    --accent: #f9b600;
    /* Gold/Yellow for prices */
    --whatsapp: #2948ff;
    /* Royal Blue */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --success: #00b67a;
    /* Trustpilot Green */
    --spacing-container: 1240px;
    --font-main: 'Inter', system-ui, sans-serif;
}

/* Daily Offer Countdown */
.daily-offer-countdown {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.countdown-title {
    color: var(--primary);
    /* ... (unchanged) ... */
    margin-bottom: 2rem;
    font-variant-numeric: tabular-nums;
}

/* ... (skip to features strip) ... */

/* Features Strip (Blue Glassmorphism) */
.features-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 4rem 0 2rem;
    /* Reduced from 8rem */
}

.countdown-title {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-variant-numeric: tabular-nums;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -5px;
}

.btn-shop-now {
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
    animation: pulse-shop 2s infinite;
}

.btn-shop-now:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.urgency-text {
    color: #ff5722;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeUrgency 2s infinite alternate;
}

@keyframes pulse-shop {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

@keyframes fadeUrgency {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .daily-offer-countdown {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-separator {
        font-size: 1.8rem;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-branding {
    z-index: 10;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.site-title span {
    color: var(--primary);
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-navigation a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: white;
    /* Ensure text is white */
}

/* Slider Styles */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Typography & Actions */
.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    min-width: 200px;
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        /* Reduced gap */
    }

    .hero-section {
        padding: 5rem 0 3rem !important;
        /* Further reduced padding */
    }

    .hero-title {
        font-size: 1.75rem;
        /* Reduced from 2rem min */
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        padding: 0.75rem 2rem;
        /* Smaller padding */
        font-size: 0.95rem;
        /* Smaller text */
        min-width: 0;
        width: 80%;
        max-width: 260px;
    }
}


.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Countdown Timer Styles */
.daily-offer-countdown {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    /* Orange stroke */
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.daily-offer-countdown:hover {
    border-color: var(--primary);
    /* Keep orange color */
    box-shadow: 0 0 25px rgba(255, 87, 34, 0.3);
    /* Orange glow */
}

.countdown-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    padding: 0 0.25rem;
}

.btn-shop-now {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-shop-now:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.urgency-text {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Mobile Countdown Adjustments */
@media (max-width: 600px) {
    .daily-offer-countdown {
        padding: 1.5rem 1rem;
        max-width: 90%;
    }

    .countdown-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .countdown-grid {
        gap: 0.25rem;
    }

    .countdown-item {
        min-width: 50px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
        padding: 0 0.1rem;
    }

    .btn-shop-now {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    .urgency-text {
        font-size: 0.8rem;
    }
}

/* Features Strip Styles */
.features-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mobile Features Layout - 2 columns */
@media (max-width: 768px) {
    .features-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        /* Force 3 columns */
        gap: 0.5rem;
        /* Reduced gap */
        margin: 1rem 0;
        /* Reduced margin */
    }

    .feature-card {
        max-width: none;
        padding: 0.5rem !important;
        /* Tighter padding */
        min-width: 0;
        /* Prevent grid overflow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto !important;
        /* Allow height to shrink */
    }

    .feature-icon {
        width: 35px;
        /* Smaller icon */
        height: 35px;
        margin-bottom: 0.35rem;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-card h4 {
        font-size: 0.8rem;
        /* Smaller text */
        margin-bottom: 0.15rem;
        word-break: break-all;
        line-height: 1.1;
    }

    .feature-card p {
        font-size: 0.7rem;
        display: none;
        /* Hide description on mobile if very tight, or keep small */
    }

    .feature-card p {
        display: block;
        /* Restore display:block but keep small */
        font-size: 0.65rem;
        color: #888;
    }
}

/* Pricing Cards */
/* Pricing Cards */
.pricing-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 87, 34, 0.5);
    /* Primary border with transparency */
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.3);
    /* Glow effect */
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 50px rgba(255, 87, 34, 0.5);
    /* Stronger glow for VI P*/
    transform: scale(1.05) translateY(-10px);
}

.pricing-features {
    margin-bottom: auto;
    /* Push content up to make space for footer */
}

/* Payment Icons Row */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    opacity: 0.7;
}

.payment-icon {
    width: 32px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.payment-icon.paypal {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b5/PayPal.svg');
}

.payment-icon.visa {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/5e/Visa_Inc._logo.svg');
}

.payment-icon.mastercard {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/2/2a/Mastercard-logo.svg');
}

.payment-icon.crypto {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/8b/Cryptocurrency_Logo.svg');
    width: 20px;
}

/* Shiny Button Animation for VIP */
.btn-shiny {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
    animation: shiny 3s infinite;
}

@keyframes shiny {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}



.pricing-price {
    color: var(--accent);
    font-weight: 800;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Movie Carousel */
.movie-carousel-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: #000;
    margin-top: -4rem;
    /* Overlap slightly with hero or just sit tight */
    z-index: 10;
}

.movie-carousel-track {
    display: flex;
    width: calc(200px * 28);
    /* 14 items * 2 sets */
    animation: scroll 60s linear infinite;
    /* Slower animation for more items */
    gap: 1.5rem;
}

.movie-carousel-track:hover {
    animation-play-state: paused;
}

.movie-poster {
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.movie-poster:hover {
    transform: scale(1.05);
    z-index: 2;
    border-color: var(--primary);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay for Fade Effect */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, transparent 10%, transparent 90%, #000 100%);
    pointer-events: none;
    z-index: 20;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 14 - 1.5rem * 14));
        /* Scroll by width of one set + gaps */
    }
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .movie-poster {
        width: 140px;
        height: 210px;
    }

    .movie-carousel-track {
        width: calc(140px * 28);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 14 - 1.5rem * 14));
        }
    }
}

/* Utilities */
.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--text-main);
}

/* Review Section */
.review-section {
    background: #050505;
    position: relative;
    overflow: hidden;
    /* Hide overflow for carousel */
}

/* Container for the track */
.review-carousel-wrapper {
    width: 100%;
    margin-top: 1rem;
    /* Reduced margin since padding adds space */
    padding: 30px 0;
    /* Add padding to prevent clipping of hover effects (shadow/transform) */
    position: relative;
    /* Optional: fade masks on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    /* Allow width to be determined by content */
    animation: scroll-reviews 60s linear infinite;
    /* Slow consistent scroll */
}

.review-carousel-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
    /* Fixed width to ensure 4 fit in standard container */
    flex: 0 0 280px;
    /* Rigid flex */
    position: relative;
    z-index: 1;
    /* Base z-index */
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    /* Bring to front on hover if possible */
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid #333;
}

.review-meta h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: white;
}

.review-stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.verified-badge {
    color: var(--success);
    font-size: 0.8rem;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 1200px) {
    .review-card {
        width: 300px;
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 80vw;
        /* Mostly full width on mobile */
        flex: 0 0 80vw;
    }

    .review-carousel-track {
        width: max-content;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(0, 182, 122, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}


/* Setup Guide Styles */
.setup-hero .btn-secondary:hover {
    border-color: var(--primary) !important;
    background: #000 !important;
    color: var(--primary);
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: #333;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    z-index: 2001;
    /* Ensure above the menu overlay (z-index 1000) */
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: static;
        transform: none;
        left: auto;
    }

    .main-navigation ul {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        /* Slide out by default */
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        margin: 0;
    }

    .main-navigation.toggled ul {
        right: 0;
        /* Slide in */
    }

    .main-navigation ul li {
        margin: 0.8rem 0;
        /* Reduced from 1.5rem */
    }

    .main-navigation ul li a {
        font-size: 1.1rem;
        /* Reduced from 1.5rem */
        font-weight: 600;
        /* Slightly less bold */
    }

    /* Hamburger Animation when Toggled */
    .main-navigation.toggled .menu-toggle .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .main-navigation.toggled .menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .main-navigation.toggled .menu-toggle .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Footer Styles */
.site-footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid #222;
    color: var(--text-muted);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: var(--text-muted);
}

.footer-widget a:hover {
    color: var(--primary);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;

}

/* Device Compatibility Icons */
.device-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.device-card {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 140px;
    transition: all 0.3s ease;
    cursor: default;
}

.device-card:hover {
    background: #161616;
    border-color: #333;
    transform: translateY(-5px);
}

.device-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    /* Theme Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    /* Ensures currentcolor works for SVGs */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.device-card:hover .device-icon-circle {
    background: var(--primary);
    color: white;
    /* White icon on orange background for better contrast */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
    /* Orange shadow */
}

.device-icon-circle svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.device-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.device-card:hover .device-name {
    color: var(--primary);
}

@media (max-width: 768px) {
    .device-grid {
        gap: 1rem;
    }

    .device-card {
        width: 45%;
        /* 2 per row on mobile */
    }
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #222;
    border-radius: 8px;
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    pointer-events: none;
    /* Let parent handle click */
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    background: #000;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary max height for animation */
    padding-bottom: 1.5rem;
    overflow-y: auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
}

.blog-card-image {
    display: block;
    height: 240px;
    background: #111;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #222;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Hover Overlay Effect */
.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.no-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    background: #080808;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.blog-category {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: bold;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: white;
}

/* Single Post Typography */
.entry-title {
    font-size: 2.5rem;
    color: var(--primary);
    /* Changed from white to primary theme color */
}

@media (max-width: 600px) {
    .entry-title {
        font-size: 1.5rem;
        /* Smaller on mobile */
    }
}

.entry-content.typography {
    line-height: 1.8;
    color: #ddd;
    font-size: 1.1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2,
.entry-content h3 {
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}


/* Live Sports Scoreboard */
.league-tab {
    background: #111;
    color: #888;
    border: 1px solid #333;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.league-tab:hover,
.league-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.score-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    transition: transform 0.2s;
}

.score-card:hover {
    transform: translateY(-2px);
    border-color: #333;
}

.score-card.live-game {
    border-color: #ef4444;
    /* Red border for live */
}

.match-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.match-status.live {
    color: #ef4444;
}

.match-status.live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.teams-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    text-align: center;
}

.team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ddd;
}

.team-score {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0.2rem;
    color: white;
}

.match-vs {
    font-weight: bold;
    color: #444;
    font-size: 0.8rem;
}

/* Scores Carousel */
.scores-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    margin-top: 1rem;

    /* Hide scrollbar for cleaner look but allow scroll */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.scores-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */

}

/* Carousel Layout - 2 items Desktop, 1 item Mobile */
.scores-carousel .score-card {
    flex: 0 0 calc(50% - 0.5rem);
    /* 2 items per row for desktop */
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 768px) {
    .scores-carousel .score-card {
        flex: 0 0 100%;
        /* 1 item per row for mobile */
        scroll-snap-align: center;
    }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    display: none;
    /* Hide arrows on mobile, rely on swipe */
}


/* News Card Styling - Compact Match */
.news-card {
    display: flex !important;
    flex-direction: row;
    /* Always horizontal */
    align-items: flex-start;
    /* Align top */
    background: #0f0f0f;
    border: none;
    /* Clean borderless or subtle */
    border-radius: 8px;
    height: 140px;
    /* Fixed compact height */
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    background: #141414;
}

.news-image-wrapper {
    width: 220px;
    /* Fixed width for image */
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    /* Orange background */
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    border-top-right-radius: 4px;
    box-shadow: none;
    /* Flat look */
    top: auto;
    /* Reset override */
    border-radius: 0 4px 0 0;
    /* Only top right round */
    backdrop-filter: none;
}

.news-content {
    padding: 1.5rem;
    width: auto;
    /* Let it fill remaining */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    height: 100%;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: white;
    /* Full title shown */
    white-space: normal;
}

.news-title a {
    color: white;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--primary);
}

.news-desc {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.read-more-link {
    display: none;
    /* Hide as per screenshot */
}

@media (max-width: 600px) {
    .scores-carousel .score-card {
        padding: 0;
    }

    .news-card {
        height: 120px;
        /* Slightly smaller on mobile */
    }

    .news-image-wrapper {
        width: 140px;
    }

    .news-content {
        padding: 1rem;
    }

    .news-title {
        font-size: 1rem;
    }

    .news-desc {
        font-size: 0.85rem;
    }
}

/* News Modal - Premium Glassmorphism */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.news-modal-overlay.active {
    display: flex;
    animation: fadeInModal 0.3s ease forwards;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.news-modal-content {
    width: 100%;
    max-width: 1000px;
    height: 85vh;
    background: rgba(18, 18, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.news-modal-overlay.active .news-modal-content {
    transform: scale(1);
}

.news-modal-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
}

.news-modal-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-modal-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.news-modal-close {
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.news-modal-close:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* Modal Content Layout (No Iframe) */
.news-modal-scroll {
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-modal-hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-modal-body {
    padding: 2rem;
    color: #ddd;
}

.news-modal-date {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.news-modal-headline {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.news-modal-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.news-read-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.news-read-btn:hover {
    background: var(--primary-hover);
    color: white;
}

/* --- Sports Carousel Styles (Restored) --- */

.scores-container {
    overflow: hidden;
    width: 100%;
}

.scores-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    padding: 0 0 1rem 0;
}

.scores-carousel::-webkit-scrollbar {
    display: none;
}

.score-card {
    flex: 0 0 calc(50% - 0.5rem);
    /* Default: 2 items per row */
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: transform 0.2s, border-color 0.2s;
    min-height: 140px;
}

.score-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.loading-spinner,
.error-msg,
.no-games {
    text-align: center;
    padding: 4rem 1rem;
    width: 100%;
    font-size: 1.1rem;
    color: #888;
}

.error-msg {
    color: #e53935;
}

/* Specific News Card Styling */
.news-card {
    flex-direction: row;
}

.news-image-wrapper {
    width: 160px;
    flex-shrink: 0;
    position: relative;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    text-align: center;
}

.news-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.news-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.news-title a:hover,
.news-link-trigger:hover {
    color: var(--primary);
}

.news-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
}

/* Mobile: 1 item per row */
@media (max-width: 768px) {
    .score-card {
        flex: 0 0 100%;
    }

    .news-card {
        flex-direction: column;
    }

    .news-image-wrapper {
        width: 100%;
        height: 160px;
    }
}

.setup-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.setup-image:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

/* Money Back Guarantee Responsive */
@media (max-width: 600px) {
    .money-back-guarantee>div {
        flex-direction: column;
        text-align: center !important;
    }

    .guarantee-text {
        text-align: center !important;
    }
}

/* Feature Strip Overlay */
.features-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 5rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 102, 0, 0.15);
    /* Orange glass tint */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    /* Orange border */
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1 1 180px;
    /* Base width */
    max-width: 220px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.feature-card:hover {
    background: rgba(255, 102, 0, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #ffaa00;
    /* Bright orange icon */
}

.feature-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile optimizations for feature strip */
@media (max-width: 768px) {
    .features-strip {
        gap: 0.5rem;
    }

    .feature-card {
        padding: 1rem 0.5rem;
        flex: 1 1 30%;
        /* 3 items per row */
        max-width: none;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .feature-card h4 {
        font-size: 0.95rem;
    }
}

/* Related Posts Styling */
.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-card a {
    text-decoration: none;
}

.related-post-card:hover .related-post-title {
    color: var(--primary);
}

/* Glassmorphism Helper */
.glass-effect {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* How It Works Section */
.how-it-works-section {
    padding: 3rem 0 !important;
    /* Reduced padding */
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 10px;
}


.step-card-box {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}


.step-card-box:hover {
    transform: translateY(-5px);
    /* Subtle lift */
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 50px;
    /* Smaller icon container */
    height: 50px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-card-box:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.step-icon svg {
    width: 24px;
    /* Smaller SVG */
    height: 24px;
}

.step-title {
    font-size: 1rem;
    /* Smaller title */
    margin-bottom: 0.5rem;
    color: white;
    text-transform: uppercase;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    /* Smaller desc */
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {

    .steps-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .step-card-box {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}


/* Content Overview Section */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.content-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.content-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.content-block {
    margin-bottom: 1.5rem;
}

/* Responsive Content Grid */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* Reorder: Text first on mobile? User requested Image Right on desktop, Left text. usually Image Top on mobile is better visuals. */
    .content-image-col {
        order: -1;
    }

    .content-text-col {
        padding: 0 1rem;
    }
}

/* Carousel Styles */
.content-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.content-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeCarousel 25s infinite ease-in-out;
}

/* 5 Images: 25s total cycle, 5s each */
.content-carousel img:nth-child(1) {
    animation-delay: 0s;
}

.content-carousel img:nth-child(2) {
    animation-delay: 5s;
}

.content-carousel img:nth-child(3) {
    animation-delay: 10s;
}

.content-carousel img:nth-child(4) {
    animation-delay: 15s;
}

.content-carousel img:nth-child(5) {
    animation-delay: 20s;
}

@keyframes fadeCarousel {
    0% {
        opacity: 0;
        z-index: 1;
    }

    4% {
        opacity: 1;
        z-index: 2;
    }

    /* Fade in quickly */
    20% {
        opacity: 1;
        z-index: 2;
    }

    /* Stay visible */
    24% {
        opacity: 0;
        z-index: 1;
    }

    /* Fade out */
    100% {
        opacity: 0;
        z-index: 1;
    }
}

/* Features Strip (Blue Glassmorphism) */
.features-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 8rem 0 4rem;
}

.feature-card {
    background: rgba(10, 25, 41, 0.7);
    /* Dark Blue Glass Base */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 101, 192, 0.3);
    /* Subtle Blue Border */
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Default state (no hover) */
.feature-card .feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    /* Orange Icons as requested */
    border: 2px solid #FF5722;
    color: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(255, 87, 34, 0.1);
    transition: all 0.3s ease;
}

.feature-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.feature-card svg {
    width: 30px;
    height: 30px;
}

/* Hover State - White Glass */
.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    /* White Glass Hover */
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .features-strip {
        gap: 0.5rem;
    }

    .feature-card {
        padding: 1rem 0.25rem;
        flex: 1 1 30%;
        min-width: 0;
        max-width: none;
    }

    .feature-card .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .feature-card h4 {
        font-size: 0.8rem;
    }

    .feature-card p {
        font-size: 0.65rem;
    }
}

/* WhatsApp Contact Form (Green Glass) */
.whatsapp-glass-form {
    background: rgba(37, 211, 102, 0.08);
    /* WhatsApp Green Tint */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-glass-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-green 5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Global Typography Utilities */
.page-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Utilities */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

/* Setup Guide Section Titles */
.setup-section .section-title {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    text-align: left;
}


/* Contact Page Specific Fixes */
.quick-test-form {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.test-form-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .test-form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .flag-select-container {
        flex: 1 1 auto !important;
        width: 100%;
    }

    .whatsapp-glass-form {
        padding: 2rem 1.5rem !important;
    }
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-glass-form .form-group input:focus,
.whatsapp-glass-form .form-group textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
    background: rgba(0, 0, 0, 0.5) !important;
}

.whatsapp-glass-form button:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5) !important;
}

/* Forms Row Responsive */
@media (max-width: 768px) {
    .forms-row {
        flex-direction: column;
        gap: 2rem !important;
    }

    .whatsapp-glass-form,
    .contact-form-wrapper {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* How It Works Section */
.steps-grid {
    display: flex;
    /* align-items: center; removed to allow stretching for equal height */
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 0px;
    /* Forces equal width ignoring content width */
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: auto;
    /* Allow it to fill the stretched height */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-card-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    /* Primary color low opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.step-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    /* Pushes content to fill space if needed */
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.05);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.1);
    animation: floatArrow 2.5s ease-in-out infinite;
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateX(0);
        box-shadow: 0 0 15px rgba(255, 87, 34, 0.1);
    }

    50% {
        transform: translateX(10px);
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.3);
    }
}

/* Mobile Responsiveness for Steps */
@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        /* Center items on mobile */
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        animation: floatArrowMobile 2.5s ease-in-out infinite;
    }

    @keyframes floatArrowMobile {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
            box-shadow: 0 0 15px rgba(255, 87, 34, 0.1);
        }

        50% {
            transform: rotate(90deg) translateX(10px);
            box-shadow: 0 0 25px rgba(255, 87, 34, 0.3);
        }
    }

    .step-card-box {
        width: 100%;
        max-width: 400px;
        flex: 0 0 auto;
        /* Reset flex for mobile */
    }
}

/* Reseller Page Styles */
.reseller-hero {
    position: relative;
    /* Styles handled inline for background */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.reseller-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reseller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.reseller-card.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.15);
}

.reseller-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 87, 34, 0.25);
}

@media (max-width: 900px) {
    .reseller-card.featured {
        transform: scale(1);
    }

    .reseller-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* Catchy Hover Effect for VIP Plan */
.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffaa00;
    /* Goldish/Bright Orange */
    box-shadow: 0 20px 50px rgba(255, 170, 0, 0.25);
}

.pricing-card.featured:hover h3 {
    color: #ffaa00;
}

.pricing-card.featured:hover .btn-primary {
    background: linear-gradient(135deg, #ffaa00 0%, #ff5722 100%);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

@media (max-width: 768px) {

    .seo-content-section,
    .pricing-section,
    .movie-carousel-section {
        padding: 2rem 0 !important;
        /* Reduce from 4rem */
    }
}

/* Resolution Badges */
.resolution-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    /* Gap between badges */
    margin-bottom: 1.5rem;
}

.res-badge {
    border: 2px solid #ffffff;
    /* White border */
    border-radius: 6px;
    /* Rounded corners */
    padding: 3px 8px;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Article Post Popup - Premium Offer */
#article-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    /* JS will change this to flex */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 20px;
}

#article-popup-content {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: popupFadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#close-popup:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.popup-icon-wrapper {
    margin-bottom: 1.5rem;
}

.popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.popup-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-offer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
}

.offer-icon {
    font-size: 2rem;
}

.offer-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: white;
    margin-top: 0;
}

.offer-details p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.app-icons-container {
    display: flex;
    gap: 5px;
}

.app-icon {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    color: white;
}

.ibo-player {
    background: #3b82f6;
}

.hot-player {
    background: #ef4444;
}

.popup-timer-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-timer-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: bold;
}

.popup-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    animation: popupPulse 2s infinite ease-in-out;
}

@keyframes popupPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: var(--primary);
    }

    100% {
        transform: scale(1);
    }
}

.timer-unit small {
    font-size: 0.6rem;
    color: #666;
    margin-top: 0.2rem;
}

.popup-cta {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
    background: var(--primary);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.popup-disclaimer {
    font-size: 0.7rem;
    color: #555;
    margin: 0;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.4);
}

.step-card-box {
    transition: all 0.3s ease;
}

.step-card-box:hover {
    border-color: var(--primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
}