
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            background-size: 600% 600%;
            animation: gradientBG 20s ease infinite;
            min-height: 100vh;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .countdown-value {
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .result-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .highlight-message {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }

        .destination-card {
            transition: all 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .hotel-card {
            transition: all 0.3s ease;
        }

        .hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .plane-animation {
            animation: fly 15s linear infinite;
        }

        @keyframes fly {
            0% { transform: translateX(-100%) translateY(0); }
            50% { transform: translateX(100%) translateY(-20px); }
            100% { transform: translateX(-100%) translateY(0); }
        }

        .cloud-animation-1 {
            animation: float 30s linear infinite;
        }

        .cloud-animation-2 {
            animation: float 25s linear infinite;
            animation-delay: -15s;
        }

        @keyframes float {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100vw); }
        }

        .input-container {
            position: relative;
        }

        .input-icon {
            position: absolute;
            top: 66%;
            transform: translateY(-50%);
            left: 12px;
            color: #64748b;
        }

        .input-with-icon {
            padding-left: 40px;
        }

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hotel-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .suggestions-container {
            position: absolute;
            width: 100%;
            max-height: 200px;
            overflow-y: auto;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 0 0 8px 8px;
            z-index: 50;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .suggestion-item {
            padding: 10px 15px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .suggestion-item:hover {
            background-color: #f3f4f6;
        }

        .recent-searches {
            margin-top: 20px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
        }

        .recent-search-item {
            display: inline-block;
            margin: 5px;
            padding: 5px 10px;
            background-color: #e2e8f0;
            border-radius: 15px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .recent-search-item:hover {
            background-color: #cbd5e1;
        }

        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 12px 20px;
            background: #4c1d95;
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }