/* General styling for the page */
body {
    background-image: url('garage-texture.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

/* Header and Navigation (same as other pages for consistency) */
header {
    background-color: #222;
    padding: 50px 20px;
    text-align: center;
}
header h1 {
    color: #ff8c00;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}
header p {
    color: #e0e0e0;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 5px 0 0;
}
nav {
    background-color: #333;
    padding: 15px 0;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 1.2em;
    transition: color 0.3s ease;
    display: inline-block;
}
nav a:hover {
    color: #ffcc00;
}
#logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
    z-index: 1000;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
#logo-overlay:hover {
    transform: scale(1.05);
}

/* Main content area and video styling */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

#short-videos-list {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.short-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.short-video-card {
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.short-video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.short-video-info {
    padding: 15px;
}

.short-video-info h3 {
    color: #ffcc00;
    margin-top: 0;
}

.short-video-info p {
    font-size: 0.9em;
    color: #e0e0e0;
}

/* Footer (same as other pages for consistency) */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}