/*
Theme Name: Netflix Style Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme for a Netflix-style video platform with custom post types and taxonomies.
Version: 1.0.0
Text Domain: netflix-theme
*/

/* No custom CSS needed in this file, it's primarily for theme metadata.
   Custom styles should be added in assets/css/style.css */

.hero-section h1, .hero-section p {
  color: #ffffff; /* Use a white color */
}

.bg-netflixBlack{
    background-color: #141414;
}

.bg-netflixRed{
    background-color: var(--primary-color);
}

.bg-netflixGray{
    background-color: #303030;
}


input[type="range"].custom-slider {
  -webkit-appearance: none;
  background: #444;
  height: 6px;
  border-radius: 999px;
  cursor: pointer;
}
input[type="range"].custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 999px;
  margin-top: -4px;
}
input[type="range"].custom-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border: none;
  border-radius: 999px;
}