/*
Theme Name: AnimeFLV Clone
Theme URI: https://example.com/
Author: Antigravity
Author URI: https://example.com/
Description: A clone of the AnimeFLV website with dashboard options.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: animeflv
*/

body {
    background-color: #f1f2f3;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}
header.Header {
    background: #fff;
    border-top: 4px solid #28a745;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.Logo img { max-height: 50px; }
.Wrapper { max-width: 1200px; margin: 0 auto; padding: 20px; }
.Title.Page { border-bottom: 2px solid #ccc; margin-bottom: 20px; padding-bottom: 10px; }
.nav li a { color: #333; padding: 10px 15px; display: block; font-weight: bold; }
.nav li a:hover { background-color: #f8f9fa; border-radius: 4px; text-decoration: none; }
.widget { border-radius: 4px; }
.list-unstyled li { padding: 5px 0; border-bottom: 1px solid #eee; }
.list-unstyled li:last-child { border-bottom: none; }
.list-unstyled li a { color: #555; text-decoration: none; }
.list-unstyled li a:hover { color: #28a745; }
.card-title a { color: #333; text-decoration: none; font-size: 14px; font-weight: bold; }
.card-title a:hover { color: #28a745; }

/* Professional Video Player Container */
.responsive-video-wrapper {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}
.responsive-video iframe, 
.responsive-video object, 
.responsive-video embed, 
.responsive-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
