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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.6;
        }

        header {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #d4af37;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .hero {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .hero-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .hero .dates {
            font-size: 1.2rem;
            color: #b0b0b0;
            margin-bottom: 2rem;
        }

        .hero .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #d4af37;
            max-width: 800px;
            margin: 2rem auto;
            line-height: 1.8;
        }

        .section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: none;
        }

        .section.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #d4af37;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.5rem;
        }

        .bio {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
        }

        .bio section {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .bio section:last-child {
            border-bottom: none;
        }

        .bio p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card p {
            color: #c0c0c0;
        }

        .audio-player {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .audio-player h4 {
            color: #d4af37;
            margin-bottom: 0.5rem;
        }

        .placeholder-text {
            color: #888;
            font-style: italic;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .video-info {
            padding: 1.5rem;
        }

        .video-info h4 {
            color: #d4af37;
            margin-bottom: 0.5rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .photo-card {
            aspect-ratio: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .photo-card:hover {
            transform: scale(1.05);
        }

        .story-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .story-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .story-card:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .story-card h3 {
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .story-preview {
            color: #c0c0c0;
            font-style: italic;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
        }

/* ========== БУРГЕР-МЕНЮ ========== */

.burger-menu {
    display: none; /* Скрыто на десктопе */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Анимация кнопки бургера */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== АДАПТИВ ДЛЯ МОБИЛКИ ========== */

@media (max-width: 768px) {
    /* Показываем бургер-кнопку */
    .burger-menu {
        display: flex;
    }

    /* Навигация в мобилке */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Скрыто за экраном */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 150;
        overflow-y: auto;
    }

    /* Открытое меню */
    .nav-links.active {
        right: 0;
    }

    /* Ссылки в мобильном меню */
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 1rem;
    }

    /* Затемнение фона при открытом меню */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 100;
        animation: fadeIn 0.3s;
    }

    /* Остальные элементы */
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .memory-item {
        max-width: 90%;
    }
    
    .memory-item:nth-child(odd),
    .memory-item:nth-child(even) {
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }
    
    .memory-item::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    nav {
        padding: 0 1rem;
    }

    .nav-links {
        width: 80%;
    }
}

/* Фильтр по тегам */
.tags-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
    justify-content: center;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Georgia', serif;
}

.tag-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.tag-btn.active {
    background: #d4af37;
    color: #1a1a2e;
    border-color: #d4af37;
}

/* Теги в контенте (фото, аудио, видео) */
.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.content-tag {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Загрузка (спиннер) */
.loading {
    text-align: center;
    color: #888;
    padding: 3rem;
    font-style: italic;
}

/* Форма загрузки файлов */
.file-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.file-label:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.file-icon {
    font-size: 2rem;
}

.file-text {
    color: #d4af37;
    font-weight: bold;
}

/* Общие поля форм */
.common-fields {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.common-fields input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #e0e0e0;
    font-family: 'Georgia', serif;
}

/* Кнопка отправки */
.upload-all-btn {
    background: #d4af37;
    color: #1a1a2e;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s;
}

.upload-all-btn:hover {
    background: #c49d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.upload-all-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

/* Прогресс загрузки */
.upload-progress {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.upload-progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.upload-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transition: width 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

.upload-progress-text {
    color: #4CAF50;
    text-align: center;
    font-size: 0.9rem;
}

/* Кнопка удаления в превью */
.remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s;
    z-index: 10;
}

.remove-btn:hover {
    background: #f44336;
    transform: scale(1.1);
}

/* ========== ПЛАВАЮЩАЯ КНОПКА "ДОБАВИТЬ" ========== */

.floating-add-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #c49d2a 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.floating-add-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-add-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e0bd45 0%, #d4af37 100%);
}

.floating-add-btn:active {
    transform: translateY(-1px);
}

.fab-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.fab-text {
    white-space: nowrap;
}

/* Мобильная версия — только иконка */
@media (max-width: 768px) {
    .floating-add-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
        justify-content: center;
    }
    
    .fab-text {
        display: none;
    }
    
    .fab-icon {
        font-size: 1.5rem;
    }
}

/* Анимация пульсации (опционально) */
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 55, 0.7); }
}

.floating-add-btn.visible {
    animation: pulse 2s ease-in-out infinite;
}

.floating-add-btn:hover {
    animation: none;
}