        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Times New Roman', Georgia, serif;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            background: #0a0a0f;
        }

        /* Мистический фон с туманом */
        .mystical-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a0f 100%);
        }

        /* Парящие частицы */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 215, 150, 0.6);
            border-radius: 50%;
            pointer-events: none;
            animation: floatParticle linear infinite;
            box-shadow: 0 0 5px rgba(255, 215, 150, 0.8);
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-20vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Звёзды мерцающие */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle linear infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Туман */
        .fog {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            background: linear-gradient(0deg, 
                rgba(26, 10, 46, 0.9) 0%,
                rgba(26, 10, 46, 0.5) 50%,
                transparent 100%);
        }

        .fog-overlay {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 200px;
            background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.15), transparent);
            animation: fogMove 10s linear infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes fogMove {
            0% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
            50% { transform: translateX(-30%) translateY(-20px); opacity: 0.8; }
            100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Карточка лендинга */
        .mystic-card {
            background: rgba(10, 10, 20, 0.7);
            backdrop-filter: blur(15px);
            border-radius: 50px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 50px rgba(106, 13, 173, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.3);
            animation: cardGlow 3s ease-in-out infinite;
            margin-bottom: 30px;
        }

        @keyframes cardGlow {
            0%, 100% {
                box-shadow: 
                    0 20px 60px rgba(0, 0, 0, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1),
                    0 0 50px rgba(106, 13, 173, 0.3);
            }
            50% {
                box-shadow: 
                    0 20px 60px rgba(0, 0, 0, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1),
                    0 0 80px rgba(138, 43, 226, 0.6);
            }
        }

        /* SEO блок */
        .seo-block {
            background: rgba(10, 10, 20, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 30px;
        }

        .seo-title {
            font-size: 1.8rem;
            color: #d4af37;
            font-family: 'Times New Roman', serif;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .seo-title::before,
        .seo-title::after {
            content: '✦';
            color: #d4af37;
            margin: 0 15px;
            opacity: 0.7;
        }

        .seo-text {
            color: #c4a5e1;
            line-height: 1.8;
            font-size: 1rem;
            text-align: justify;
        }

        .seo-text p {
            margin-bottom: 20px;
        }

        .seo-text h3 {
            color: #d4af37;
            margin: 25px 0 15px 0;
            font-size: 1.3rem;
            font-family: 'Times New Roman', serif;
        }

        .seo-text ul {
            margin: 15px 0 15px 30px;
        }

        .seo-text li {
            margin: 10px 0;
        }

        .seo-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.3), transparent);
            margin: 25px 0;
        }

        .keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 25px;
        }

        .keyword {
            background: rgba(138, 43, 226, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #c4a5e1;
            transition: all 0.3s ease;
            text-decoration: none; 
        }

        .keyword:hover {
            background: rgba(138, 43, 226, 0.4);
            border-color: rgba(212, 175, 55, 0.6);
            transform: translateY(-2px);
        }

        h1 {
            font-size: 3rem;
            font-family: 'Times New Roman', serif;
            background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b6914 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .subtitle {
            color: #a78bfa;
            font-size: 1.1rem;
            font-style: italic;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
        }

        /* Магический шар */
        .magic-ball-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            cursor: pointer;
            position: relative;
        }

        /* Аура вокруг шара */
        .magic-ball-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.3), transparent 70%);
            border-radius: 50%;
            animation: auraPulse 2s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes auraPulse {
            0%, 100% {
                width: 340px;
                height: 340px;
                opacity: 0.5;
            }
            50% {
                width: 380px;
                height: 380px;
                opacity: 0.8;
            }
        }

        .magic-ball {
            width: 280px;
            height: 280px;
            background: radial-gradient(circle at 35% 35%, #1a1a2e, #000000);
            border-radius: 50%;
            position: relative;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 -30px 40px rgba(0, 0, 0, 0.5),
                inset 0 30px 30px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(138, 43, 226, 0.5);
            transition: transform 0.3s ease;
            cursor: pointer;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Анимация тряски */
        .magic-ball.shake {
            animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
        }

        @keyframes shake {
            0% { transform: translate(0, 0) rotate(0deg); }
            20% { transform: translate(-10px, 0) rotate(-6deg); }
            40% { transform: translate(10px, 0) rotate(6deg); }
            60% { transform: translate(-5px, 0) rotate(-3deg); }
            80% { transform: translate(5px, 0) rotate(3deg); }
            100% { transform: translate(0, 0) rotate(0); }
        }

        /* Окно предсказания */
        .prediction-window {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130px;
            height: 130px;
            background: radial-gradient(circle, #2d1b4e, #1a0a2e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 
                inset 0 0 30px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(138, 43, 226, 0.5),
                inset 0 0 15px rgba(138, 43, 226, 0.3);
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .prediction-text {
            color: #d4af37;
            font-size: 0.95rem;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
            padding: 15px;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }

        /* Блик */
        .magic-ball::before {
            content: '';
            position: absolute;
            top: 15%;
            left: 15%;
            width: 30%;
            height: 20%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            border-radius: 50%;
            pointer-events: none;
        }

        /* Кнопка */
        .ask-button {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.8), rgba(75, 0, 130, 0.9));
            color: #d4af37;
            border: 1px solid rgba(212, 175, 55, 0.5);
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(106, 13, 173, 0.4);
            font-family: 'Georgia', serif;
            letter-spacing: 2px;
        }

        .ask-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(138, 43, 226, 0.6);
            border-color: rgba(212, 175, 55, 0.8);
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(106, 13, 173, 1));
        }

        .ask-button:active {
            transform: translateY(0);
        }

        /* Контрол звука */
        .sound-control {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .sound-toggle {
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            color: #d4af37;
            font-family: 'Georgia', serif;
        }

        .sound-toggle:hover {
            background: rgba(138, 43, 226, 0.3);
            border-color: rgba(212, 175, 55, 0.6);
        }

        .sound-toggle.active {
            background: rgba(138, 43, 226, 0.5);
            border-color: #d4af37;
        }

        .volume-slider {
            width: 120px;
            cursor: pointer;
            background: rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            height: 5px;
        }

        .volume-slider::-webkit-slider-thumb {
            background: #d4af37;
            border-radius: 50%;
            cursor: pointer;
        }

        /* Счетчик */
        .counter {
            color: #a78bfa;
            margin-top: 20px;
            font-size: 0.9rem;
            text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
        }

        /* История предсказаний */
        .history {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .history h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-family: 'Times New Roman', serif;
            font-size: 1.3rem;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .history-list {
            max-height: 200px;
            overflow-y: auto;
            list-style: none;
            text-align: left;
        }

        .history-list li {
            background: rgba(26, 10, 46, 0.6);
            backdrop-filter: blur(5px);
            margin: 8px 0;
            padding: 10px 18px;
            border-radius: 30px;
            color: #c4a5e1;
            font-size: 0.9rem;
            animation: mysticFadeIn 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
            font-family: 'Georgia', serif;
        }

        @keyframes mysticFadeIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Скроллбар */
        .history-list::-webkit-scrollbar,
        .seo-text::-webkit-scrollbar {
            width: 6px;
        }

        .history-list::-webkit-scrollbar-track,
        .seo-text::-webkit-scrollbar-track {
            background: rgba(26, 10, 46, 0.3);
            border-radius: 10px;
        }

        .history-list::-webkit-scrollbar-thumb,
        .seo-text::-webkit-scrollbar-thumb {
            background: #d4af37;
            border-radius: 10px;
        }

        /* Инструкция */
        .instruction {
            margin-top: 25px;
            color: #7e6b9e;
            font-size: 0.85rem;
            font-style: italic;
        }

        /* Адаптивность */
        @media (max-width: 600px) {
            .mystic-card, .seo-block {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .magic-ball {
                width: 220px;
                height: 220px;
            }
            
            .prediction-window {
                width: 100px;
                height: 100px;
            }
            
            .prediction-text {
                font-size: 0.75rem;
                padding: 8px;
            }

            .magic-ball-container::before {
                width: 260px;
                height: 260px;
            }

            .seo-title {
                font-size: 1.3rem;
            }

            .seo-title::before,
            .seo-title::after {
                margin: 0 8px;
            }
        }
                /* Футер */
        .footer {
            margin-top: 50px;
            background: rgba(10, 10, 20, 0.8);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 40px 30px 20px;
            font-size: 0.9rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-family: 'Times New Roman', serif;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .footer-section p {
            color: #c4a5e1;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .disclaimer {
            background: rgba(26, 10, 46, 0.5);
            padding: 15px;
            border-radius: 15px;
            border-left: 3px solid #d4af37;
        }

        .disclaimer p {
            margin-bottom: 12px;
            font-size: 0.85rem;
        }

        .disclaimer p:last-child {
            margin-bottom: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #c4a5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #d4af37;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-link {
            color: #c4a5e1;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .social-link:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            color: #7e6b9e;
            font-size: 0.8rem;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .age-warning {
            font-weight: bold;
            color: #d4af37;
            letter-spacing: 1px;
        }

        @media (max-width: 600px) {
            .footer {
                padding: 30px 20px 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .disclaimer {
                text-align: left;
            }
            
            .social-links {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
        }



                /* Мистическое уведомление */
        .mystic-notification {
            position: fixed;
            top: 20%;
            left: 50%;
            transform: translateX(-50%) translateY(-50px);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .mystic-notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .notification-content {
            background: linear-gradient(135deg, rgba(106, 13, 173, 0.95), rgba(75, 0, 130, 0.95));
            backdrop-filter: blur(10px);
            border: 2px solid #d4af37;
            border-radius: 50px;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
            animation: notificationGlow 1s ease-in-out infinite;
        }
        
        @keyframes notificationGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
            }
        }
        
        .notification-icon {
            font-size: 1.5rem;
            animation: iconSpin 0.5s ease-in-out;
        }
        
        @keyframes iconSpin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .notification-text {
            color: #d4af37;
            font-size: 1.1rem;
            font-weight: bold;
            font-family: 'Times New Roman', serif;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        @media (max-width: 600px) {
            .notification-content {
                padding: 10px 20px;
            }
            .notification-text {
                font-size: 0.9rem;
            }
            .notification-icon {
                font-size: 1.2rem;
            }
        }
