* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }
        
        body {
            background: #0a0a1a;
            color: #fff;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Floating Stars Background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }
        
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 1; }
        }
        
        /* Overlay Screen */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a1a2e, #16213e);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            text-align: center;
            padding: 20px;
        }
        
        .overlay-content {
            max-width: 600px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .overlay h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #ff6b8b;
            font-weight: 300;
            letter-spacing: 2px;
        }
        
        .overlay p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            line-height: 1.6;
            color: #e6e6ff;
            font-weight: 300;
        }
        
        .enter-btn {
            padding: 15px 40px;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 300;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #ff6b8b, #ff8e6b);
            color: white;
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .enter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 139, 0.4);
        }
        
        /* Main Content */
        .main-content {
            display: none;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        /* Header Section */
        .header-section {
            text-align: center;
            padding: 60px 30px;
            margin-bottom: 60px;
            position: relative;
        }
        
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 107, 139, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .main-title {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 3px;
            color: #ff6b8b;
            position: relative;
            display: inline-block;
        }
        
        .main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff6b8b, transparent);
        }
        
        .name-highlight {
            color: #ffd700;
            font-weight: 400;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.5rem;
            margin-top: 30px;
            color: #e6e6ff;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        /* Love Section */
        .love-section {
            text-align: center;
            padding: 60px 30px;
            margin: 60px 0;
            position: relative;
        }
        
        .love-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 139, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }
        
        .love-message {
            font-size: 2rem;
            margin-bottom: 40px;
            color: #e6e6ff;
            font-weight: 300;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .heart-beat {
            font-size: 5rem;
            color: #ff6b8b;
            animation: heartbeat 1.5s infinite;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        .love-button {
            padding: 18px 50px;
            font-size: 1.3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 300;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #ff6b8b, #ff8e6b);
            color: white;
            box-shadow: 0 5px 20px rgba(255, 107, 139, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .love-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 139, 0.4);
            letter-spacing: 3px;
        }
        
        /* Music Control */
        .music-control {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .music-control:hover {
            background: rgba(255, 107, 139, 0.2);
            transform: scale(1.1);
        }
        
        .music-control i {
            font-size: 1.5rem;
            color: #ff6b8b;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            color: rgba(230, 230, 255, 0.5);
            font-weight: 300;
            letter-spacing: 1px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 60px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .overlay h1 {
                font-size: 2.5rem;
            }
            
            .overlay p {
                font-size: 1.2rem;
            }
            
            .main-title {
                font-size: 2.8rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .love-message {
                font-size: 1.5rem;
            }
        }

    