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

        :root {
            --sunset-orange: #FF6B35;
            --deep-teal: #004E64;
            --warm-sand: #F7E7CE;
            --forest-green: #25A18E;
            --midnight: #1A1A2E;
            --soft-cream: #FFF8F0;
            --accent-coral: #FF9F68;
            --text-dark: #2C2C2C;
            --text-light: #6B6B6B;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: linear-gradient(135deg, var(--soft-cream) 0%, #FFE5D9 100%);
            color: var(--text-dark);
            overflow-x: hidden;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: float 20s infinite ease-in-out;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,78,100,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: float 25s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(5deg); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        header {
            text-align: center;
            padding: 4rem 0 3rem;
            animation: fadeInDown 1s ease-out;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--deep-teal) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            letter-spacing: -2px;
        }

        .tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--text-light);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

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

        .form-section, .results-section {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .form-section {
            animation: fadeInLeft 1s ease-out 0.2s backwards;
        }

        .results-section {
            animation: fadeInRight 1s ease-out 0.4s backwards;
            min-height: 600px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--deep-teal);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        /* Mode Switcher Tabs */
        .mode-switcher {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            background: rgba(0,78,100,0.05);
            padding: 0.5rem;
            border-radius: 20px;
        }

        .mode-tab {
            flex: 1;
            padding: 1rem 1.5rem;
            background: transparent;
            border: none;
            border-radius: 15px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .mode-tab:hover {
            color: var(--sunset-orange);
        }

        .mode-tab.active {
            background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--accent-coral) 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(255,107,53,0.3);
        }

        .mode-content {
            display: none;
        }

        .mode-content.active {
            display: block;
        }

        /* Instagram URL Section */
        .url-input-section {
            margin-bottom: 2rem;
        }

        .url-input-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        .url-input-wrapper {
            position: relative;
        }

        .url-input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            padding-left: 3rem;
            border: 2px solid rgba(0,78,100,0.15);
            border-radius: 15px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }

        .url-input:focus {
            outline: none;
            border-color: var(--sunset-orange);
            background: white;
            box-shadow: 0 4px 20px rgba(255,107,53,0.15);
        }

        .url-input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 1.2rem;
        }

        .url-helper-text {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            font-style: italic;
        }

        .optional-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        @media (max-width: 768px) {
            .optional-fields {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        input[type="text"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid rgba(0,78,100,0.15);
            border-radius: 15px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            background: rgba(255,255,255,0.8);
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--sunset-orange);
            background: white;
            box-shadow: 0 4px 20px rgba(255,107,53,0.15);
            transform: translateY(-2px);
        }

        textarea {
            resize: vertical;
            min-height: 80px;
        }

        .checkbox-group,
        .tag-input-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .tag {
            padding: 0.6rem 1.2rem;
            background: var(--warm-sand);
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--text-dark);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .tag:hover {
            background: var(--accent-coral);
            color: white;
            transform: translateY(-2px);
        }

        .tag.active {
            background: var(--sunset-orange);
            color: white;
            border-color: var(--deep-teal);
        }

        .tag-input-container {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
        }

        .tag-input-container input {
            flex: 1;
        }

        .add-tag-btn {
            padding: 1rem 1.5rem;
            background: var(--forest-green);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .add-tag-btn:hover {
            background: var(--deep-teal);
            transform: translateY(-2px);
        }

        .generate-btn {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--accent-coral) 100%);
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(255,107,53,0.3);
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .generate-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,107,53,0.4);
        }

        .generate-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .loading-spinner {
            display: none;
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 500px;
            text-align: center;
            color: var(--text-light);
        }

        .empty-state-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        .empty-state-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
        }

        .itinerary-header {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--warm-sand);
        }

        .destination-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--deep-teal);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .trip-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .meta-icon {
            font-size: 1.2rem;
        }

        .activities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }

        .activity-badge {
            padding: 0.4rem 1rem;
            background: linear-gradient(135deg, var(--forest-green), var(--deep-teal));
            color: white;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .day-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--sunset-orange);
        }

        .day-card:hover {
            transform: translateX(5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .day-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--sunset-orange);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .day-section {
            margin-bottom: 2rem;
        }

        .day-section-title {
            font-weight: 700;
            color: var(--deep-teal);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Timeline for places and activities */
        .timeline-items {
            position: relative;
            padding-left: 2rem;
        }

        .timeline-items::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--sunset-orange), var(--forest-green));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0.3rem;
            width: 12px;
            height: 12px;
            background: var(--sunset-orange);
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .timeline-time {
            display: inline-block;
            font-weight: 700;
            color: var(--sunset-orange);
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
            font-family: 'DM Sans', monospace;
        }

        .timeline-content {
            background: var(--soft-cream);
            padding: 1rem;
            border-radius: 12px;
            margin-top: 0.3rem;
        }

        .timeline-name {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .duration-badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--forest-green);
            color: white;
            border-radius: 12px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
            font-weight: 600;
        }

        .timeline-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        /* Food recommendations */
        .food-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .food-item {
            background: linear-gradient(135deg, #FFF5EB 0%, #FFE5D9 100%);
            border-radius: 15px;
            padding: 1.5rem;
            border-left: 4px solid var(--forest-green);
        }

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

        .meal-type-badge {
            padding: 0.4rem 1rem;
            background: var(--sunset-orange);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .food-time {
            font-weight: 700;
            color: var(--deep-teal);
            font-family: 'DM Sans', monospace;
        }

        .price-badge {
            padding: 0.3rem 0.7rem;
            background: var(--forest-green);
            color: white;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .restaurant-name {
            font-weight: 700;
            color: var(--deep-teal);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .restaurant-location {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .dishes-list {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 0.8rem;
        }

        .dishes-list strong {
            color: var(--deep-teal);
            display: block;
            margin-bottom: 0.8rem;
        }

        .dishes-list ul {
            list-style: none;
            padding-left: 0;
        }

        .dishes-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .dishes-list li:last-child {
            border-bottom: none;
        }

        .dish-name {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .dish-description {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 0.2rem;
            line-height: 1.4;
        }

        .food-desc {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-top: 0.8rem;
            font-style: italic;
        }

        .travel-tips {
            background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(0,78,100,0.1));
            border-radius: 20px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .tips-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--deep-teal);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .tips-list {
            list-style: none;
            padding: 0;
        }

        .tips-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .tips-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--sunset-orange);
            font-size: 1.2rem;
        }

        .error-message {
            background: #FFE5E5;
            border: 2px solid #FF6B6B;
            border-radius: 15px;
            padding: 1rem 1.5rem;
            margin-top: 1rem;
            color: #C92A2A;
            display: none;
        }

        .error-message.show {
            display: block;
            animation: fadeInDown 0.3s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ---- Two-step Instagram Flow ---- */
        .step-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .step-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .step-dot.active {
            background: var(--sunset-orange);
            color: white;
            box-shadow: 0 4px 15px rgba(255,107,53,0.4);
        }

        .step-dot.done {
            background: var(--forest-green);
            color: white;
        }

        .step-dot.pending {
            background: var(--warm-sand);
            color: var(--text-light);
        }

        .step-line {
            flex: 1;
            height: 2px;
            background: var(--warm-sand);
            border-radius: 2px;
            transition: background 0.3s ease;
        }

        .step-line.done {
            background: var(--forest-green);
        }

        .step-label {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Place Selection */
        .places-extraction-panel {
            display: none;
            animation: fadeInDown 0.5s ease-out;
        }

        .places-extraction-panel.show {
            display: block;
        }

        .extraction-info {
            background: linear-gradient(135deg, rgba(0,78,100,0.08), rgba(37,161,142,0.08));
            border-radius: 15px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--deep-teal);
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .extraction-info strong {
            color: var(--deep-teal);
            display: block;
            margin-bottom: 0.3rem;
            font-size: 1rem;
        }

        .places-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .place-card {
            background: white;
            border: 2px solid rgba(0,78,100,0.15);
            border-radius: 15px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .place-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--sunset-orange), var(--accent-coral));
            opacity: 0;
            transition: opacity 0.25s ease;
            z-index: 0;
        }

        .place-card:hover {
            border-color: var(--sunset-orange);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,53,0.2);
        }

        .place-card.selected {
            border-color: var(--sunset-orange);
            background: linear-gradient(135deg, var(--sunset-orange), var(--accent-coral));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,107,53,0.35);
        }

        .place-card.selected::before {
            opacity: 1;
        }

        .place-card .place-check {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--sunset-orange);
            opacity: 0;
            transition: opacity 0.2s;
            z-index: 1;
            font-weight: 900;
        }

        .place-card.selected .place-check {
            opacity: 1;
        }

        .place-type-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            display: block;
            position: relative;
            z-index: 1;
        }

        .place-card-name {
            font-weight: 700;
            font-size: 0.9rem;
            line-height: 1.3;
            margin-bottom: 0.3rem;
            position: relative;
            z-index: 1;
            color: var(--text-dark);
        }

        .place-card.selected .place-card-name {
            color: white;
        }

        .place-card-desc {
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        .place-card.selected .place-card-desc {
            color: rgba(255,255,255,0.85);
        }

        .place-type-badge {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .type-city { background: rgba(0,78,100,0.1); color: var(--deep-teal); }
        .type-attraction { background: rgba(255,107,53,0.1); color: var(--sunset-orange); }
        .type-food { background: rgba(37,161,142,0.1); color: var(--forest-green); }
        .type-stay { background: rgba(26,26,46,0.1); color: var(--midnight); }
        .type-activity { background: rgba(255,159,104,0.1); color: var(--accent-coral); }
        .type-region { background: rgba(247,231,206,0.5); color: #8B6914; }

        .place-card.selected .place-type-badge {
            background: rgba(255,255,255,0.25);
            color: white;
        }

        .selection-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--warm-sand);
            border-radius: 15px;
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .selection-count {
            font-weight: 700;
            color: var(--deep-teal);
        }

        .selection-actions {
            display: flex;
            gap: 0.8rem;
        }

        .select-all-btn, .clear-btn {
            padding: 0.5rem 1rem;
            border: 2px solid var(--deep-teal);
            border-radius: 10px;
            background: transparent;
            color: var(--deep-teal);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .select-all-btn:hover {
            background: var(--deep-teal);
            color: white;
        }

        .clear-btn:hover {
            background: #FF6B6B;
            border-color: #FF6B6B;
            color: white;
        }

        .extract-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--deep-teal) 0%, var(--forest-green) 100%);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.2rem;
            box-shadow: 0 8px 25px rgba(0,78,100,0.25);
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .extract-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0,78,100,0.35);
        }

        .extract-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem 0;
            margin-bottom: 1.5rem;
            font-family: 'DM Sans', sans-serif;
            transition: color 0.2s;
        }

        .back-btn:hover {
            color: var(--sunset-orange);
        }

        .inferred-note {
            font-size: 0.78rem;
            color: var(--text-light);
            font-style: italic;
            text-align: center;
            margin-bottom: 1rem;
        }

        .fade-in {
            animation: fadeInDown 0.6s ease-out;
        }