/*
Theme Name: WP-PH
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: Video service theme for WordPress with dark design
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-ph
*/

/* Reset & Base Styles */
*, :after, :before {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    padding: 0;
    background: #000;
    color: #969696;
    font: 1em Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1.4;
    margin: 0;
    overflow-x: hidden;
}

/* Links */
a {
    color: #ff9000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #ffaa33;
    text-decoration: underline;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
    border: 0;
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    height: auto;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 1em 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #111;
    border-bottom: 1px solid #222;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-icon {
    max-height: 50px;
    width: auto;
    display: block;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 2em;
    margin: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.site-title a {
    color: #fff;
    font-weight: 900;
    background: linear-gradient(90deg, #ff9000 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a:hover {
    text-decoration: none;
    opacity: 0.9;
}

/* Search Form */
.search-form {
    flex: 1;
    max-width: 100%;
    margin: 0 30px;
}

.search-form form {
    display: flex;
    gap: 8px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1em;
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #ff9000;
    background-color: #222;
}

.search-form button {
    padding: 12px 24px;
    background-color: #ff9000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #ffaa33;
}

/* Navigation Menu */
.main-navigation {
    border-top: 1px solid #222;
    padding-top: 12px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #969696;
    font-size: 1em;
    font-weight: 400;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.main-navigation a:hover {
    color: #ff9000;
}

/* Mobile Menu Toggles */
.mobile-categories-toggle,
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff9000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9em;
    color: #969696;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.breadcrumbs a {
    color: #969696;
}

.breadcrumbs a:hover {
    color: #ff9000;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #555;
}

.breadcrumb-current {
    color: #fff;
}

/* Main Content */
.site-main {
    padding: 30px 0;
    min-height: 60vh;
}

/* Video Grid - 5 columns */
.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.video-card {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 144, 0, 0.3);
    border-color: #ff9000;
}

.video-card a {
    display: block;
    color: #fff;
}

.video-card a:hover {
    text-decoration: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background-color: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    padding: 12px;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.4;
    min-height: 60px;
    color: #fff;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* Single Video Page */
.single-video {
    max-width: 1200px;
    margin: 0 auto;
}

.video-player {
    width: 100%;
    margin-bottom: 20px;
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
}

.video-header {
    margin-bottom: 20px;
}

.video-header h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.video-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.video-categories a {
    padding: 8px 16px;
    background-color: #1a1a1a;
    color: #ff9000;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 0.9em;
    display: inline-block;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 600;
}

.video-categories a:hover {
    background-color: #ff9000;
    color: #000;
    border-color: #ff9000;
    text-decoration: none;
}

.video-content {
    color: #969696;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.video-content p {
    margin-bottom: 1em;
}

/* Related Videos - 4 columns */
.related-videos {
    margin-top: 50px;
}

.related-videos h2 {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.related-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Category Page */
.category-header {
    margin-bottom: 30px;
}

.category-header h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.category-description {
    font-size: 1em;
    line-height: 1.6;
    color: #969696;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

/* Pagination - Full Width */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
    flex-wrap: wrap;
    width: 100%;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background-color: #1a1a1a;
    color: #969696;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1em;
    display: inline-block;
    min-width: 45px;
    text-align: center;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.pagination a:hover {
    background-color: #ff9000;
    color: #000;
    border-color: #ff9000;
    text-decoration: none;
}

.pagination .current {
    background-color: #ff9000;
    color: #000;
    border-color: #ff9000;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #222;
}

.footer-content {
    font-size: 0.9em;
    line-height: 1.6;
    color: #969696;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.footer-content p {
    margin-bottom: 1em;
}

.footer-content a {
    color: #ff9000;
}

.footer-content a:hover {
    color: #ffaa33;
}

/* Search Results */
.search-results {
    margin-bottom: 30px;
}

.search-results h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.no-results p {
    font-size: 1.1em;
    color: #969696;
}

/* Utility Classes */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


iframe {
	margin-bottom:12px;
}
.video-player br {
	display:none;
}
#player-wraper {
	margin-bottom:12px;
}
.heateor_sss_sharing_container {
	margin-top:12px;
}
.video-player {
	font-size: 16px;
	line-height: 1.3;
	background: transparent;
}