/* МирБеседка - Улучшенные ретро стили */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Неоновые цвета */
    --neon-blue: #00d4ff;
    --neon-purple: #b300ff;
    --neon-pink: #ff0080;
    --neon-green: #00ff88;
    --cyber-orange: #ff6b00;

    /* Основные цвета */
    --dark-bg: #0a0a0f;
    --card-bg: #1a1a2e;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-glow: rgba(0, 212, 255, 0.3);

    /* Градиенты */
    --retro-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cyber-gradient: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));

    /* Тени */
    --glow-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Анимированный фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(-20px); }
    66% { transform: translateX(20px) translateY(20px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Топ-баннер с вопросами */
.questions-banner {
    background: var(--cyber-gradient);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: white;
    position: relative;
    overflow: hidden;
}

.questions-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-text {
    animation: scroll-text 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-text {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Хедер */
.header {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 40px;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 5px var(--neon-blue)); }
    to { filter: drop-shadow(0 0 20px var(--neon-purple)); }
}

.logo-text h1 {
    font-size: 28px;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.cta-button {
    background: var(--cyber-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 126, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 126, 0.5);
}

/* Hero секция */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-shadow);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cyber-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 126, 0.5);
}

.btn-secondary {
    background: var(--glass-gradient);
    color: white;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

/* Превью мессенджера */
.messenger-preview {
    background: var(--glass-gradient);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.messenger-header {
    background: var(--cyber-gradient);
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.messenger-body {
    padding: 20px;
    height: 350px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 80%;
    position: relative;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.incoming {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-right: auto;
}

.message.outgoing {
    background: rgba(179, 0, 255, 0.1);
    border: 1px solid rgba(179, 0, 255, 0.3);
    margin-left: auto;
    text-align: right;
}

.message-author {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 600;
}

.message-text {
    font-size: 14px;
    line-height: 1.4;
}

.typing-indicator {
    font-style: italic;
    color: var(--text-muted);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Секция странных вопросов */
.weird-questions {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.question-card {
    background: var(--glass-gradient);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.question-card:hover::before {
    transform: scaleX(1);
}

.question-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.question-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.question-icon {
    font-size: 24px;
    padding: 10px;
    background: var(--cyber-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.question-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neon-blue);
}

.question-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.answers {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.answer {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--cyber-orange);
    transition: all 0.3s ease;
}

.answer:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.answer-author {
    font-size: 12px;
    color: var(--cyber-orange);
    font-weight: 600;
    margin-bottom: 5px;
}

.answer-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.question-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Секция возможностей */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-gradient);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 20px 40px rgba(179, 0, 255, 0.2);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--neon-blue);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Демо секция */
.demo-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(10px);
}

.demo-interface {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: 40px;
    height: 500px;
    background: var(--glass-gradient);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
}

/* Список комнат */
.chat-rooms {
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--border-glow);
}

.rooms-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-glow);
    background: var(--cyber-gradient);
}

.rooms-header h3 {
    margin: 0;
    color: white;
    font-size: 16px;
}

.room-list {
    padding: 10px 0;
}

.room-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid transparent;
}

.room-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--neon-blue);
}

.room-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--neon-blue);
}

.room-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-gradient);
    border-radius: 8px;
}

.room-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.room-status {
    font-size: 12px;
    color: var(--text-muted);
}

/* Область чата */
.chat-area {
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-glow);
    background: var(--glass-gradient);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.online-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
}

.chat-messages {
    height: 320px;
    padding: 20px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    padding: 20px;
    border-top: 1px solid var(--border-glow);
    display: flex;
    gap: 10px;
    background: var(--glass-gradient);
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-glow);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.chat-input input::placeholder {
    color: var(--text-muted);
}

.chat-input input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.chat-input button {
    padding: 12px 24px;
    background: var(--cyber-gradient);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 126, 0.3);
}

/* Футер */
.footer {
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 30px;
    margin-top: 80px;
    backdrop-filter: blur(20px);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo h3 {
    margin: 0;
    font-size: 20px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-blue);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .questions-grid {
        grid-template-columns: 1fr;
    }

    .question-card {
        margin: 0 10px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .demo-interface {
        grid-template-columns: 1fr;
        height: auto;
    }

    .chat-rooms {
        display: none; /* Скрываем на мобилках */
    }

    .chat-messages {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .banner-text {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        margin-top: 10px;
    }

    .legal-content {
        padding: 20px;
    }
}

/* Страницы Terms и Privacy */
.legal-page {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(10px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-gradient);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--card-shadow);
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.back-link a:hover {
    color: var(--neon-pink);
    transform: translateX(-5px);
}

.legal-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 14px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--neon-blue);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px;
    color: var(--neon-green);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-section a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--neon-pink);
}

/* Специальные блоки для Privacy */
.privacy-highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-highlight h2 {
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.no-collect-list p {
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--neon-pink);
}

.data-sharing {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.data-sharing h3 {
    color: var(--neon-green);
    margin-bottom: 10px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.privacy-philosophy {
    background: var(--glass-gradient);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.philosophy-quote {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--cyber-orange);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 8px;
    text-align: center;
}

.agreement-footer {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agreement-footer strong {
    color: var(--neon-blue);
}

.version-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    font-family: 'Courier New', monospace;
}

/* Эффекты появления */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Специальный скроллбар для чата */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* Анимации загрузки */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}