/* Basic Reset & Body Styling */
body {
    margin: 0;
    padding: 0;
	background-image: url("https://sinkodehost.neocities.org/bg.png");
	font-family: "Arial";
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #2c3e50; /* Dark blue-gray */
    color: #ecf0f1; /* Light gray */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #e74c3c; /* Red accent */
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo h1 {
    margin: 0;
    font-size: 1.8rem;
}

.search-container {
    display: flex;
}

.search-container input[type="text"] {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    min-width: 250px;
}

.search-container button {
    padding: 0.6rem 1rem;
    background-color: #e74c3c; /* Red */
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-container button:hover {
    background-color: #c0392b; /* Darker red */
}

/* Main Content Area */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 20px auto; /* Center content */
}

/* Video Player Area */
.video-player-area {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.video-player-area h2 {
    margin-top: 0;
    color: #2c3e50;
}

#mainVideoPlayer {
    max-width: 100%; /* Ensure player is responsive */
    border-radius: 5px;
    background-color: #000; /* Black background for letterboxing */
}

#videoNowPlayingTitle {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #555;
}

/* Video Library */
.video-library h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Responsive grid */
    gap: 1.5rem;
}

.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; /* Use flexbox for better alignment */
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom */
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.8rem;
}

.video-item h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #34495e; /* Darker blue-gray */
}

.video-item p {
    font-size: 0.9rem;
    color: #7f8c8d; /* Gray */
    margin-bottom: 1rem;
}

.play-btn {
    background-color: #3498db; /* Blue */
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: center; /* Center button horizontally */
    width: 80%; /* Give button a consistent width */
    margin-top: auto; /* Pushes button down */
}

.play-btn:hover {
    background-color: #2980b9; /* Darker blue */
}

#noResultsMessage {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Style the list container */
.social-links {
    list-style: none; /* Remove default bullet points */
    padding: 0;       /* Remove default padding */
    margin: 0;        /* Remove default margin */
    display: flex;    /* Arrange items in a row */
    gap: 15px;        /* Add space between icons */
}

/* Style each list item (optional, often styling the 'a' is enough) */
.social-links li {
    /* No specific styling needed here with flex gap */
}

/* Style the anchor tags (the icons themselves) */
.social-links .social-icon {
    display: inline-flex; /* Helps align icon if text were present */
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Remove underline from links */
    font-size: 24px;      /* Icon size (adjust as needed) */
    color: #555;          /* Default icon color */
    width: 45px;          /* Fixed width for circle/square */
    height: 45px;         /* Fixed height for circle/square */
    border-radius: 50%;   /* Make it a circle (or use 5px for rounded square) */
    background-color: #fff; /* White background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions for hover */
}

/* Hover effect for all icons */
.social-links .social-icon:hover {
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Stronger shadow on hover */
    /* You could set a generic hover color here, but brand colors below are better */
    /* color: #007bff; */
}

/* --- Platform-Specific Hover Colors (Optional but Recommended) --- */

.social-links .facebook:hover {
    color: #fff; /* White icon */
    background-color: #1877F2; /* Facebook Blue */
}

.social-links .spotify:hover {
    color: #fff;
    background-color: #2EBD59; /* X Black (or #1DA1F2 for classic Twitter Blue) */
}

.social-links .youtube:hover {
    color: #fff;
    background-color: #FF0000; /* YouTube Red */
}

video {
        max-width: 100%; /* Ensure player is responsive */
    border-radius: 5px;
    background-color: #000; /* Black background for letterboxing */
}

iframe {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
}

/* Dropdown navigation styles */
.dropdown-nav {
    display: flex;
    gap: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.dropbtn:hover {
    background-color: #34495e;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    border-radius: 4px;
}

.dropdown:hover .dropdown-content {
    display: block;
}