sadsa/*
Theme Name: SeeMovies Player PRO
Theme URI: https://tusitio.net
Author: SM-PLAYER
Author URI: https://tusitio.net
Description: Tema altamente personalizado y optimizado para streaming de películas. Incluye funciones de carrusel interactivo, optimización responsive para móvil y PC, y un gestor de películas manuales avanzado.
Version: 2.0
Requires at least: 5.0
Tested up to: 6.5.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sm-player
Tags: dark, custom-header, custom-menu, full-width-template
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #e0d6f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

a {
    color: #b98cff;
    text-decoration: none;
}

a:hover {
    color: #9d6bff;
}

.container {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 20px;
}


/* Para pantallas pequeñas, asegurar que el menú se vea bien */
@media (max-width: 480px) {
    .logo-2344 a {
        font-size: 1.5em;
    }
}

.menu-icon-2344 i {
    font-size: 1.1em;
    width: 1.5em;
    text-align: center;
}

/* Main Container */
.container-2344-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sidebar Personalizado */
.sidebar-2344 {
    background: #121212;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-section-2344 {
    margin-bottom: 25px;
}

.sidebar-title-2344 {
    color: #b98cff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.sidebar-input-2344 {
    width: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #333;
    color: #e0d6f0;
}

.sidebar-btn-2344 {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: #b98cff;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.sidebar-btn-2344:hover {
    background: #9d6bff;
}

.sidebar-list-2344 {
    list-style: none;
    padding: 0;
}

.sidebar-list-2344 li {
    margin-bottom: 8px;
}

.sidebar-list-2344 li a {
    color: #e0d6f0;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.sidebar-list-2344 li a:hover {
    background: #2a2a2a;
    color: #b98cff;
}



/* Movie Cards 
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.movie-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(185, 140, 255, 0.3);
}

.poster {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    width: 100%;
    height: auto;
    position: relative;
}

.poster::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

.movie-info {
    padding: 15px;
}

.movie-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #e0d6f0;
}

.movie-meta {
    font-size: 0.85em;
    color: #999;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #b98cff;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #9d6bff;
}

*/

/* Single Movie Page */
.single-movie {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.single-movie .poster {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.single-movie .details {
    flex: 1;
}

.single-movie h1 {
    color: #b98cff;
    margin-bottom: 10px;
}

.single-movie .meta {
    margin-bottom: 15px;
    color: #999;
}

.single-movie .description {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .single-movie {
        flex-direction: column;
    }
    .single-movie .poster {
        width: 100%;
    }
}

/* --- FOOTER --- */
.sm-footer-2345 {
    background: #0d0d0d;
    color: #e0d6f0;
    padding: 30px 0 10px;
    margin-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.footer-content-2345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand-2345 h2 {
    color: #b98cff;
    font-size: 1.8em;
    margin-bottom: 5px;
}

.version {
    color: #999;
    font-size: 0.9em;
}

.footer-notice-2345 p {
    color: #999;
    font-size: 0.9em;
    line-height: 1.5;
}



.footer-bottom-2345 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #999;
    font-size: 0.9em;
}