:root {
            --primary: #ff4b72;
            --primary-glow: rgba(255, 75, 114, 0.6);
            --bg-color: #0a0208;
            --text-main: #fce4ec;
            --text-muted: #f8bbd0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body, html {
            height: 100%;
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Arkaplan ve Animasyonlu Işıklar/Parçacıklar */
        #background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-image: url('file:///C:/Users/user/.gemini/antigravity/brain/b85e66bc-c55b-47f5-bb77-eec8c4002589/romantic_background_1776002385661.png');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            filter: blur(4px);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 2, 8, 0.6), rgba(10, 2, 8, 0.9));
            z-index: -1;
        }

        /* Giriş Ekranı (Müzik başlatmak için) */
        /* Sinematik Giriş Ekranı */
        #intro-screen {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            transition: opacity 1.5s ease-in-out, visibility 1.5s;
        }

        .heart-pulse-container {
            cursor: pointer;
            text-align: center;
            animation: slowHeartbeat 1.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .cinematic-heart {
            font-size: 80px;
            color: var(--primary);
            text-shadow: 0 0 50px var(--primary);
            margin-bottom: 25px;
            filter: drop-shadow(0 0 20px rgba(255, 75, 114, 0.8));
        }

        .cinematic-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #ccc;
            letter-spacing: 1px;
            max-width: 400px;
            line-height: 1.4;
            opacity: 0.8;
            transition: 0.3s;
        }
        .heart-pulse-container:hover .cinematic-text { color: #fff; opacity: 1; text-shadow: 0 0 10px rgba(255,255,255,0.4); }

        @keyframes slowHeartbeat {
            0% { transform: scale(1); }
            15% { transform: scale(1.15); }
            30% { transform: scale(1); }
            45% { transform: scale(1.15); }
            60% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        /* Aşk Kavanozu (Memory Jar) */
        .memory-jar-container {
            position: fixed;
            bottom: 120px;
            left: 30px;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255, 75, 114, 0.3);
            z-index: 50;
            transition: all 0.4s;
            animation: floatJar 4s ease-in-out infinite;
        }
        .memory-jar-container:hover {
            transform: scale(1.1) translateY(-10px);
            background: rgba(255, 75, 114, 0.2);
            box-shadow: 0 20px 40px rgba(255, 75, 114, 0.4), inset 0 0 0 2px rgba(255, 75, 114, 0.6);
        }
        @keyframes floatJar {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .jar-icon { font-size: 35px; filter: drop-shadow(0 0 10px rgba(255, 75, 114, 0.8)); }
        
        .jar-tooltip {
            position: absolute;
            top: -45px;
            background: var(--primary);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(255,75,114,0.4);
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
        }
        .jar-tooltip::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px 5px 0;
            border-style: solid;
            border-color: var(--primary) transparent transparent transparent;
        }
        .memory-jar-container:hover .jar-tooltip { opacity: 1; top: -55px; }

        .jar-modal-content {
            background: #fff;
            background-image: 
                radial-gradient(circle at top right, rgba(255,75,114,0.1), transparent 300px),
                radial-gradient(circle at bottom left, rgba(255,75,114,0.1), transparent 300px);
            width: 90%;
            max-width: 450px;
            padding: 50px 40px;
            border-radius: 20px;
            position: relative;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
            border: 1px solid rgba(255,75,114,0.2);
        }
        .jar-note-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }
        #jar-note-text {
            font-family: 'Caveat', cursive;
            font-size: 2rem;
            color: #4a0e28;
            line-height: 1.4;
        }

        /* Kayan Yıldızlar (Shooting Stars) */
        .shooting-star {
            position: fixed;
            width: 150px;
            height: 2px;
            background: linear-gradient(90deg, rgba(255,255,255,1), transparent);
            pointer-events: none;
            z-index: 0;
            transform: rotate(-45deg);
            animation: shootStar 1.2s ease-out forwards;
            filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px var(--primary));
        }
        @keyframes shootStar {
            0% { transform: translateX(0) translateY(0) rotate(-45deg) scale(0); opacity: 1; }
            50% { opacity: 1; transform: translateX(-300px) translateY(300px) rotate(-45deg) scale(1); }
            100% { transform: translateX(-600px) translateY(600px) rotate(-45deg) scale(0); opacity: 0; }
        }

        /* Ana İçerik */
        #main-content {
            opacity: 0;
            visibility: hidden;
            transition: opacity 2s ease-in-out;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 50px 20px;
        }

        #main-content.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Başlık Kısmı */
        .hero {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 40px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: #fff;
            text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary);
            margin-bottom: 10px;
            animation: floatText 4s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
        }

        @keyframes floatText {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Polaroid Galeri Sistemi */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            padding: 20px;
            margin-bottom: 60px;
        }

        .polaroid {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 15px 15px 35px 15px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            width: 280px;
        }

        .polaroid img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .polaroid .caption {
            text-align: center;
            font-family: 'Caveat', cursive;
            margin-top: 15px;
            color: #fff;
            font-size: 1.5rem;
        }

        /* Rotasyonlar */
        .polaroid:nth-child(1) { transform: rotate(-5deg); }
        .polaroid:nth-child(2) { transform: rotate(3deg); margin-top: 30px; }
        .polaroid:nth-child(3) { transform: rotate(-2deg); }
        .polaroid:nth-child(4) { transform: rotate(6deg); margin-top: 20px;}
        .polaroid:nth-child(5) { transform: rotate(-4deg); margin-top: 10px;}

        .polaroid:hover {
            transform: rotate(0) scale(1.08) translateY(-10px) !important;
            box-shadow: 0 20px 50px rgba(255, 75, 114, 0.3), inset 0 0 0 1px rgba(255,255,255,0.2);
            z-index: 10;
        }

        /* Çiçek/Kalp Parçacıkları CSS. JavaScript ile çoğaltılacak. */
        .petal {
            position: fixed;
            top: -10px;
            font-size: 20px;
            user-select: none;
            pointer-events: none;
            z-index: -1;
            animation: fall linear forwards;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* �?ık Müzik Çalar (Spotify Style) */
        .music-player {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(10, 2, 8, 0.8);
            backdrop-filter: blur(15px);
            padding: 10px 20px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
            transition: all 0.4s;
            z-index: 100;
        }
        .music-player:hover {
            transform: scale(1.05);
            background: rgba(255, 75, 114, 0.2);
        }
        .music-cover {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: url('resim3.jpg') center/cover;
            animation: spin 5s linear infinite;
            border: 2px solid var(--primary);
        }
        .music-player.paused .music-cover {
            animation-play-state: paused;
        }
        .music-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .music-title {
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 2px;
            text-align: left;
        }
        .music-artist {
            color: var(--text-muted);
            font-size: 0.8rem;
            text-align: left;
        }
        .music-controls {
            color: var(--primary);
            font-size: 24px;
            margin-left: 10px;
            width: 24px;
            text-align: center;
        }

        /* Kaçan Buton Container */
        .runaway-container {
            margin: 60px auto;
            text-align: center;
            background: rgba(255, 75, 114, 0.05);
            padding: 40px 20px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 75, 114, 0.2);
            max-width: 600px;
        }
        .runaway-container h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
            color: #fff;
        }
        .runaway-buttons {
            position: relative;
            height: 80px;
            display: flex;
            justify-content: center;
            gap: 20px;
            align-items: center;
        }
        .runaway-buttons button {
            padding: 12px 35px;
            font-size: 1.2rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            transition: 0.2s;
        }
        .btn-yes {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 5px 15px rgba(255, 75, 114, 0.4);
            z-index: 2;
        }
        .btn-yes:hover { transform: scale(1.1); }
        .btn-no {
            background: #444;
            color: #fff;
            position: absolute;
            margin-left: 160px; /* Yes butonunun yanına hizalanır */
            z-index: 10;
        }

        /* Kazı Kazan */
        .scratch-card-container {
            margin: 50px auto;
            width: 320px;
            height: 160px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            background: #fff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-align: center;
            font-family: 'Caveat', cursive;
            padding: 20px;
        }
        canvas#scratch-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes spin { 100% { transform: rotate(360deg); } }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 3.5rem; }
            .gallery { gap: 20px; }
            .polaroid { width: 100%; max-width: 300px; transform: rotate(0) !important; margin-top: 0 !important; }
            .polaroid:hover { transform: scale(1.05) translateY(-5px) !important; }
        }
        /* Sayaç Kutuları */
        .counters {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }
        .counter-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
            text-align: center;
            min-width: 300px;
        }
        .counter-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .time-display {
            font-size: 1.2rem;
            letter-spacing: 1px;
            color: #fff;
        }

        /* 100 Dilde Seni Seviyorum */
        .neon-languages {
            margin: 60px 0;
            text-align: center;
            min-height: 100px;
        }
        .neon-languages h2 {
            font-family: 'Great Vibes', 'Dancing Script', cursive;
            font-size: 4rem;
            color: #fff;
            text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--primary);
            transition: opacity 0.5s;
        }

        /* Uçuşan Zarf */
        .floating-envelope {
            position: fixed;
            bottom: 120px;
            right: 30px;
            font-size: 45px;
            cursor: pointer;
            z-index: 50;
            animation: floatEnv 3s ease-in-out infinite;
            filter: drop-shadow(0 10px 15px rgba(255,75,114,0.4));
            transition: transform 0.3s;
            display: none;
        }
        .floating-envelope:hover {
            transform: scale(1.1) rotate(-5deg);
        }
        @keyframes floatEnv {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Mektup Modalı */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(10, 2, 8, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s;
        }
        .modal.show {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background-color: #fff0f5; /* Romantik açık pembe / fil dişi hissiyatı */
            background-image: 
                linear-gradient(90deg, transparent 40px, rgba(255, 75, 114, 0.4) 40px, rgba(255, 75, 114, 0.4) 42px, transparent 42px),
                repeating-linear-gradient(transparent, transparent 38px, rgba(0,0,0,0.1) 38px, rgba(0,0,0,0.1) 39px);
            background-position: 0 0, 0 10px;
            color: #4a0e28; /* Koyu bordo yazı rengi */
            width: 90%;
            max-width: 650px;
            padding: 50px 40px;
            border-radius: 15px;
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            line-height: 39px; /* Çizgilerle birebir örtüşmesi için sabit px */
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 75, 114, 0.1);
            border: 2px solid rgba(255, 75, 114, 0.2);
            overflow-y: auto;
            max-height: 80vh;
            text-align: left;
        }
        .modal-content p {
            margin-bottom: 20px;
        }
        .modal-content::-webkit-scrollbar { width: 8px; }
        .modal-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 30px;
            font-family: sans-serif;
            cursor: pointer;
            color: #999;
        }
        .close-btn:hover { color: var(--primary); }

        /* Sihirli Mouse */
        .mouse-particle {
            position: absolute;
            pointer-events: none;
            font-size: 15px;
            z-index: 9999;
            animation: particleAnim 1s ease-out forwards;
        }
        @keyframes particleAnim {
            0% { transform: scale(1) translateY(0); opacity: 1; }
            100% { transform: scale(0) translateY(50px) rotate(180deg); opacity: 0; }
        }

        /* Şifre Ekranı */
        #password-screen {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #0a0208;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 90;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .password-container {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 50px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 75, 114, 0.3);
            max-width: 90%;
            width: 400px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }
        .lock-icon {
            font-size: 60px;
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(255, 75, 114, 0.8);
        }
        .password-container h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        .password-container p {
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        #love-password {
            width: 100%;
            padding: 15px;
            font-size: 1.2rem;
            text-align: center;
            border-radius: 10px;
            border: 2px solid var(--primary);
            background: rgba(0,0,0,0.5);
            color: #fff;
            margin-bottom: 20px;
            letter-spacing: 2px;
            outline: none;
            font-family: inherit;
        }
        .btn-unlock {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
            font-family: 'Outfit', sans-serif;
            font-weight: bold;
        }
        .btn-unlock:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 75, 114, 0.5);
        }

        /* Sakın Basma Butonu ve Aşk Fırtınası */
        .danger-btn-container {
            margin: 80px 0;
            text-align: center;
            width: 100%;
        }
        .btn-do-not-press {
            background: #ab001c;
            color: #fff;
            border: 2px solid #ff4b72;
            padding: 20px 50px;
            font-size: 2rem;
            font-weight: 900;
            border-radius: 15px;
            cursor: pointer;
            font-family: sans-serif;
            box-shadow: 0 10px 30px rgba(255,0,0,0.6);
            animation: pulseDanger 2s infinite;
            transition: 0.2s;
        }
        .btn-do-not-press:active { transform: scale(0.9); }
        @keyframes pulseDanger {
            0% { transform: scale(1); box-shadow: 0 0 20px rgba(255,0,0,0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255,0,0,1); }
            100% { transform: scale(1); box-shadow: 0 0 20px rgba(255,0,0,0.5); }
        }

        .storm-heart {
            position: fixed;
            top: -50px;
            z-index: 9999;
            pointer-events: none;
            animation: stormFall linear forwards;
        }
        @keyframes stormFall {
            to { transform: translateY(110vh) scale(1.5) rotate(180deg); }
        }
        .storm-text {
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0);
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: #fff;
            text-shadow: 0 0 40px #ff4b72, 0 0 80px #ff4b72;
            z-index: 10000;
            pointer-events: none;
            animation: textPop 1.5s ease-out forwards;
            text-align: center;
            width: 100%;
        }
        
        /* Tüm yeni eklentilerin mobil uyumluluğu */
        @media (max-width: 768px) {
            .counter-box { min-width: 100%; padding: 15px; }
            .neon-languages h2 { font-size: 2.2rem; }
            .floating-envelope { font-size: 35px; bottom: 85px; right: 20px; }
            .memory-jar-container { bottom: 85px; left: 20px; width: 60px; height: 60px; }

            /* Mobil Müzik Çalar - Okunabilir ve Şık */
            .music-player { 
                width: 180px; 
                height: 50px; 
                padding: 5px 12px; 
                bottom: 15px; 
                right: 15px; 
                gap: 8px;
                border-radius: 25px; 
            }
            .music-info { display: flex; flex: 1; min-width: 0; }
            .music-title { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90px; }
            .music-artist { font-size: 0.65rem; }
            .music-cover { width: 38px; height: 38px; flex-shrink: 0; }
            .music-controls { 
                font-size: 18px; 
                margin-left: 5px; 
                width: 20px;
                flex-shrink: 0;
            }
            
            /* Fırtına ve Büyük Yazı Fix */
            .storm-text { font-size: 2.5rem !important; }
            .btn-do-not-press { font-size: 1.4rem; padding: 15px 30px; }

            .modal-content {
                width: 95%;
                padding: 40px 20px 40px 45px;
                font-size: 1.15rem;
                line-height: 39px;
            }

            /* Günlük Butonu Mobil */
            .diary-float-btn { bottom: 155px; left: 20px; width: 60px; height: 60px; font-size: 28px; }
        }

        /* ===== Günlük Yüzen Butonu ===== */
        .diary-float-btn {
            position: fixed;
            bottom: 210px;
            left: 30px;
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1.5px rgba(255, 200, 130, 0.25);
            z-index: 50;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: floatDiary 4.5s ease-in-out infinite;
            animation-delay: 0.8s;
        }
        .diary-float-btn:hover {
            transform: scale(1.12) translateY(-8px);
            background: rgba(255, 200, 130, 0.15);
            box-shadow: 0 20px 40px rgba(255,180,80,0.3), inset 0 0 0 1.5px rgba(255,200,130,0.5);
        }
        @keyframes floatDiary {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Günlük Tooltip */
        .diary-tooltip {
            position: absolute;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ffb347, #ff8c42);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            box-shadow: 0 4px 14px rgba(255,150,50,0.4);
        }
        .diary-tooltip::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px 5px 0;
            border-style: solid;
            border-color: #ff8c42 transparent transparent transparent;
        }
        .diary-float-btn:hover .diary-tooltip { opacity: 1; top: -55px; }
