        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: linear-gradient(135deg, #ff4d6d, #ff8fa3, #ffc2d1);
            min-height: 100vh;
            color: white;
        }

        /* Floating Hearts */

        .hearts {
            position: fixed;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: -1;
        }

        .heart {
            position: absolute;
            bottom: -50px;
            color: rgba(255, 255, 255, 0.7);
            animation: float 10s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(-120vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Hero */

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            margin-top: 20px;
            font-size: 1.2rem;
            max-width: 700px;
        }

        .btn {
            margin-top: 30px;
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            background: white;
            color: #ff4d6d;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: scale(1.08);
        }

        /* Cards */

        .section {
            padding: 80px 10%;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 50px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 25px;
            transition: 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.03);
        }

        .card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        /* Surprise */

        .surprise {
            text-align: center;
            padding: 100px 20px;
        }

        .surprise-message {
            margin-top: 30px;
            font-size: 2rem;
            display: none;
            animation: fade 1s ease;
        }

        @keyframes fade {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Footer */

        footer {
            text-align: center;
            padding: 40px 20px;
            background: rgba(0, 0, 0, 0.1);
            margin-top: 50px;
        }

        @media(max-width:768px) {

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .surprise-message {
                font-size: 1.5rem;
            }

        }

        /* ADD THIS IN CSS */

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
            padding: 20px;
        }

        .modal-box {
            width: 100%;
            max-width: 450px;
            background: white;
            color: #333;
            border-radius: 25px;
            overflow: hidden;
            text-align: center;
            animation: popup 0.4s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .modal-box img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .modal-box h2 {
            margin-top: 20px;
            color: #ff4d6d;
        }

        .modal-box p {
            padding: 15px 25px 30px;
            line-height: 1.7;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 18px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        @keyframes popup {
            from {
                transform: scale(0.7);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Video Modal */

        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .video-box {
            width: 90%;
            max-width: 350px;
            position: relative;
        }

        .video-box video {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
        }

        .close-video {
            position: absolute;
            top: -50px;
            right: 0;
            width: 45px;
            height: 45px;
            border: none;
            border-radius: 50%;
            background: white;
            color: #ff4d6d;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .close-video:hover {
            transform: scale(1.1);
        }



        /* Mini Game */

        #gameArea {
            display: none;
            margin-top: 40px;
        }

        .game-box {
            width: 100%;
            max-width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.15);
            margin: 30px auto;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .game-heart {
            position: absolute;
            font-size: 35px;
            cursor: pointer;
            animation: fall 4s linear forwards;
        }

        @keyframes fall {
            0% {
                top: -50px;
            }

            100% {
                top: 100%;
            }
        }


.heart-game{

    display:grid;

    grid-template-columns:repeat(3,90px);

    justify-content:center;

    align-items:center;

    gap:30px;

    margin-top:50px;

}

.pick-heart{

    width:90px;

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:3.5rem;

    cursor:pointer;

    transition:0.3s;

    animation:heartMove 2s infinite;

}

.pick-heart:hover{

    transform:scale(1.15);

}

        @keyframes heartMove {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .final-surprise {
            display: none;
            margin-top: 50px;
            animation: fade 1s ease;
        }

        .final-surprise img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .final-surprise h2 {
            margin-top: 20px;
            font-size: 2rem;
        }

        .final-surprise p {
            margin-top: 10px;
        }

        /* Responsive Design */

@media(max-width:768px){

    .heart-game{

        grid-template-columns:repeat(3,1fr);

        gap:20px;

        max-width:320px;

    }

    .pick-heart{

        font-size:3rem;

    }

    .final-surprise img{

        width:200px;
        height:200px;

    }

    .final-surprise h2{

        font-size:1.5rem;

    }

}

@media(max-width:480px){

    .heart-game{

        grid-template-columns:repeat(2,1fr);

        max-width:250px;

    }

    .pick-heart{

        font-size:2.5rem;

    }

}