body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: #111;
    padding: 10px 20px;
    text-align: center;
}

.container1 {
    width: 95%;
    height: 200px;
    position: relative;

}

.top-banner {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #ffcc00, #ff9900);
    opacity: 20;
    position: absolute;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

img {
    width: 100%;
    height: 100%; 
  
    display: block;
   

}
top-banner button {
    background: black;
    color: #ffcc00;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

top-banner button:hover {
    background: #333;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #222;
}

nav ul li {
    padding: 15px;
}

main {
    padding: 20px;
}

.membership-deals, .featured-videos, .biggest-deals, .popular-videos, .biggest-stars {
    margin: 20px 0;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.video-placeholder {
    background: #444;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #ff9900;
}

footer {
    background: #111;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
}
