/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212; /* Dark Mode Background */
    color: #ffffff;
}

/* Loading Screen Styles */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader img {
    width: 150px; /* Logo size */
    margin-bottom: 20px;
}

/* Main Content Styles */
.hidden {
    display: none;
}

header {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    margin-bottom: 20px;
}

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

.card {
    background: #1f1f1f;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

.card h3 {
    margin-top: 10px;
    font-size: 1.1rem;
    text-align: center;
}

.text-card p {
    color: #ccc;
    padding: 10px;
}

/* Visit Channel Button Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.channel-btn {
    background-color: #ff0000; /* YouTube Red */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.2s;
    display: inline-block;
}

.channel-btn:hover {
    transform: scale(1.05);
    background-color: #cc0000;
  }
