     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #43cea2, #185a9d);
            min-height: 100vh;
            padding: 20px;
            color: white;
        }

        .fade-in {
            opacity: 0;
            animation: fadeIn ease 1.2s forwards;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(15px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            padding: 30px 0;
            position: relative;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .search-container {
            max-width: 600px;
            margin: 0 auto 40px auto;
            position: relative;
        }

        #search {
            width: 100%;
            padding: 15px;
            border-radius: 30px;
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            font-size: 18px;
        }

        .btn {
            background: linear-gradient(to right, #32CD32, #008080);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            margin: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .video-container {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px 60px 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .video-header {
            text-align: center;
            margin-bottom: 30px;
            z-index: 10;
            position: relative;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            margin-top: 30px;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .years-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
        }

        .year-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 20px;
            padding: 8px 15px;
            margin: 5px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .year-btn:hover, .year-btn.active {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.05);
        }

        .farewell-message {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            margin-top: 30px;
            line-height: 1.6;
        }

        .farewell-message h2 {
            margin-bottom: 15px;
            color: #FFEB3B;
        }

        footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            font-size: 14px;
            color: white;
            text-decoration: none;
        }
        .footer-link {
            color: white;
            text-decoration: none;
        }

        .footer-link:hover {
            text-decoration: underline;
        }
        .team-section {
            margin-top: 60px;
            text-align: center;
        }

        .team-section h3 {
            margin-bottom: 15px;
        }

        .youtube-btn {
            display: inline-block;
            margin-top: 30px;
        }

        .birthday-card-btn {
            background: linear-gradient(to right, #FF9A9E, #FECFEF);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            margin: 30px auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: block;
            max-width: 320px;
            text-align: center;
            animation: pulse 2s infinite;
            text-decoration: none;
        }

        .birthday-card-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 154, 158, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(255, 154, 158, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 154, 158, 0);
            }
        }

        .birthday-section {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
        }

        .birthday-section h2 {
            margin-bottom: 15px;
            color: #FFEB3B;
        }

        /* Toggle switch styling */
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }

        .toggle-label {
            margin: 0 10px;
            font-size: 16px;
            font-weight: bold;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.2);
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #32CD32;
        }

        input:focus + .slider {
            box-shadow: 0 0 1px #32CD32;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .content-container {
            display: none;
        }

        /* Reactions styling */
        .reaction-container {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
        }

        .reaction-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .reaction-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #FFD700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            font-size: 20px;
        }

        .reaction-name {
            font-weight: bold;
            font-size: 18px;
        }

        .reaction-text {
            line-height: 1.6;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
                text-decoration: none;
            }

            .video-container {
                padding: 15px;
            }

            .birthday-card-btn {
                padding: 12px 25px;
                font-size: 16px;
            }

            .toggle-label {
                font-size: 14px;
            }

            .toggle-switch {
                width: 50px;
                height: 28px;
            }

            .slider:before {
                height: 20px;
                width: 20px;
            }

            input:checked + .slider:before {
                transform: translateX(22px);
            }
        }







        
        .hero-section2 {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 20px;
        }

        .hero-title2 {
            font-size: 4.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp2 1s ease-out;
        }

        .hero-subtitle2 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp2 1s ease-out 0.3s both;
        }

        .hero-description2 {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.6;
            opacity: 0.8;
            animation: fadeInUp2 1s ease-out 0.6s both;
        }

        .cta-buttons2 {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp2 1s ease-out 0.9s both;
        }

        .cta-btn2 {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .cta-btn2.primary2 {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
        }

        .cta-btn2.secondary2 {
            background: linear-gradient(to right, #FF9A9E, #FECFEF);
            color: white;
        
            backdrop-filter: blur(10px);
        }

        .cta-btn2:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-btn2.primary2:hover {
            background: linear-gradient(45deg, #ff5252, #ffc107);
        }

        .cta-btn2.secondary2:hover {
            background: linear-gradient(to right, #f1888b, #fac2e8);
        }




        .footer2 {
            background: rgba(0,0,0,0.2);
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .footer-links2 {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-link2 {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-link2:hover {
            opacity: 1;
        }

        @keyframes fadeInUp2 {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float2 {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .pulse2 {
            animation: pulse2 2s infinite;
        }

        @keyframes pulse2 {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            .hero-title2 {
                font-size: 3rem;
            }
            
            .hero-subtitle2 {
                font-size: 1.2rem;
            }
            
            .cta-buttons2 {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn2 {
                width: 80%;
                max-width: 300px;
            }
        }

