* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111111;
    color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.wrapper {
    max-width: 960px;
    margin: auto;
}

/* HEADER */
header {
    background: #1a1a1a;
    border-bottom: 1px solid #2f2f2f;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: #d7d7d7;
}
.logo a {
    color: #d7d7d7;
}
.logo span {
    font-size: 20px;
}
.banner-header {
    width: 468px;
    height: 60px;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    border-radius: 3px;
}

nav {
    background: #202020;
    border-top: 1px solid #333333;
}
nav ul {
    list-style: none;
    display: flex;
}
nav li {
    border-right: 1px solid #333333;
}
nav a {
    display: block;
    padding: 14px 18px;
}
nav a:hover{
    background: #e50914;
}
/* End HEADER */



.content {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}



main {
    width: 630px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.video-box {
    background: #202020;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2f2f2f;
    transition: .25s;
	padding: 4px;
}
.video-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.45);
}
.thumb-video {
    margin: 0px auto;
	padding-top: 5px;
	width: 160px;
	height: 120px;
    background: #444;
}
.thumb-videos {
    margin: 0px auto;
	padding-top: 5px;
	width: 160px;
	height: 100px;
    background: #444;
}
.video-box h3 {
    padding: 12px 10px 5px 10px;
    font-size: 12px;
}
a.tv {
    color: #e50914;
}
.video-box p {
    padding: 0 10px 0 10px;
    color: #bbbbbb;
    font-size: 10px;
    line-height:1.5;
}

.pages-video {
    margin: 30px auto 20px auto;
	width: 560px;
	font-size: 12px;
	text-align: center;
}
.pages-video p {
    margin-bottom: 10px;

}
.pages-video p span {
    font-size: 13px;
	font-weight: 700;
    color: #e50914;
}
.pages-video p a {
    margin-left: 100px;
    margin-right: 100px;
    padding-left: 5px;
    padding-right: 5px;
}
.page-video-prev {
    text-align: left;
}
.page-video-next {
	text-align: right;
}


.v-box {
    background: #202020;
    border:1px solid #2d2d2d;
    border-radius: 8px;
    padding: 20px;
}
.v-title {
    font-size: 20px;
    margin-bottom: 20px;
}
.v-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
}
.v-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.v-description h2 {
    margin-bottom: 15px;
    font-size: 16px;
}
.v-description p {
    font-size: 13px;
    color: #bbbbbb;
    margin-bottom: 15px;
}
.v-description p.v-stats {
	font-size: 10px;
}
.v-description p.v-stats span {
	padding-right: 20px;
}

aside {
    width: 310px;
}

.aside-space300 {
    width: 300px;
    background: #333333;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999999;
    margin-bottom: 20px;
}

.aside-space-h250 {
    height: 250px;
}

.aside-space-h600 {
    height: 600px;
}

/* FOOTER */

footer {
    margin-top: 20px;
    background: #181818;
    border-top: 1px solid #333333;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 20px;
}
.footer-column {
    flex: 1;
}
.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff;
}
.footer-column ul {
    list-style: none;
}
.footer-column li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #bbbbbb;
}
.footer-column a:hover {
    color: #ffffff ;
}

.footer-bottom {
    background: #101010;
    color: #888888;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* TABLET */

@media(max-width:959px) {

.wrapper {
    padding:0 15px;
}

.content {
    flex-direction: column;
}

main, aside {
    width: 100%;
}

.grid {
    grid-template-columns: repeat(2,1fr);
}

.aside-space300 {
    width: 100%;
}

}


/* SMARTPHONE */

@media(max-width:767px) {

.header-top {
    flex-direction: column;
    gap:1 5px;
}

.banner-header {
    width: 100%;
    max-width: 468px;
}

nav ul {
    flex-wrap: wrap;
}

nav li {
    width: 50%;
}

.grid {
    grid-template-columns: 1fr;
}

.pages-video {
	width: 280px;
}
.pages-video p a {
  margin-left: 40px;
  margin-right: 40px;
}

.footer-top {
    flex-direction: column;
}

}
