Для создания кнопки воспроизведения видео в стиле YouTube можно использовать следующий CSS код:
```css
.play-button {
width: 80px;
height: 80px;
background-color: red;
border: none;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.play-button::before {
content: "\e901";
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 40px;
color: white;
}
```
Чтобы упростить стиль кнопки и убрать свойства `hover`, `before` и `after`, можно просто удалить соответствующие строки из блока стилей:
```css
.play-button {
width: 80px;
height: 80px;
background-color: red;
border: none;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
```
Теперь кнопка будет более простой, без эффектов `hover`, `before` и `after`.