        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500&display=swap');

        /* Контейнер блока для вставки на сайт */
        .aitherra-heart-container {
            width: 100%;
            max-width: 800px;
           /* margin: 20px auto;
            padding: 0px; 
            background: rgba(0, 0, 0, 0.4); 
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);*/
            font-family: 'Space Grotesk', sans-serif;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .heart-visual {
            position: relative;
            width: 60px;
            height: 60px;
            /*margin-bottom: 15px;*/
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .heart-core {
            width: 4px;
            height: 4px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 20px 2px #fff;
            animation: heart-beat 2s infinite ease-in-out;
        }

        .heart-ring {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: ring-expand 4s infinite linear;
        }

        @keyframes heart-beat {
            0%, 100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 10px 1px #fff; }
            50% { transform: scale(2); opacity: 1; box-shadow: 0 0 25px 4px #fff; }
        }

        @keyframes ring-expand {
            0% { width: 10px; height: 10px; opacity: 0.8; }
            100% { width: 60px; height: 60px; opacity: 0; }
        }

        .time-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 8px;
        }

        .time-counter {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: -1px;
            font-variant-numeric: tabular-nums;
            display: flex;
            gap: 15px;
            align-items: baseline;
        }

        .unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .unit-value {
            line-height: 1;
        }

        .unit-label {
            font-size: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
            opacity: 0.3;
        }

        .origin-stamp {
            margin-top: 15px;
            font-size: 9px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
        }

        /* Адаптивность для мобильных */
        edia (max-width: 600px) {
            .time-counter { font-size: 1.5rem; gap: 8px; }
           /* .aitherra-heart-container { padding: 20px; }*/
        } 
