    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, Roboto, Open Sans, Helvetica Neue, sans-serif;
            line-height: 1.2308;
            color: #17191a;
            min-height: 100vh;
            /* padding: 2rem 1rem; */
        }
 
 .offer-text {
    font-weight: bold;
    font-size: 1.15rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0px 2px #42B8B1;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

    .pricing-container {
        max-width: 1200px;
            background: #f8f9fa;

        margin: 0 auto;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .pricing-header h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #17191a;
    }

    .pricing-header p {
        font-size: 1.1rem;
        color: #7f8588;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

  .popup-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            max-width: 400px;
            width: 100%;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            min-width: 14vw;
        }

        .package-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2eaba9;
            line-height: 1.2;
        }

        .package-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .package-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .special-launch {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            /* margin-bottom: 16px; */
        }

        .price-container-cta {
            margin-bottom: 20px;
            margin-bottom: 0.25rem;

        }

        .main-price {
                font-size: 2.5rem;
    font-weight: bold;
            color: #4ecdc4;
            display: inline-block;
            margin-right: 12px;
        }

        .original-price {
            font-size: 24px;
            color: #999;
            text-decoration: line-through;
            display: inline-block;
            margin-right: 12px;
            vertical-align: top;
            margin-top: 8px;
        }

        .discount-badge {
            background-color: #ef4444;
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: bold;
            display: inline-block;
            vertical-align: top;
            margin-top: 8px;
        }

        .lock-in-text {
            font-size: 16px;
            color: #666;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .limited-time {
            font-size: 16px;
            color: #ef4444;
            font-weight: 600;
            /* margin-bottom: 24px; */
        }

        .subscribe-button {
            background-color: #4ecdc4;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }

          :root {
            --triviamaker-primary: #277f99;
            --triviamaker-secondary: #333232;
            --triviamaker-teal: #72CBCF;
            --text-primary: #333333;
            --background-light: #f8f9fa;
        }

        .primary-color { background-color: var(--triviamaker-primary); }
        .secondary-color { background-color: var(--triviamaker-secondary); }
        .teal-color { background-color: var(--triviamaker-teal); }
        .text-primary-color { color: var(--text-primary); }
        .bg-light { background-color: var(--background-light); }
        
        .primary-text { color: var(--triviamaker-primary); }
        .secondary-text { color: var(--triviamaker-secondary); }
        .teal-text { color: var(--triviamaker-teal); }
        
        .border-primary { border-color: var(--triviamaker-primary); }
        .border-teal { border-color: var(--triviamaker-teal); }

          .section-container {
            max-height: 700px;
            overflow: hidden;
        }

        .video-responsive {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
        }

        .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .compact-video {
            padding-bottom: 45%; /* More compact ratio */
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--triviamaker-primary), var(--triviamaker-teal));
        }

        .subscribe-button:hover {
            background-color: #228b63;
        }

        .rocket-icon {
            margin-right: 8px;
            font-size: 20px;
        }

    .pricing-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        min-height: 600px;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.featured {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        border: 2px solid rgb(69, 172, 199);
    }

    .pricing-card.featured::before {
        content: 'ON SALE';
        position: absolute;
        top: 18px;
        right: -30px;
        width: 128px;
        padding: 9px 20px 8px;
        background: #fff;
        color: rgb(69, 172, 199);
        transform: rotate(45deg);
        text-align: center;
        font-weight: 600;
        font-size: 0.8rem;
        z-index: 2;
    }

    .pricing-card.limited-time::before {
        content: 'LIMITED TIME';
        position: absolute;
        top: 18px;
        right: -30px;
        width: 128px;
        padding: 9px 20px 8px;
        background: #fff;
        color: #25e5d3;
        transform: rotate(45deg);
        text-align: center;
        font-weight: 600;
        font-size: 0.8rem;
        z-index: 2;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0.7;
        }

        100% {
            opacity: 1;
        }
    }

    .limited-offer {
        background: rgba(37, 229, 211, 0.1);
        border: 1px solid #25e5d3;
        border-radius: 8px;
        padding: 0.75rem;
        margin: 1rem 0;
        text-align: center;
    }

    .limited-offer .offer-text {
        color: #25e5d3;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Mobile Plan Selector - Hidden by default on desktop */
    .mobile-plan-selector {
        display: none !important;
        margin-bottom: 2rem;
    }

    /* Mobile card containers - Hidden by default on desktop */
    .mobile-card-container {
        display: none !important;
    }

    .mobile-card-container.active {
        display: none !important;
    }

    /* Show mobile elements only on mobile */
    @media (max-width: 768px) {
        .mobile-card-container {
            display: none;
        }
          
        .mobile-card-container.active {
            display: block !important;
        }
    }

    .plan-tabs {
        display: flex;
        background: white;
        border-radius: 12px;
        padding: 4px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow-x: auto;
    }

    .plan-tab {
        flex: 1;
        padding: 12px 8px;
        text-align: center;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        min-width: 80px;
    }

    .plan-tab.active {
        background: rgb(69, 172, 199);
        color: white;
        transform: scale(1.02);
    }

    .plan-tab:not(.active) {
        color: #666;
    }



    .card-header {
        text-align: center;
        padding: 2rem 2rem 1rem;
    }

    .plan-name {
        font-size: 24px;
        font-weight: 400;
        color: #17191a;
        margin-bottom: 0.5rem;
    }

    .plan-description {
        color: rgba(23, 25, 26, 0.7);
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .price-container {
        text-align: center;
        margin-bottom: 2rem;
    }

    .price {
        font-size: 32px;
        font-weight: 400;
        color: #17191a;
        margin-bottom: 0.5rem;
    }

    .price-period {
        color: #7f8588;
        font-size: 13px;
    }

    .billing-toggle {
        display: flex;
        background: transparent;
        border: 2px solid rgb(69, 172, 199);
        border-radius: 10px;
        padding: 3px;
        margin: 1rem auto;
        width: fit-content;
    }

    .billing-option {
        padding: 8px 16px;
        border: none;
        background: transparent;
        color: rgb(69, 172, 199);
        cursor: pointer;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .billing-option.active {
        background: rgb(69, 172, 199);
        color: white;
    }

    .features {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .feature-section {
        margin-bottom: 1.5rem;
    }

    .feature-section-title {
        font-weight: bold;
        color: #17191a;
        font-size: 13px;
        margin-bottom: 0.5rem;
        padding: 8px 0;
    }

    .feature-item {
        display: flex;
        align-items: center;
        padding: 8px 0;
        font-size: 13px;
        color: #17191a;
        border-bottom: 1px solid rgba(23, 25, 26, 0.05);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .feature-icon.check {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M12.6,2.5L5,10.1L1.4,6.5c-0.2-0.2-0.7-0.2-0.9,0c-0.2,0.2-0.2,0.7,0,0.9l4.1,4.1c0.1,0.1,0.3,0.2,0.4,0.2h0 c0.2,0,0.3-0.1,0.4-0.2l8-8c0.2-0.2,0.2-0.7,0-0.9C13.3,2.3,12.9,2.3,12.6,2.5z" fill="%2317191a"/></svg>') no-repeat center;
    }

    .feature-icon.stop {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0z M7,1.3c1.3,0,2.6,0.5,3.6,1.3l-8,8 C1.7,9.6,1.3,8.3,1.3,7C1.3,3.8,3.8,1.3,7,1.3z M7,12.7c-1.3,0-2.6-0.5-3.6-1.3l8-8c0.8,1,1.3,2.2,1.3,3.6 C12.7,10.2,10.2,12.7,7,12.7z" fill="%23ccc"/></svg>') no-repeat center;
    }

    .feature-text.disabled {
        color: lightgrey;
    }

    .cta-section {
        padding: 0 2rem 2rem;
    }

    .cta-button {
        width: 85%;
        height: 45px;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        display: block;
        text-align: center;
        line-height: 45px;
        margin: 0 auto;
    }

    .cta-button.primary {
        background: #4ecdc4;
        color: white;
        border: 2.5px solid #4ecdc4;
    }

    .cta-button.primary:hover {
        background: #44a08d;
        border-color: #44a08d;
    }

    .cta-button.secondary {
        background: transparent;
        color: rgb(69, 172, 199);
        border: 2px solid rgb(69, 172, 199);
    }

    .cta-button.secondary:hover {
        background: rgb(69, 172, 199);
        color: white;
    }

    .billing-info {
        color: #ffffff;
        font-size: 11px;
        text-align: center;
        margin-top: 12px;
    }

    .hidden {
        display: none !important;
    }

    /* Basic card specific styles */
    .pricing-card.basic {
        background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    }

    .pricing-card.basic .plan-name,
    .pricing-card.basic .price,
    .pricing-card.basic .feature-item {
        color: white;
    }

    .pricing-card.basic .plan-description {
        color: rgba(255, 255, 255, 0.8);
    }

    .pricing-card.basic .feature-icon.check {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M12.6,2.5L5,10.1L1.4,6.5c-0.2-0.2-0.7-0.2-0.9,0c-0.2,0.2-0.2,0.7,0,0.9l4.1,4.1c0.1,0.1,0.3,0.2,0.4,0.2h0 c0.2,0,0.3-0.1,0.4-0.2l8-8c0.2-0.2,0.2-0.7,0-0.9C13.3,2.3,12.9,2.3,12.6,2.5z" fill="white"/></svg>') no-repeat center;
    }

    .pricing-card.basic .feature-icon.stop {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0z M7,1.3c1.3,0,2.6,0.5,3.6,1.3l-8,8 C1.7,9.6,1.3,8.3,1.3,7C1.3,3.8,3.8,1.3,7,1.3z M7,12.7c-1.3,0-2.6-0.5-3.6-1.3l8-8c0.8,1,1.3,2.2,1.3,3.6 C12.7,10.2,10.2,12.7,7,12.7z" fill="rgba(255,255,255,0.5)"/></svg>') no-repeat center;
    }

    .pricing-card.basic .feature-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    /* Premium card specific styles */
    .pricing-card.premium {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .pricing-card.premium .plan-name,
    .pricing-card.premium .price,
    .pricing-card.premium .feature-item {
        color: white;
    }

    .pricing-card.premium .plan-description,
    .pricing-card.premium .price-period {
        color: rgba(255, 255, 255, 0.8);
    }

    .pricing-card.premium .feature-icon.check {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M12.6,2.5L5,10.1L1.4,6.5c-0.2-0.2-0.7-0.2-0.9,0c-0.2,0.2-0.2,0.7,0,0.9l4.1,4.1c0.1,0.1,0.3,0.2,0.4,0.2h0 c0.2,0,0.3-0.1,0.4-0.2l8-8c0.2-0.2,0.2-0.7,0-0.9C13.3,2.3,12.9,2.3,12.6,2.5z" fill="white"/></svg>') no-repeat center;
    }

    .pricing-card.premium .feature-icon.stop {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0z M7,1.3c1.3,0,2.6,0.5,3.6,1.3l-8,8 C1.7,9.6,1.3,8.3,1.3,7C1.3,3.8,3.8,1.3,7,1.3z M7,12.7c-1.3,0-2.6-0.5-3.6-1.3l8-8c0.8,1,1.3,2.2,1.3,3.6 C12.7,10.2,10.2,12.7,7,12.7z" fill="rgba(255,255,255,0.5)"/></svg>') no-repeat center;
    }

    .pricing-card.premium .feature-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .pricing-card.premium .billing-option {
        color: white;
        border-color: white;
    }

    .pricing-card.premium .billing-toggle {
        border-color: white;
    }

    .pricing-card.premium .billing-option.active {
        background: white;
        color: #667eea;
    }

    /* Enterprise card specific styles */
    .pricing-card.enterprise {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }

    .pricing-card.enterprise .plan-name,
    .pricing-card.enterprise .price,
    .pricing-card.enterprise .feature-item {
        color: white;
    }

    .pricing-card.enterprise .plan-description,
    .pricing-card.enterprise .price-period {
        color: rgba(255, 255, 255, 0.8);
    }

    .pricing-card.enterprise .feature-icon.check {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M12.6,2.5L5,10.1L1.4,6.5c-0.2-0.2-0.7-0.2-0.9,0c-0.2,0.2-0.2,0.7,0,0.9l4.1,4.1c0.1,0.1,0.3,0.2,0.4,0.2h0 c0.2,0,0.3-0.1,0.4-0.2l8-8c0.2-0.2,0.2-0.7,0-0.9C13.3,2.3,12.9,2.3,12.6,2.5z" fill="white"/></svg>') no-repeat center;
    }

    .pricing-card.enterprise .feature-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        body {
            /* padding: 1rem 0.5rem; */
        }

        .pricing-header h1 {
            font-size: 2rem;
        }

        .pricing-grid {
            display: none !important;
            /* Hide desktop grid on mobile */
        }

        .mobile-plan-selector {
            display: block !important;
            /* Show mobile selector */
        }

        .pricing-card {
            min-height: auto;
            margin-bottom: 1rem;
        }

        .pricing-card.featured {
            transform: none;
        }

        .pricing-card.premium-plus {
            transform: none;
            border-width: 2px;
        }

        .card-header {
            padding: 1.5rem 1.5rem 1rem;
        }

        .features {
            padding: 0 1.5rem;
        }

        .cta-section {
            padding: 0 1.5rem 1.5rem;
        }

        .feature-section {
            margin-bottom: 1rem;
        }

        .feature-item {
            padding: 6px 0;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .pricing-header h1 {
            font-size: 1.75rem;
        }

        .card-header {
            padding: 1.25rem 1.25rem 1rem;
        }

        .features {
            padding: 0 1.25rem;
        }

        .cta-section {
            padding: 0 1.25rem 1.25rem;
        }

        .price {
            font-size: 28px;
        }

        .plan-tab {
            font-size: 0.8rem;
            padding: 10px 6px;
        }
    }

    /* Remove colored backgrounds - all cards white except Premium Plus */
    .pricing-card.basic {
        background: white;
    }

    .pricing-card.premium {
        background: white;
    }

    .pricing-card.enterprise {
        background: white;
    }

    /* Premium Plus card specific styles - HIGHLIGHTED */
    .pricing-card.premium-plus {
        background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
        transform: scale(1.05);
        border: 3px solid #25e5d3;
        box-shadow: 0 15px 40px rgba(37, 229, 211, 0.3);
    }

    .pricing-card.premium-plus .plan-name,
    .pricing-card.premium-plus .price,
    .pricing-card.premium-plus .feature-item {
        color: white;
    }

    .pricing-card.premium-plus .plan-description,
    .pricing-card.premium-plus .price-period {
        color: rgba(255, 255, 255, 0.9);
    }

    .pricing-card.premium-plus .feature-icon.check {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M12.6,2.5L5,10.1L1.4,6.5c-0.2-0.2-0.7-0.2-0.9,0c-0.2,0.2-0.2,0.7,0,0.9l4.1,4.1c0.1,0.1,0.3,0.2,0.4,0.2h0 c0.2,0,0.3-0.1,0.4-0.2l8-8c0.2-0.2,0.2-0.7,0-0.9C13.3,2.3,12.9,2.3,12.6,2.5z" fill="white"/></svg>') no-repeat center;
    }

    .pricing-card.premium-plus .feature-icon.stop {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0z M7,1.3c1.3,0,2.6,0.5,3.6,1.3l-8,8 C1.7,9.6,1.3,8.3,1.3,7C1.3,3.8,3.8,1.3,7,1.3z M7,12.7c-1.3,0-2.6-0.5-3.6-1.3l8-8c0.8,1,1.3,2.2,1.3,3.6 C12.7,10.2,10.2,12.7,7,12.7z" fill="rgba(255,255,255,0.5)"/></svg>') no-repeat center;
    }

    .pricing-card.premium-plus .feature-item {
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .pricing-card.premium-plus .limited-offer {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .pricing-card.premium-plus .limited-offer .offer-text {
        color: white;
    }