
        /*body {*/
        /*    font-family: 'Arial', sans-serif;*/
        /*    !*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);*!*/
        /*    background-image: url("../img/bg.webp");*/
        /*    background-repeat:no-repeat;*/
        /*    background-size:cover;*/
        /*    background-position: center;*/
        /*    !*background-attachment: fixed;*!*/
        /*    margin: 0;*/
        /*    padding: 20px;*/
        /*    color: #fff;*/
        /*}*/

a{
    text-decoration: none;
    color:inherit ;
}
        body {
            margin: 0;
            padding: 0;
            /*font-family: 'Arial', sans-serif;*/
            font-family: 'Orbitron', sans-serif;
            /*color: #fff;*/
            color: #00ffaa;
            position: relative;
            z-index: 1;
        }

        /* Слой с фоном */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url("../img/bg.webp");
            background-size: cover;
            background-position: top;
            filter: brightness(70%);
            z-index: 0;
        }

        .content {
            position: relative;
            z-index: 2;
            padding: 40px;
        }
        
        .timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom,  #f7931e, #ffd700);
            transform: translateX(-50%);
        }
        
        .movie-card {
            position: relative;
            margin: 40px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .movie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }
        
        .movie-card:nth-child(odd) {
            margin-left: 0;
            margin-right: 55%;
        }
        
        .movie-card:nth-child(even) {
            margin-left: 55%;
            margin-right: 0;
        }
        
        .movie-card::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #ff6b35;
            border-radius: 50%;
            top: 50%;
            border: 4px solid #fff;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }
        
        .movie-card:nth-child(odd)::before {
            right: -60px;
            transform: translateY(-50%);
        }
        
        .movie-card:nth-child(even)::before {
            left: -60px;
            transform: translateY(-50%);
        }
        
        .movie-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .movie-icon {
    width: auto;
    height: auto;
    margin-right: 15px;
    /*border-radius: 10px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.movie-icon img.poster {
    width: auto;
    max-width: 60px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    /*border-radius: 6px;*/
}

        
        .prometheus { background: linear-gradient(45deg, #4a90e2, #7b68ee); }
        .covenant { background: linear-gradient(45deg, #e74c3c, #c0392b); }
        .alien79 { background: linear-gradient(45deg, #2c3e50, #34495e); }
        .romulus { background: linear-gradient(45deg, #8e44ad, #9b59b6); }
        .aliens { background: linear-gradient(45deg, #27ae60, #2ecc71); }
        .alien3 { background: linear-gradient(45deg, #f39c12, #e67e22); }
        .resurrection { background: linear-gradient(45deg, #e74c3c, #c0392b); }
        
        .movie-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        
        .movie-year {
            font-size: 16px;
            color: #ffd700;
            font-weight: bold;
        }
        
        .movie-description {
            margin: 15px 0;
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        .characters {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        
        .character {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .xenomorph-info {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
            padding: 10px;
            border-radius: 8px;
            margin-top: 10px;
        }
        
        .xenomorph-title {
            color: #ff6b6b;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .header h1 {
            font-size: 30px;
            background: #ffd700;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
        }
        
        .header p {
            font-size: 18px;
            color: #ffd700;
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
            
            .movie-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .movie-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .movie-icon img.poster {
        max-width: 100%;
        max-height: 150px;
    }

    .movie-card:nth-child(odd),
    .movie-card:nth-child(even) {
        margin-left: 20px;
        margin-right: 20px;
    }

    .movie-card:nth-child(odd)::before,
    .movie-card:nth-child(even)::before {
        left: -30px;
    }
}

        .poster{
            width:100%;
        }

.lang-toggle {
  position: fixed; /* Привязываем к окну */
  top: 20px;
  right: 20px;
  z-index: 9999; /* Поверх всего */
  
  background-color: #001100;
  border: 2px solid #00ff88;
  color: #00ffaa;
  padding: 5px 10px;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ff88;
  letter-spacing: 2px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
}

/* Опционально: немного адаптации для мобилок */
@media (max-width: 480px) {
  .lang-toggle {
    top: 10px;
    right: 10px;
    font-size: 13px;
    padding: 4px 8px;
  }
}
    .lang-toggle:hover {
      background-color: #002200;
      box-shadow: 0 0 20px #00ff88;
    }

    .lang-toggle:active {
      transform: scale(0.98);
    }
