        :root {
            --primary-color: #e91e63;
            --secondary-color: #c2185b;
            --text-color: #ffcdd2;
            --bg-gradient: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
        }
        
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            color: white;
            background: var(--bg-gradient);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            overflow-x: hidden;
            position: relative;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .story-container {
            background-color: rgba(0, 0, 0, 0.65);
            padding: 30px;
            border-radius: 20px;
            max-width: 800px;
            width: 90%;
            margin: 100px;
            z-index: 10;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        h1 {
           
            color: var(--text-color);
            font-size: clamp(2em, 8vw, 3em);
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .story-content {
            text-align: left;
            line-height: 1.8;
            font-size: 1.1em;
            padding: 0 20px;
        }

        .story-content p {
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
            border-left: 2px solid var(--primary-color);
        }

        .highlight {
            color: var(--text-color);
            font-weight: bold;
            font-style: italic;
        }

        .heart {
            font-size: 1.5em;
            color: var(--primary-color);
            animation: pulse 1.5s infinite;
            display: inline-block;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        .floating-hearts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-heart {
            position: absolute;
            font-size: 20px;
            color: var(--primary-color);
            animation: float linear infinite;
            opacity: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .back-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2em;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.5);
            text-decoration: none;
            display: inline-block;
        }

        .back-btn:hover {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(233, 30, 99, 0.6);
        }

        .year-marker {
            font-family: 'Pacifico', cursive;
            color: var(--text-color);
            font-size: 1.3em;
            margin: 30px 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .quote {
            font-style: italic;
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }

        @media (max-width: 600px) {
            .story-container {
                padding: 20px;
            }
            
            .story-content {
                font-size: 1em;
                padding: 0 10px;
            }
            
            .year-marker {
                font-size: 1.1em;
            }
        }

        .music-section {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        .music-section h2 {
            color: #ffcdd2;
            font-family: 'Pacifico', cursive;
            margin-bottom: 15px;
        }

        .music-section audio {
            width: 90%;
            max-width: 600px;
            margin: 10px 0;
        }

        .lyrics {
            margin-top: 15px;
            font-size: 1.1em;
            line-height: 1.6;
            color: #fff;
        }


          /* -------------------------- */
        /*      NAVBAR - EKLENDİ      */
        /* -------------------------- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0,0,0,0.4);
            padding: 12px 0;
            backdrop-filter: blur(6px);
            display: flex;
            justify-content: center;
            z-index: 999;
        }

        .navbar a {
            margin: 0 20px;
            color: var(--text-color);
            font-size: 1.2em;
            text-decoration: none;
            transition: 0.3s;
            font-weight: bold;
        }

        .navbar a:hover {
            color: white;
            transform: scale(1.1);
        }
        .story-button {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2em;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 20px;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(233, 30, 99, 0.5);
        }
    #floatingHearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1; /* Arka planda kalması için */
}

.floating-heart {
    position: absolute;
    top: 100vh;
    font-size: 2rem;
    opacity: 0.8;
    animation: rise 5s linear forwards;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
    }
}
