/* style.css */
body {
    background-color: #121212; /* Deep Dark Background */
    color: #e0e0e0; /* Soft White Text */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000000;
    border-bottom: 3px solid #ffdb58; /* Mustard Yellow Border */
    padding: 20px;
    text-align: center;
}

h1 {
    color: #ffdb58; /* Mustard Yellow Title */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Video Grid Layout */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-card {
    background-color: #1e1e1e; /* Slightly lighter card background */
    border: 1px solid #333;
    border-radius: 8px;
    width: 300px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.video-card:hover {
    border-color: #ffdb58;
    transform: translateY(-5px);
}

.video-card h3 {
    color: #ffdb58;
    font-size: 1.1rem;
}

/* The actual button/link to watch */
.watch-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ffdb58;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.watch-btn:hover {
    background-color: #e1c12e; /* Darker mustard on hover */
}

/* Player Page Styles */
.player-wrapper {
    text-align: center;
    margin-top: 20px;
}

.back-link {
    color: #ffdb58;
    text-decoration: none;
    font-size: 1.2rem;
}