/* xl - DESKTOP STYLES */ 
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
            color: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
        }

        /* Header */
        .header {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
        }

        .exclusive-badge {
            display: inline-block;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .moon {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle at 30% 30%, #fff, #e6e6e6);
            border-radius: 50%;
            margin: 0 auto 30px;
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 50px rgba(255, 255, 255, 0.8); }
            to { box-shadow: 0 0 80px rgba(255, 255, 255, 1), 0 0 120px rgba(255, 255, 255, 0.6); }
        }

        .main-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.4rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .dates {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #f39c12;
            font-weight: bold;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
            border: none;
            cursor: pointer;
            margin: 0 10px 10px 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(231, 76, 60, 0.6);
        }

        .cta-secondary {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
        }

        .cta-secondary:hover {
            box-shadow: 0 12px 35px rgba(39, 174, 96, 0.6);
        }

        /* Main Content */
        .content {
            position: relative;
            z-index: 10;
            padding: 80px 0;
        }

        .section {
            margin-bottom: 80px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            color: #fff;
        }

        /* Itinerary Timeline */
        .timeline {
            position: relative;
            margin: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #f39c12, #e74c3c);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 45%;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 40px;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 55%;
            padding-left: 40px;
            text-align: left;
        }

        .timeline-date {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 120px;
            height: 60px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .timeline-item:nth-child(odd) .timeline-date {
            right: -60px;
        }

        .timeline-item:nth-child(even) .timeline-date {
            left: -60px;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .timeline-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #f39c12;
        }

        .timeline-content .time {
            font-size: 1.1rem;
            color: #3498db;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .timeline-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .activity-highlight {
            background: rgba(52, 152, 219, 0.2);
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 4px solid #3498db;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .countdown {
            text-align: center;
            padding: 40px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            margin: 40px 0;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: bold;
            color: #e74c3c;
            display: block;
        }

        .countdown-label {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .info-card h4 {
            color: #f39c12;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .exclusive-perks {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(39, 174, 96, 0.2));
            border: 2px solid rgba(46, 204, 113, 0.5);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 40px 0;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: calc(100% - 80px);
                left: 80px !important;
                text-align: left !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .timeline-date {
                left: -60px !important;
                right: auto !important;
            }

            .countdown-timer {
                gap: 15px;
            }

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

            .section {
                padding: 30px 20px;
            }
        }
    </style>

