/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary-bg: #111;
    --secondary-bg: #0d0d0d;
    --tertiary-bg: #1a1a1a;
    --quaternary-bg: #1e1e1e;
    --primary-color: #e0e0e0;
    --accent-color: #ff6b35;
    --accent-hover: #ff7f00;
    --accent-dark: #e67300;
    --text-light: #aaa;
    --text-muted: #999;
    --border-color: #333;
    --border-light: #444;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

/* ===== BASE STYLES ===== */
html, body {
    background: var(--primary-bg) !important;
    color: var(--primary-color) !important;
    font-family: var(--font-primary) !important;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* ===== TYPOGRAPHY ===== */
a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

/* ===== LAYOUT COMPONENTS ===== */
/* Header System */
.header,
.header-menu-top,
.header-top,
.header-bottom {
    background: var(--secondary-bg) !important;
}

.header {
    background: var(--tertiary-bg) !important;
    border-bottom: 1px solid var(--border-color);
}

.header-menu-top {
    background: var(--primary-bg) !important;
    border-bottom: 1px solid var(--border-light);
}

.header-top {
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-top .container {
    #display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.header-bottom {
    border-top: 1px solid var(--border-light);
}

/* Logo - FĂRĂ HOVER */
.logo {
    float: none !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Banner */
.header-banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 90px;
}

.header-banner img {
    max-height: 90px;
    width: auto;
    border-radius: 6px;
}

/* Navigation */
.nav-menu,
.main-navigation,
.primary-menu {
    background: var(--tertiary-bg);
}

.nav-menu ul,
.main-navigation ul,
.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-menu li a,
.main-navigation li a,
.primary-menu li a {
    color: var(--primary-color);
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.main-navigation li a:hover,
.primary-menu li a:hover {
    color: var(--accent-hover);
}

/* ===== CONTENT COMPONENTS ===== */
/* Main Container */
.container,
.main-container,
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Posts Grid */
.featured-posts,
.posts-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.featured-home-post-item,
.post-item,
.article-card {
    position: relative;
    background: var(--tertiary-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-home-post-item:hover,
.post-item:hover,
.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.featured-home-post-item img,
.post-item img,
.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.featured-home-post-item .overlay-link,
.post-item .overlay-link,
.article-card .overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.featured-home-post-item-date,
.post-date,
.article-date {
    background-color: var(--quaternary-bg) !important;
    font-size: 13px;
    margin-top: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
}

.block-post-wrap-content,
.post-content,
.article-content {
    background-color: var(--tertiary-bg) !important;
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Post Meta */
.post-meta,
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-author,
.article-author {
    color: var(--accent-hover);
    font-weight: 500;
}

/* Categories */
.category-badge,
.post-category,
.article-category {
    background-color: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 6px;
    font-family: var(--font-display);
}

/* ===== SEARCH COMPONENT ===== */
.super-search,
.search-modal,
.search-widget {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 300px;
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    padding: 15px;
    display: none;
    z-index: 9999;
}

.super-search .search-input,
.search-modal .search-input,
.search-widget .search-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--quaternary-bg);
    color: var(--primary-color);
    font-size: 14px;
}

.super-search .search-input:focus,
.search-modal .search-input:focus,
.search-widget .search-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.super-search .search-btn,
.search-modal .search-btn,
.search-widget .search-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-color);
}

.super-search .search-result,
.search-modal .search-result,
.search-widget .search-result {
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
}

/* ===== SIDEBAR ===== */
.sidebar,
.widget-area {

    border-radius: 8px;
    padding: 20px;
    margin-top: 2rem;
}

section.sidebar-item-content,
.widget {
    background: var(--secondary-bg) !important;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.widget-title,
.sidebar-title {
    color: var(--accent-hover);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.sidebar-new-item-thumb {
    height: 65px; 
    width: 65px;
}
/* ===== FOOTER ===== */
footer.footer,
.site-footer {
    background: var(--secondary-bg) !important;
    border-top: 3px solid var(--accent-color) !important;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

section.footer-top,
section.footer-bottom,
.footer-widgets {
    background: var(--secondary-bg) !important;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget {
    padding: 20px;
}

.footer-title {
    color: var(--accent-hover);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-hover);
}

/* ===== COMMENTS SYSTEM ===== */
.single-comment-content,
.comments-section {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-primary);
    margin-top: 2rem;
}

.fob-comment-title,
.comments-title {
    color: var(--accent-hover);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
    font-family: var(--font-display);
}

.fob-comment-list,
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.fob-comment-item,
.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.fob-comment-item-avatar img,
.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-hover);
    flex-shrink: 0;
}

.fob-comment-item-content,
.comment-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fob-comment-item-header,
.comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.fob-comment-item-author,
.comment-author {
    color: var(--accent-hover);
    font-weight: 600;
    font-size: 0.95rem;
}

.fob-comment-item-date,
.comment-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.fob-comment-item-body p,
.comment-body p,
.fob-comment-item-pending {
    background-color: var(--tertiary-bg);
    border-left: 4px solid var(--accent-hover);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin: 0;
    line-height: 1.4;
    color: #fff;
}

.fob-comment-item-pending {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Comment Form */
.fob-comment-form-section,
.comment-form-section {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.fob-comment-form-title,
.comment-form-title {
    color: var(--accent-hover);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.fob-comment-form-note,
.comment-form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fob-comment-form input,
.fob-comment-form textarea,
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--tertiary-bg);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.fob-comment-form input:focus,
.fob-comment-form textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.fob-comment-form input::placeholder,
.fob-comment-form textarea::placeholder,
.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.fob-comment-form .form-check,
.comment-form .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.fob-comment-form .form-check input[type="checkbox"],
.comment-form .form-check input[type="checkbox"] {
    accent-color: var(--accent-hover);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.fob-comment-form .form-check span.form-check-label,
.comment-form .form-check span.form-check-label {
    color: #fff;
    line-height: 1.3;
}

.fob-comment-form button,
.comment-form button {
    background-color: var(--accent-hover);
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    color: var(--primary-bg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fob-comment-form button:hover,
.comment-form button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
}

/* ===== PAGINATION ===== */
.pagination,
.page-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pagination a,
.page-navigation a,
.pagination span,
.page-navigation span {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover,
.page-navigation a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.pagination .current,
.page-navigation .current {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* ===== SKELETON LOADER ===== */
.fob-comment-skeleton-item,
.skeleton-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fob-comment-skeleton-avatar,
.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--quaternary-bg);
}

.fob-comment-skeleton-content,
.skeleton-content {
    flex: 1;
}

.fob-comment-skeleton-name,
.skeleton-name,
.fob-comment-skeleton-text,
.skeleton-text {
    border-radius: 4px;
    background: var(--border-light);
    margin-bottom: 0.3rem;
}

.fob-comment-skeleton-name,
.skeleton-name {
    width: 30%;
    height: 12px;
}

.fob-comment-skeleton-text,
.skeleton-text {
    width: 100%;
    height: 10px;
}

.fob-comment-skeleton-text.short,
.skeleton-text.short {
    width: 60%;
}

/* ===== PAGE CONTENT ===== */
.page-fullwidth .single-content,
.single-post-content,
.page-content {
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
    line-height: 1.8;
    font-size: 16px;
    color: var(--primary-color);
}

.page-fullwidth .single-content p,
.single-post-content p,
.page-content p {
    margin-bottom: 1.2rem;
}

.page-fullwidth .single-content img,
.single-post-content img,
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* ===== ADMIN BAR ===== */
#admin_bar,
.admin-bar {
    background: var(--tertiary-bg) !important;
}

#admin_bar .admin-navbar-nav .admin-bar-dropdown-menu li a,
.admin-bar .admin-navbar-nav .admin-bar-dropdown-menu li a {
    color: #000 !important;
}

#admin_bar .admin-navbar-nav .admin-bar-dropdown-menu li a:hover,
.admin-bar .admin-navbar-nav .admin-bar-dropdown-menu li a:hover {
    color: #000 !important;
    background-color: transparent !important;
}

/* ===== GAMING ELEMENTS ===== */
.gaming-badge,
.game-tag {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container,
    .main-container,
    .content-wrapper {
        padding: 0 15px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-banner {
        justify-content: center;
        height: auto;
    }
    
    .featured-posts,
    .posts-grid,
    .article-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fob-comment-item,
    .comment-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fob-comment-item-header,
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .nav-menu ul,
    .main-navigation ul,
    .primary-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination,
    .page-navigation {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-banner img {
        max-height: 60px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .featured-home-post-item img,
    .post-item img,
    .article-card img {
        height: 150px;
    }
    
    .single-comment-content,
    .comments-section {
        padding: 1.5rem;
    }
}
/* ===== LAYOUT COMPONENTS ===== */
.container,
.main-container,
.content-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}
/* ===== SOCIAL SHARING ICONS - ORANGE PERMANENT ===== */
.bb-social-sharing {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.bb-social-sharing__item {
    display: inline-flex;
    align-items: center;
}

.bb-social-sharing__item a,
.bb-social-sharing__item button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: transparent;
    text-decoration: none;
    color: #b0b0b0;
    transition: none;
    cursor: pointer;
}

/* Face icon-urile SVG portocalii permanent */
.bb-social-sharing .icon {
    color: #ff6b35 !important;
    stroke: #ff6b35 !important;
    fill: none !important;
    transition: none !important;
}

/* Textul rămâne gri și fără hover */
.bb-social-sharing-text {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: none;
}

.bb-social-sharing__item a:hover .bb-social-sharing-text,
.bb-social-sharing__item button:hover .bb-social-sharing-text {
    color: #b0b0b0 !important;
}

/* Eliminat hover effect portocaliu deschis */
.bb-social-sharing__item a:hover,
.bb-social-sharing__item button:hover {
    background: transparent;
    border-color: transparent;
}

/* Pentru iconița de copiere (stări diferite) */
.bb-social-sharing .svg-icon-ti-ti-copy,
.bb-social-sharing .svg-icon-ti-ti-check {
    color: #ff6b35 !important;
    stroke: #ff6b35 !important;
    fill: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .bb-social-sharing {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .bb-social-sharing__item a,
    .bb-social-sharing__item button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .bb-social-sharing-text {
        display: none;
    }
}