        .offer-wrapper{
                        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            margin-bottom: 60px;
            padding: 30px 10PX;
            border-radius: 20px;

        }
        
        .offer-card {
            background: white;
            border-radius: 20px;
            padding: 40px 10px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4);
        }

        .badge {
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            display: inline-block;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        h1 {
            color: #2d3748;
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .highlight {
            color: #667eea;
            font-size: 36px;
        }

        .subtitle {
            color: #718096;
            font-size: 18px;
            margin-bottom: 30px;
        }

        .price-container {
            background: linear-gradient(135deg, #ffd93d 0%, #ffaa00 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(255, 170, 0, 0.3);
        }

        .original-price {
            color: #2d3748;
            font-size: 24px;
            text-decoration: line-through;
            opacity: 0.7;
            margin-bottom: 5px;
        }

        .current-price {
            color: #2d3748;
            font-size: 72px;
            font-weight: 900;
            line-height: 1;
            margin: 10px 0;
            position: relative;
            background: linear-gradient(90deg, #1a202c 0%, #282b31 25%, #858480 50%, #282b31 75%, #1a202c 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }

        .rupee {
            font-size: 48px;
            vertical-align: super;
        }

        .book-seat {
            color: #4a5568;
            font-size: 14px;
            margin-top: 10px;
            font-style: italic;
        }

        .features {
            background: #f7fafc;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border: 2px dashed #667eea;
        }

        .feature-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px 0;
            color: #2d3748;
            font-size: 16px;
            font-weight: 600;
        }

        .feature-item::before {
            content: '✓';
            background: linear-gradient(135deg, #6bcf7f, #4ecdc4);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .bonus-badge {
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            margin-left: 8px;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .timer {
            background: #2d3748;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .timer-label {
            font-size: 16px;
            margin-bottom: 10px;
            color: #ff6b6b;
            font-weight: bold;
        }

        .countdown {
            font-size: 48px;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            letter-spacing: 3px;
            animation: pulse 2s infinite;
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 18px 50px;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .limited {
            color: #e53e3e;
            font-size: 14px;
            margin-top: 15px;
            font-weight: bold;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }