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

        body {
            background-color: #1e3b3c;  /* глубокий тёмно-зелёный */
            font-family: 'Georgia', 'Times New Roman', Times, serif;
            color: #2b2a27;
            line-height: 1.6;
            padding: 2rem 1rem;
            position: relative;
            min-height: 100vh;
            overflow-x: hidden;
        }

        #snow-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            opacity: 0.7;
        }

        .page {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fcf9f2;
            box-shadow: 0 25px 45px rgba(0, 10, 10, 0.5);
            border-radius: 40px;
            padding: 2.3rem 2.5rem;
            border: 1px solid #cbb295;
            position: relative;
            z-index: 10;
            backdrop-filter: blur(0.5px);
        }

        /* Декоративные полоски (цветовая гамма слегка осовременена) */
        .header-strip {
            display: flex;
            gap: 8px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .strip-block {
            height: 8px;
            flex: 1 1 70px;
            background-color: #4f7b8c;  /* спокойный сине-серый */
            border-radius: 30px;
        }

        .strip-block:nth-child(2) {
            background-color: #5f8b9d;
        }
        .strip-block:nth-child(3) {
            background-color: #6f8f72;  /* технологичный зелёный */
        }
        .strip-block:nth-child(4) {
            background-color: #b58b6e;  /* тёплый акцент */
        }
        .strip-block:nth-child(5) {
            background-color: #a07d5c;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: normal;
            letter-spacing: 0.5px;
            color: #2d3e3f;
            border-left: 6px solid #5f8b9d;
            padding-left: 1.3rem;
            margin: 0 0 0.5rem 0;
            line-height: 1.2;
            text-wrap: pretty;
        }

        h1 strong {
            font-weight: 500;
            background: linear-gradient(150deg, #2d5f5a 10%, #4f7b8c 90%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subhead {
            font-style: italic;
            color: #5b6e6b;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            border-bottom: 1px dashed #b0bcb5;
            padding-bottom: 0.7rem;
        }

        /* Карточка-приветствие команды */
        .greeting-card {
            background-color: #e7ede8;
            border-radius: 40px;
            padding: 1.8rem 2.3rem;
            margin: 2rem 0 2.5rem 0;
            font-size: 1.1rem;
            box-shadow: inset 0 1px 6px rgba(255, 240, 225, 0.8), 0 8px 20px rgba(30, 60, 50, 0.1);
            border: 1px solid #cbd9d2;
        }

        .stat-block {
            display: flex;
            gap: 2.2rem;
            background: white;
            padding: 1.2rem 2rem;
            border-radius: 60px;
            border: 1px solid #cbd9d2;
            margin: 1.5rem 0 2rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .stat-item {
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stat-item span {
            font-weight: bold;
            background: #5f8b9d;
            color: white;
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            font-size: 0.95rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 400;
            border-bottom: 2px solid #6f8f72;
            padding-bottom: 0.3rem;
            margin: 2.8rem 0 1.5rem 0;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .section-subtitle {
            font-size: 1.5rem;
            color: #3a5e5a;
            margin: 2rem 0 1rem 0;
            font-weight: 400;
            border-left: 5px solid #b58b6e;
            padding-left: 1.2rem;
        }

        /* Таймлайн (история / этапы команды) */
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 2rem 0;
        }
        .timeline-item {
            background: #f0f3ef;
            border-radius: 48px;
            padding: 1.8rem 2.2rem;
            border: 1px solid #cbd9d2;
            transition: transform 0.2s ease;
        }
        .timeline-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(60, 80, 70, 0.15);
        }
        .timeline-item h3 {
            font-size: 1.6rem;
            color: #2d5f5a;
            border-left: 5px solid #b58b6e;
            padding-left: 1rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        /* Фотокарточки участников команды */
        .photo-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }

        .photo-card {
            flex: 1 1 260px;
            min-width: 240px;
            background: #ffffff;
            border-radius: 32px;
            padding: 18px 18px 22px;
            box-shadow: 0 8px 18px rgba(50, 70, 60, 0.12);
            border: 1px solid #dde5e0;
            transition: transform 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .photo-card:hover {
            transform: translateY(-6px);
        }

        .photo-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 24px;
            background: #bcc9c2;
            border: 2px solid white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: opacity 0.2s;
        }
        .photo-card img:hover {
            opacity: 0.9;
        }

        .photo-card .people-name {
            font-size: 1.5rem;
            color: #2d3e3f;
            text-align: center;
            margin: 12px 0 6px;
            border-bottom: 1px dotted #b0bcb5;
            padding-bottom: 4px;
        }

        .photo-card .people-stats {
            background: #e7ede8;
            border-radius: 40px;
            padding: 8px 12px;
            margin: 10px 0;
            font-size: 0.95rem;
            text-align: center;
            border: 1px solid #cbd9d2;
        }

        .photo-card p {
            color: #3f3a33;
            margin-bottom: 10px;
            font-size: 0.98rem;
        }

        .crafts-list {
            margin-top: 10px;
        }
        .crafts-list h4 {
            font-size: 1.1rem;
            color: #4f7b8c;
            margin-bottom: 8px;
            border-left: 3px solid #b58b6e;
            padding-left: 10px;
        }
        .crafts-list ul {
            list-style: none;
            padding-left: 0;
        }
        .crafts-list li {
            padding: 0.3rem 0 0.3rem 1.2rem;
            position: relative;
            font-size: 0.95rem;
        }
        .crafts-list li::before {
            content: "•";
            color: #b58b6e;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Блок "Современность" — сейчас как "стек технологий / культура" */
        .modern-section {
            background-color: #e7ede8;
            border-radius: 48px;
            padding: 2rem 2.5rem;
            margin: 2.5rem 0;
            border: 1px solid #cbd9d2;
        }
        .modern-section h3 {
            font-size: 1.8rem;
            color: #2d5f5a;
            border-left: 6px solid #6f8f72;
            padding-left: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        /* Изображения (общее фото / символика) */
        .hero-img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 40px;
            margin: 25px 0 15px;
            border: 3px solid white;
            box-shadow: 0 12px 28px rgba(30, 30, 20, 0.25);
            cursor: pointer;
        }

        /* Выделение текста */
        .highlight {
            background: linear-gradient(145deg, #e7ede8, #fcf9f2);
            padding: 0.1rem 0.4rem;
            border-radius: 16px;
            font-weight: 500;
            color: #2d5f5a;
        }

        hr {
            border: none;
            border-top: 3px dotted #b58b6e;
            margin: 2.5rem 0;
        }

        footer {
            margin-top: 3rem;
            text-align: center;
            color: #6f8f72;
            border-top: 2px dashed #cbd9d2;
            padding-top: 1.8rem;
            font-style: italic;
        }

        .footer-tagline {
            text-align: right;
            margin-top: 1rem;
            color: #7b8f8a;
            font-size: 0.9rem;
        }

        /* Адаптивность */
        @media (max-width: 900px) {
            .photo-gallery {
                justify-content: center;
            }
        }
        @media (max-width: 700px) {
            .page {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .timeline-item {
                padding: 1.3rem;
            }
            .timeline-item h3 {
                font-size: 1.4rem;
            }
            .modern-section {
                padding: 1.5rem;
            }
        }

        /* Модальное окно (копия с первой страницы) */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 24px;
            border: 4px solid #fcf9f2;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }
        .modal-close {
            position: absolute;
            top: 25px;
            right: 35px;
            color: #f1f1f1;
            font-size: 50px;
            font-weight: 300;
            cursor: pointer;
            background: rgba(50, 30, 10, 0.3);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            line-height: 1;
        }
        .modal-close:hover {
            color: #e8dbcf;
            background: rgba(80, 50, 20, 0.7);
            transform: rotate(90deg);
        }