 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0d12;
            color: #e0e0e0;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Текстура фона как в игре (городская сетка/карта) */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 70% 10%, rgba(230, 36, 41, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 200, 100, 0.05) 0%, transparent 50%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
            z-index: -1;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Шапка — стиль обложки игры с белым пауком */
        .header {
            text-align: center;
            padding: 40px 0 20px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 30px;
        }

        .logo {
            font-size: 4.5em;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            margin-bottom: 5px;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
        }

        .subtitle {
            font-size: 1.4em;
            font-weight: 300;
            color: #e62429;
            letter-spacing: 6px;
            text-transform: uppercase;
            padding-left: 6px; /* компенсация letter-spacing */
            position: relative;
        }

        .subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: #e62429;
            box-shadow: 0 0 15px #e62429;
        }

        /* Плеер — более «киношные» пропорции */
        .player-section {
            margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(230, 36, 41, 0.3);
            background: #000;
            position: relative;
            transition: transform 0.2s ease;
        }

        .player-section:hover {
            transform: scale(1.005);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(230, 36, 41, 0.6);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* чуть шире для кинематографичности */
            height: 0;
            background: #0a0a0a;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Информация о фильме — карточка с "острыми" углами */
        .movie-info {
            background: rgba(10, 12, 18, 0.85);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 4px solid #e62429;
            padding: 35px;
            margin-top: 30px;
            position: relative;
        }

        .movie-info::before {
            content: '';
            position: absolute;
            top: -1px;
            right: -1px;
            bottom: -1px;
            left: -1px;
            background: linear-gradient(45deg, rgba(230,36,41,0.15), transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        .movie-title {
            font-size: 2em;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 5px;
            letter-spacing: -1px;
        }

        .movie-title span {
            color: #e62429;
            font-weight: 900;
        }

        .metadata {
            display: flex;
            gap: 25px;
            margin: 20px 0;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 20px;
        }

        .meta-item {
            font-size: 0.95em;
            font-weight: 500;
            color: #b0b0b0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-item.rating {
            background: #e62429;
            color: white;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 2px;
        }

        .genres {
            display: flex;
            gap: 12px;
            margin: 15px 0 25px;
            flex-wrap: wrap;
        }

        .genre-tag {
            padding: 6px 18px;
            background: rgba(230, 36, 41, 0.1);
            border: 1px solid rgba(230, 36, 41, 0.4);
            color: #ff8a8a;
            font-size: 0.8em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .description {
            line-height: 1.8;
            color: #c0c0c0;
            margin-bottom: 30px;
            font-size: 1.05em;
            border-left: 2px solid #333;
            padding-left: 20px;
            font-style: italic;
            background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .info-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 15px;
            border-left: 2px solid rgba(230, 36, 41, 0.5);
        }

        .info-card h4 {
            color: #888;
            font-size: 0.7em;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .info-card p {
            font-size: 1em;
            font-weight: 600;
            color: #fff;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: #e62429;
            border-color: #e62429;
            color: white;
            box-shadow: 0 5px 20px rgba(230, 36, 41, 0.4);
        }

        .btn-primary:hover {
            background: #ff2a30;
            border-color: #ff2a30;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(230, 36, 41, 0.6);
        }

        .btn-secondary:hover {
            border-color: rgba(255,255,255,0.8);
            background: rgba(255,255,255,0.05);
        }

        /* Комментарии */
        .comments-section {
            margin-top: 40px;
        }

        .comments-title {
            font-size: 1.6em;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .comments-count {
            background: #e62429;
            padding: 2px 12px;
            font-size: 0.6em;
            font-weight: 700;
            color: white;
        }

        .comment {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px;
            margin-bottom: 15px;
            transition: 0.2s;
        }

        .comment:hover {
            border-color: rgba(230, 36, 41, 0.5);
            background: rgba(255, 255, 255, 0.04);
        }

        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            gap: 15px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e62429, #b01030);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .comment-username {
            font-weight: 600;
            color: #fff;
        }

        .comment-date {
            font-size: 0.8em;
            color: #555;
        }

        .comment-text {
            color: #a0a0a0;
            line-height: 1.6;
        }

        .comment-rating {
            color: #e62429;
            font-weight: bold;
        }

        .comment-actions {
            margin-top: 15px;
            display: flex;
            gap: 25px;
            color: #555;
            font-size: 0.9em;
        }

        .comment-actions span {
            cursor: pointer;
            transition: 0.2s;
        }

        .comment-actions span:hover {
            color: #e62429;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5em;
            }
            .movie-title {
                font-size: 2em;
            }
            .btn {
                padding: 12px 20px;
                font-size: 0.8em;
            }
        }


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #e62429;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(230, 36, 41, 0.3);
    animation: scaleIn 0.3s;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    color: #e62429;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: #ff6b6b;
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.modal-content h3 {
    color: #e62429;
    font-size: 24px;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

.modal-content a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.modal-content a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.modal-btn {
    background: linear-gradient(135deg, #e62429, #4a0e1e);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    letter-spacing: 1px;
}

.modal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 36, 41, 0.5);
}

/* Стили для кнопок действий */
.action-btn {
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 10px;
    border-radius: 8px;
}

.action-btn:hover {
    background: rgba(230, 36, 41, 0.15);
    color: #e62429;
}

/* Стили для формы комментария */
.comment-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.comment-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid #444;
    border-radius: 10px;
    padding: 12px;
    color: white;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.comment-textarea:focus {
    outline: none;
    border-color: #e62429;
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.char-counter {
    color: #888;
    font-size: 12px;
}

.submit-btn {
    background: linear-gradient(135deg, #e62429, #4a0e1e);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(230, 36, 41, 0.5);
}

/* Стили для кнопки "Смотреть все комментарии" */
.show-all-comments {
    text-align: center;
    margin-top: 25px;
}

.show-all-btn {
       background: rgba(255, 255, 255, 0.02);
    color: #e62429;
    border: rgba(230, 36, 41, 0.5);
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #1a1a2e;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
