/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark background */
    color: #fff; /* Light text for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Header styling */
h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video container styling */
.video-container {
    position: relative;
    width: 500px;
    padding: 12px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    height: 500px;
}

/* Video element */
video {
    width: 475px;
    height: 475px;
    transform: rotate(90deg);
    transform-origin: center;
    object-fit: contain;
}
video::-webkit-media-controls-panel {
    transform: rotate(-90deg);
}

/* Button container styling */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

/* Button styling */
button {
    background-color: #007BFF; /* Blue button background */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Highlight the active (selected) button */
button.active {
    background-color: #0056b3; /* Highlight color for selected button */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Optional shadow for emphasis */
}

@media (max-width: 575.98px) {
  .video-container {
    width: 350px;
    height: 350px;
  }
  video {
    width: 325px;
    height: 325px;
  }
  h1 {
    font-size: 20px;
  }
}

/* Footer styling */
footer {
    margin-top: 30px;
    font-size: 1rem;
    color: #aaa; /* Lighter footer text */
    text-align: center;
}

footer a {
    color: #007BFF; /* Blue for links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
