/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #000000, #1a1a1a);
    color: white;
    padding-top: 100px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    z-index: 10;
    padding: 10px 20px;
}

header .logo img {
    height: 60px;
}

header nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #9b59b6;
}

/* Reviews Section */
.reviews {
    text-align: center;
    padding: 50px 20px;
}

.reviews h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-item {
    position: relative;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    background-color: #000;
}

.video-item video {
    width: 100%;
    height: 200px; /* Set a fixed height for the grid */
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

video:fullscreen {
    width: 100%; /* Maintain original width */
    height: auto; /* Adjust height automatically */
    object-fit: contain; /* Ensure proper aspect ratio in fullscreen */
}

/* Footer */
footer {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(5px);
}
