        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #87CEEB 0%, #98D8E8 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            overflow: hidden;
        }

        main {
	    padding-top: 12vh;
	}

        .scene {
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .bird-container {
	    position: fixed;
	    top: 3rem;
	    left: 1em;
	    max-height: 33vh;
	    width: 100%;
            animation: birdFly 8s ease-in-out infinite;
        }
        
        .bird {
            font-size: 60px;
            transform-origin: center;
            animation: wingFlap 0.5s ease-in-out infinite alternate;
            display: inline-block;
        }
        
        @keyframes birdFly {
            0% {
                transform: translateX(0px) rotate(-5deg);
            }
            10% {
                transform: translateX(10%) rotate(-2deg);
            }
	    25% {
                transform: translateX(20%) rotate(0deg);
            }
            50% {
                transform: translateX(36%) rotate(3deg);
            }
            75% {
                transform: translateX(50%) rotate(0deg);
            }
            100% {
                transform: translateX(88%) rotate(-3deg);
            }
        }
        
        @keyframes wingFlap {
            0% {
                transform: scaleY(1) scaleX(1);
            }
            100% {
                transform: scaleY(0.9) scaleX(1.1);
            }
        }
        
        .target-container {
	    position: absolute;
	    top: 2rem;
	    right: 1rem;
	    width:50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .nest {
            font-size: 40px;
            animation: nestSway 3s ease-in-out infinite;
        }
        
        @keyframes nestSway {
            0%, 100% {
                transform: rotate(-2deg);
            }
            50% {
                transform: rotate(2deg);
            }
        }
        
        .search-input {
            padding: 15px 25px;
            font-size: 1.2rem;
            border: 3px solid #8B4513;
            border-radius: 25px;
            background: rgba(255, 248, 220, 0.9);
            color: #333;
            text-align: center;
            width: 300px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .search-input:focus {
            outline: none;
            background: rgba(255, 248, 220, 1);
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            border-color: #D2691E;
        }
        
        .search-input::placeholder {
            color: #8B7355;
            font-style: italic;
        }

	.under {
            position: relative;
	}   
	.mid {
	    text-align: right;
	}     
	.right {
	    float: right;
	}
        .flight-path {
            position: absolute;
            top: 50%;
            left: 20%;
            width: 60%;
            height: 2px;
            background: rgba(255,255,255,0.3);
            border-radius: 1px;
            opacity: 0.7;
            animation: pathGlow 4s ease-in-out infinite;
        }
        
        @keyframes pathGlow {
            0%, 100% {
                box-shadow: 0 0 5px rgba(255,255,255,0.5);
            }
            50% {
                box-shadow: 0 0 15px rgba(255,255,255,0.8);
            }
        }
        
        .clouds {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .cloud {
            position: absolute;
            color: rgba(255,255,255,0.6);
            font-size: 30px;
            animation: cloudFloat 20s linear infinite;
        }
        
        .cloud:nth-child(1) {
            top: 20%;
            left: -100px;
            animation-delay: 0s;
        }
        
        .cloud:nth-child(2) {
            top: 60%;
            left: -100px;
            animation-delay: -7s;
        }
        
        .cloud:nth-child(3) {
            top: 10%;
            left: -100px;
            animation-delay: -14s;
        }
        
        @keyframes cloudFloat {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(100vw + 200px));
            }
        }
        
        .video-container {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 400px;
            height: 225px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            opacity: 0.9;
        }
        
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .person-page {
            display: none;
            float: left;
            background: rgba(255,255,255,0.95);
            color: #333;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            animation: slideIn 0.5s ease-out;
            max-width: 500px;
            width: 90%;
            z-index: 1000;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        
        @keyframes slideIn {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        
        .back-btn {
            background: #87CEEB;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .back-btn:hover {
            background: #4682B4;
            transform: translateY(-2px);
        }
        
        .notification {
            position: absolute;
            top: 15px;
            left: 20px;
            background: #ff6b6b;
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: none;
            animation: slideInRight 2s ease;
            z-index: 1001;
        }
        
        @keyframes slideInRight {
            0% {
                transform: translateX(100px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .bird-container {
                left: 10%;
            }
            .target-container {
                right: 10%;
            }
            .search-input {
                width: 250px;
                font-size: 1rem;
                padding: 12px 20px;
            }
            .video-container {
                width: 300px;
                height: 169px;
            }
        }
