:root {
    --bg-color: #121212;
    --surface-color: #1e1e1e;;
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-text-color: #e0e0e0;
    --secondary-text-color: #a0a0a0;
    --accent-color: #bdbabd; 
    --accent-color-hover: #bdbabd;
    --header-height: 60px;
    --sidebar-width: 240px;
    --progress-color: #c887e0;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar {
    display: none;
}


body {
    background-color: var(--bg-color);
    background-image: radial-gradient(ellipse at center top, #1f1f1fad, #121212);
    color: var(--primary-text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}
a { color: var(--accent-color); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-color-hover); }
h1, h2, h3 { margin-top: 0; }


#ambient-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    transition: background 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.main-header {
    width: 100%;
    height: var(--header-height);
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 40px;
}

.header-content-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.header-actions { margin-left: auto; }

.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 90;
}

.main-content-area {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    padding: 20px 60px;
    box-sizing: border-box;
}

.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.post-card { background-color: var(--surface-color); border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border-color); box-shadow: 0 4px 20px rgba(0,0,0,0.1); position: relative; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.post-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.post-card-link:hover .post-card-subtitle-home { color: var(--accent-color); }
.post-card-gallery { display: grid; height: 120px; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; grid-template-areas: "main-image side-image-1" "main-image side-image-2"; background-color: #1a1a1a; }
.gallery-image-1 { grid-area: main-image; position: relative; }
.gallery-image-2 { grid-area: side-image-1; }
.gallery-image-3 { grid-area: side-image-2; }
.image-count-overlay { position: absolute; bottom: 8px; left: 8px; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); color: white; padding: 4px 10px; border-radius: 12px; font-size: 13px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.post-card-gallery.single-image-mode { display: block; height: 129px; }
.post-card-gallery .single-image-preview { width: 100%; height: 100%; background-size: cover; background-position: center; }
.post-card-content { display: flex; flex-direction: column; flex-grow: 1; }
.post-card-main-content { flex-grow: 1; padding: 16px 16px 0 16px; }
.post-card-subtitle-home { font-size: 1.1em; font-weight: 600; color: var(--primary-text-color); margin: 0 0 10px 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.4; transition: color 0.2s ease; }
.post-card-excerpt { font-size: 0.9em; color: var(--secondary-text-color); margin: 0 0 15px 0; line-height: 1.6em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.post-card-meta { display: flex; gap: 15px; font-size: 0.85em; color: var(--secondary-text-color); border-top: 1px solid var(--border-color); padding-top: 12px; justify-content: flex-start; align-items: center; padding: 12px 16px 16px; }
.post-card-meta .post-card-meta-actions { display: flex; gap: 15px; }
.post-card-meta .post-card-date-meta { font-size: 0.9em; margin-left: auto; color: var(--secondary-text-color);  }
.post-card-meta i { margin-right: 5px; }

.widget-featured-posts { 
    margin-bottom: 2.5rem;
    position: relative;
}

.widget-featured-vertical-grid { 
    display: grid; 
    grid-template-columns: 1fr 220px; 
    gap: 1.5rem; 
    align-items: flex-start;
}

.featured-content-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.featured-slider-col, .featured-side-col { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
}

.featured-card { position: relative; border-radius: 12px; overflow: hidden; background: #232323; display: flex; align-items: flex-end; padding: 1.25rem; min-height: 160px; text-decoration: none; color: #fff; flex: 1; }
.featured-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%); z-index: 2; opacity: 0; transition: opacity 0.4s ease; }
.featured-card:hover::after { opacity: 1; }
.featured-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); border-radius: 12px; }
.featured-card:hover .featured-card-img { transform: scale(1.05); }
.featured-card-content { position: relative; z-index: 3; width: 100%; transform: translateY(16px); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease; }
.featured-card:hover .featured-card-content { transform: translateY(0); opacity: 1; }
.featured-card-title { font-size: 1.3rem; font-weight: 700; line-height: 1.3; margin: 0; color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }
.featured-pill { position: absolute; top: 14px; left: 14px; background: rgba(30, 30, 30, 0.8); backdrop-filter: blur(5px); color: #fff; font-weight: 600; font-size: 0.8rem; border-radius: 999px; padding: 0.4em 1em; z-index: 3; letter-spacing: 0.05em; text-transform: uppercase; }
.featured-slider { position: relative; height: 100%; min-height: 340px; overflow: hidden; border-radius: 12px; }
.featured-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.5s ease-in-out; z-index: 1; }
.featured-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.featured-slide.active .featured-card-content { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.featured-slide.active::after { opacity: 1; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(30,30,30,0.7); backdrop-filter: blur(4px); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 40px; height: 40px; font-size: 1.2rem; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; opacity: 0; transition: background-color 0.2s, transform 0.2s, opacity 0.3s ease; }
.featured-slider:hover .slider-arrow, .featured-slider.touch-active .slider-arrow { opacity: 1; }
.slider-arrow:hover { background-color: var(--accent-color); color: #121212; transform: translateY(-50%) scale(1.1); }
.slider-arrow-left { left: 16px; }
.slider-arrow-right { right: 16px; }
.section-separator { display: flex; align-items: center; justify-content: space-between; margin: 1.5rem 0 1.5rem 0; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; gap: 20px; }
.section-title { font-size: 1.2rem; font-weight: 700; color: var(--primary-text-color); margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.section-arrow { font-size: 1.2rem; color: var(--secondary-text-color); font-weight: 400; transition: transform 0.2s; }
.section-separator:hover .section-arrow { transform: translateX(5px); color: var(--accent-color); }
.sidebar-nav { flex-grow: 1; }
.sidebar-menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sidebar-menu-list li a { display: flex; align-items: center; padding: 10px 14px; border-radius: 7px; text-decoration: none; font-size: 16px; font-weight: 500; color: var(--secondary-text-color); transition: background-color 0.2s ease, color 0.2s ease; }
.sidebar-menu-list li:not(.active) a:hover { background-color: rgba(255, 255, 255, 0.05); color: var(--primary-text-color); }
.sidebar-menu-list li.active a { background-color: var(--surface-color); color: var(--primary-text-color); font-weight: 600; }
.sidebar-menu-list li a i { font-size: 20px; width: 24px; margin-right: 14px; text-align: center; }
.sidebar-menu-separator { padding: 22px 14px 9px 14px; text-transform: uppercase; font-size: 12px; font-weight: 600; color: var(--secondary-text-color); letter-spacing: 0.08em; }
.sidebar-menu-list li a i.fab { font-size: 19px; width: 24px; margin-right: 14px; text-align: center; }
.search-no-results-message { padding: 40px 20px; text-align: center; color: var(--secondary-text-color); grid-column: 1 / -1; background-color: var(--surface-color); border-radius: 12px; margin-top: 20px; }
.pagination { margin: 40px 0 20px 0; width: 100%; }
.nav-links { display: flex; justify-content: center; align-items: center; gap: 4px; }
.nav-links .page-numbers { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; font-weight: 600; color: var(--secondary-text-color); background-color: transparent; min-width: 32px; height: 32px; padding: 0 6px; border-radius: 6px; transition: background-color 0.2s ease, color 0.2s ease; }
.nav-links .page-numbers:not(.current):not(.dots):hover { background-color: var(--surface-color); color: var(--primary-text-color); }
.nav-links .page-numbers.current { background-color: var(--accent-color); color: #121212; font-weight: 700; cursor: default; }
.nav-links .dots { color: var(--secondary-text-color); cursor: default; background-color: transparent !important; }
.nav-links .prev, .nav-links .next { font-size: 12px; color: var(--primary-text-color); }
.single-post-wrapper { width: 100%; max-width: 800px; margin: 0 auto; }
.post-content-box { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.post-content-box .entry-header { padding: 30px 30px 25px; border-bottom: 1px solid var(--border-color); }
.post-content-box .entry-title { font-size: 28px; font-weight: 700; line-height: 1.2; margin: 0 0 25px 0; color: var(--primary-text-color); }
.post-content-box .entry-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; font-size: 15.52px; color: var(--secondary-text-color); }
.post-content-box .entry-meta i { margin-right: 6px; }
.post-date-pill { background-color: #2a2a2a; color: var(--primary-text-color); padding: 6px 14px; border-radius: 999px; font-size: 0.9em; font-weight: 500; }
.post-content-box .entry-content { padding: 30px; font-size: 1.1em; line-height: 1.7; color: var(--primary-text-color); }
.post-content-box .entry-content p, .post-content-box .entry-content ul, .post-content-box .entry-content ol, .post-content-box .entry-content blockquote { margin-bottom: 1.5em; }
.post-content-box .entry-content a { text-decoration: none; text-decoration-color: var(--accent-color); }
.post-content-box .entry-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.5em 0; }
.comments-area { padding: 25px 30px 30px 30px; }

.header-icon-btn { background: none; border: none; color: var(--secondary-text-color); font-size: 20px; cursor: pointer; position: relative; padding: 5px; transition: color 0.2s ease; }
.header-icon-btn:hover { color: var(--primary-text-color); }

.favorites-count {
    position: absolute;
    top: -5px;
    right: -2px;
    background-color: var(--accent-color);
    color: #121212;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: scale(0);
    transition: transform 0.2s ease;
}
.favorites-count.visible { transform: scale(1); }

.favorites-panel { position: fixed; top: 0; right: 0; width: 320px; height: 100%; background-color: #1a1a1a; border-left: 1px solid var(--border-color); z-index: 210; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: flex; flex-direction: column; }
body.favorites-panel-open .favorites-panel { transform: translateX(0); }
.favorites-panel-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }
.favorites-panel-header h3 { margin: 0; font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.favorites-panel-header .header-icon-btn { font-size: 24px; }
.favorites-panel-body { flex-grow: 1; overflow-y: auto; padding: 10px; }
.favorites-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.favorite-item { display: flex; align-items: center; gap: 15px; background-color: var(--surface-color); padding: 10px; border-radius: 8px; position: relative; }
.favorite-item-link { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--primary-text-color); flex-grow: 1; }
.favorite-item-thumb { width: 50px; height: 50px; border-radius: 6px; object-fit: cover; background-color: #333; flex-shrink: 0; }
.favorite-item-title { font-size: 0.9rem; font-weight: 500; line-height: 1.4; margin: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.favorite-item-remove-btn { background: none; border: none; color: var(--secondary-text-color); cursor: pointer; font-size: 16px; padding: 5px; transition: color 0.2s ease; flex-shrink: 0; }
.favorite-item-remove-btn:hover { color: #ff4d4d; }
.favorites-empty { text-align: center; color: var(--secondary-text-color); padding: 40px 20px; font-size: 0.9rem; }
.favorites-panel-footer { padding: 15px; border-top: 1px solid var(--border-color); flex-shrink: 0; }
.favorites-view-all-btn { display: block; width: 100%; text-align: center; padding: 10px; background-color: var(--accent-color); color: #121212; border-radius: 6px; text-decoration: none; font-weight: 600; transition: opacity 0.2s ease; }
.favorites-view-all-btn:hover { opacity: 0.85; }

.post-card-bookmark-btn { position: absolute; top: 12px; right: 12px; z-index: 5; background-color: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: background-color 0.2s, color 0.2s, transform 0.2s; }
.post-card-bookmark-btn:hover { background-color: rgba(255,255,255,0.1); transform: scale(1.1); }
.post-card-bookmark-btn.is-favorite { background-color: #ff456a; color: #fff; border-color: #ff456a; }
.post-card-bookmark-btn.is-favorite .fa-heart { font-weight: 900; }

#favorite-notification { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px); background-color: var(--surface-color); color: var(--primary-text-color); padding: 12px 20px; border-radius: 8px; z-index: 999; font-size: 0.9rem; font-weight: 500; box-shadow: 0 5px 20px rgba(0,0,0,0.3); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
#favorite-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.inline-pagination { display: flex; align-items: center; gap: 12px; }
.inline-pagination-links { display: flex; gap: 5px; }
.inline-pagination-info { font-size: 0.85em; font-weight: 500; color: var(--secondary-text-color); }
.inline-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-size: 11px; color: var(--primary-text-color); background-color: transparent; border: 1px solid var(--border-color); min-width: 28px; height: 28px; border-radius: 6px; transition: all 0.2s ease; }
.inline-pagination .page-numbers:hover { background-color: var(--accent-color); border-color: var(--accent-color); color: #121212; }

.inline-pagination .random-post-btn {
    background-color: var(--accent-color);
    color: #121212;
    border-color: var(--accent-color);
    font-size: 13px;
}

.inline-pagination .random-post-btn:hover {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-color: var(--border-color);
}

.inline-pagination-info { position: relative; cursor: pointer; }
#pagination-input { width: 45px; padding: 2px 5px; font-size: 0.85em; font-weight: 500; text-align: center; color: var(--primary-text-color); background-color: var(--surface-color); border: 1px solid var(--accent-color); border-radius: 4px; box-sizing: border-box; }
#pagination-input::-webkit-outer-spin-button, #pagination-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
#pagination-input[type=number] { -moz-appearance: textfield; }

#scroll-progress-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    z-index: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#scroll-progress-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-ring__circle-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke: var(--progress-color);
}

.scroll-arrow {
    color: var(--primary-text-color);
    font-size: 18px;
    transition: transform 0.2s ease;
}

#scroll-progress-container:hover .scroll-arrow {
    transform: translateY(-2px);
}

#scroll-progress-container.on-left {
    right: auto;
    left: 25px;
}
@media (max-width: 480px) {
    #scroll-progress-container.on-left {
        left: 20px;
    }
}


.favorites-panel-body {
    scrollbar-width: thin;
    scrollbar-color: var(--progress-color) transparent;
}

.favorites-panel-body::-webkit-scrollbar {
    width: 6px;
}

.favorites-panel-body::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.favorites-panel-body::-webkit-scrollbar-thumb {
    background-color: var(--progress-color);
    border-radius: 10px;
    border: 1px solid #1a1a1a;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.header-btn-login {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-text-color);
    padding: 6px 16px 6px 12px;
}

.header-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.header-btn-login i {
    font-size: 18px;
}

.header-btn-favorites,
.header-btn-categories {
    color: var(--secondary-text-color);
}

.header-btn-favorites:hover,
.header-btn-categories:hover {
    background-color: var(--surface-color);
    color: var(--primary-text-color);
}


@keyframes slideOutAndFade {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.favorites-list {
    overflow-x: hidden;
}

.favorite-item.is-deleting {
    animation: slideOutAndFade 0.4s ease-in forwards;
}

.favorites-panel-footer {
    padding: 15px; 
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}
.favorites-panel-footer-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.favorites-clear-all-btn {
    flex-grow: 1;
    padding: 10px;
    background-color: transparent;
    border: 1px solid #555;
    color: var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9em;
}
.favorites-clear-all-btn:hover {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
    color: #fff;
}
.favorites-view-all-btn { 
    flex-grow: 1.5;
    display: block; 
    text-align: center; 
    padding: 10px; 
    background-color: var(--accent-color); 
    color: #121212; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: opacity 0.2s ease; 
}
.favorites-view-all-btn:hover { opacity: 0.85; }


.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.category-filter-item {
    background-color: var(--surface-color);
    color: var(--primary-text-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter-item:hover {
    background-color: #383838;
    border-color: #555;
}

.category-filter-item.is-active {
    background-color: var(--accent-color);
    color: #121212;
    border-color: #f0e68c;
}

.loading-spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    width: 100%;
}
.posts-grid .loading-spinner-container {
    grid-column: 1 / -1;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--progress-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mobile-only { display: none; }

@media (max-width: 786px) {
  .widget-featured-vertical-grid { grid-template-columns: 1fr; }
  .featured-side-col { flex-direction: row; }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 200; 
        top: 0;
        height: 100vh;
    }
    .sidebar.is-open { transform: translateX(0); }
    .main-content-area {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    .mobile-only { display: block; background: none; border: none; color: white; font-size: 22px; cursor: pointer; }
    .posts-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;}

    .main-header {
        padding: 0 20px;
    }
    .header-content-wrapper {
        padding: 0;
    }
    body.favorites-panel-open,
    body.comments-modal-is-open,
    body.related-panel-is-open {
        overflow: hidden;
    }
    .header-btn-login span, 
    .header-btn-favorites span:not(.favorites-count),
    .header-btn-categories span {
        display: none; 
    }
    
    .header-btn-login,
    .header-btn-favorites,
    .header-btn-categories {
        padding: 8px;
    }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .featured-side-col { display: none; }
  .featured-slider { min-height: 200px; }
  .inline-pagination { flex-direction: column; align-items: flex-end; gap: 5px; }
  .inline-pagination-info { font-size: 0.8em; }
}

@media (max-width: 480px) {
    .favorites-panel { width: 100%; }
    
    #scroll-progress-container {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    .scroll-arrow {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
  .pagination .nav-links {
    gap: 2px;
  }
  .nav-links .page-numbers {
    min-width: 28px;
    height: 28px;
    padding: 0 4px;
    font-size: 13px;
  }
  .nav-links .prev,
  .nav-links .next {
      font-size: 11px;
  }
  .nav-links .dots {
      padding: 0 2px;
  }
}


.entry-content .showH {
    margin-bottom: 1.2em;
}

.entry-content details.ac {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.entry-content details.ac > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-text-color);
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease;
}

.entry-content details.ac > summary::-webkit-details-marker {
    display: none;
}

.entry-content details[open].ac > summary {
    background-color: #2a2a2a;
    border-bottom: 1px solid var(--border-color);
}

.entry-content details:not([open]).ac > summary:hover {
    background-color: #252525;
}

.entry-content details.ac > summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9em;
    color: var(--secondary-text-color);
    transition: transform 0.3s ease, color 0.2s ease;
}

.entry-content details[open].ac > summary::after {
    transform: rotate(180deg);
    color: var(--primary-text-color);
}

.entry-content details.ac > div {
    padding: 20px;
    background-color: var(--surface-color);
}

.entry-content .psImg.grImg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.entry-content .psImg.grImg img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0;
    transition: transform 0.2s ease;
}

.entry-content .psImg.grImg img:hover {
    transform: scale(1.05);
}

.entry-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    margin: 5px;
    background: var(--progress-color);
    color: #121212;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.entry-content .button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.entry-content .button .icon.dl::before {
    content: '\f0ed';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

.download-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1em;
}

.entry-content blockquote {
    border-left: 4px solid var(--progress-color);
    padding-left: 1.5em;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    color: var(--secondary-text-color);
}


.entry-content .spoilers-slider-post {
    position: relative;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1a1a1a;
    margin: 1.5em 0;
}

.entry-content .spoilers-slider-post .featured-card {
    min-height: 0;
    padding: 0;
    cursor: default;
}

.entry-content .spoilers-slider-post .slider-arrow {
    opacity: 1;
}

.entry-content .spoilers-slider-post .featured-card-img {
    border-radius: 12px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: none;
}

.entry-content .spoilers-slider-post .featured-card:hover .featured-card-img {
    transform: none;
}

.entry-content .spoilers-slider-post .featured-card-content,
.entry-content .spoilers-slider-post .featured-card::after {
    display: none;
}


@media (max-width: 768px) {
    body.single-post .main-content-area {
        padding: 20px 2px; 
    }
}

.entry-content .spoilers-slider-post {
    position: relative;
    
    height: 200px; 
    
    max-height: 85vh; 
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1a1a1a;
    margin: 1.5em 0;
}



@media (max-width: 768px) {
    body.single-post .main-content-area {
        padding: 20px 2px; 
    }
}

.entry-content .spoilers-slider-post {
    position: relative;
    
    height: 200px; 
    
    max-height: 85vh; 
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #1a1a1a;
    margin: 1.5em 0;
}



.entry-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.entry-categories .category-filter-item {
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}
.entry-categories .category-filter-item:hover {
    background-color: var(--accent-color);
    color: #121212;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .entry-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .entry-categories::-webkit-scrollbar {
        display: none;
    }
}

.post-featured-image-container {
    margin-top: 20px;
    margin-bottom: 5px;
    position: relative;
}
.single-post-featured-image {
    display: block;
    max-width: calc(100% - 60px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}


.header-search-container {
    position: relative;
    flex-grow: 15;
    margin: 0 1px;
    margin-left: 160px;
}

.header-search-form {
    width: 100%;
}

#search-toggle-btn {
    color: var(--secondary-text-color);
    padding: 8px 12px;
    justify-content: flex-start;
    width: 20%;
}
#search-toggle-btn:hover {
    background-color: var(--surface-color);
    color: var(--primary-text-color);
}

#search-input-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 38px;
    width: 0;
    
    background-color: var(--surface-color);
    border-radius: 8px;
    
    display: flex;
    align-items: center;
    padding: 0 8px;
    
    opacity: 0;
    visibility: hidden;
    transition: width 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

.header-search-input {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--primary-text-color);
    font-size: 15px;
    outline: none;
}

.header-search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}

#header-search-close-btn {
    display: none;
    flex-shrink: 0;
    background: transparent;
    padding: 0 5px;
}

#header-search-container.is-expanded #search-input-wrapper {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

#header-search-container.is-expanded #search-toggle-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


@media (max-width: 768px) {
    #search-toggle-btn span {
        display: none;
    }
    #search-toggle-btn {
        padding: 8px;
    }
    .header-search-container {
        margin: 0 10px;
    }
}


.post-content-box {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.comments-trigger-wrapper {
    margin-bottom: 0px;
}
.comments-trigger-button {
    width: 100%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-top: none;
    color: var(--primary-text-color);
    padding: 0px 30px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom-left-radius: 16px; 
    border-bottom-right-radius: 16px;
    border-top-left-radius: 0;   
    border-top-right-radius: 0;
}
.comments-trigger-button:hover {
    background-color: #2a2a2a;
    color: var(--accent-color);
}

.comments-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
body.comments-modal-is-open { overflow: hidden; }
.comments-modal-content { background-color: #1a1a1a; border: 1px solid var(--border-color); border-radius: 12px; max-width: 700px; width: 100%; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: scale(0.95); opacity: 0; animation: zoomInComments 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
@keyframes zoomInComments { to { transform: scale(1); opacity: 1; } }
.comments-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 25px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }
.comments-modal-title { font-size: 1.1rem; font-weight: 600; margin: 0; }
.comments-modal-close-btn { background: none; border: none; color: var(--secondary-text-color); font-size: 28px; line-height: 1; cursor: pointer; padding: 0; transition: color 0.2s ease, transform 0.2s ease; }
.comments-modal-close-btn:hover { color: var(--primary-text-color); transform: rotate(90deg); }
.comments-modal-body { padding: 5px 25px 25px 25px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--progress-color) transparent; }
.comments-modal-body::-webkit-scrollbar { width: 6px; }
.comments-modal-body::-webkit-scrollbar-track { background: transparent; }
.comments-modal-body::-webkit-scrollbar-thumb { background-color: var(--progress-color); border-radius: 10px; }


#comments { margin-top: 20px; }

.comment-list, .comment-list .children { list-style: none; padding: 0; margin: 0; }
.comment-list > li.comment-item-wrapper { margin-bottom: 25px; }
.comment-list > li:last-child { margin-bottom: 0; }
li.comment-item-wrapper { align-items: flex-start; gap: 15px; position: relative; }
.comment-main-content { display: flex; align-items: flex-start; gap: 15px; width: 100%; }

.comment-main-content > .avatar {
    flex-shrink: 0;
    margin-top: 5px;
    border-radius: 50%;
}

.comment-body { flex-grow: 1; background-color: var(--surface-color); padding: 20px 15px; border-radius: 10px; }
.comment-list .children {
    width: 100%;
    margin-top: 15px;
    padding-left: 20px;
    position: relative;
}
.comment-list .children > li.comment-item-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -21px;
    width: 20px;
    height: 35px;
    border-left: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    border-bottom-left-radius: 8px;
}
.comment-list .children li { margin-bottom: 20px; }
.comment-list .children li:last-child { margin-bottom: 0; }

.comment-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.comment-author { display: flex; align-items: center; gap: 0; }
.comment-author .fn, .comment-author .fn a { font-weight: 700; font-size: 1.1em; color: var(--primary-text-color); text-decoration: none;}
.comment-metadata, .comment-metadata a { font-size: 0.85em; color: var(--secondary-text-color); text-decoration: none; }
.comment-metadata .edit-link a { color: var(--secondary-text-color); }
.comment-content { color: var(--primary-text-color); line-height: 1.6; }
.comment-content p:last-child { margin-bottom: 0; }
.reply { text-align: right; margin-top: 10px; }
.reply .comment-reply-link { font-size: 0.9em; font-weight: 600; color: var(--accent-color); padding: 6px 12px; border: 1px solid var(--border-color); border-radius: 6px; transition: all 0.2s ease; }
.reply .comment-reply-link:hover { background-color: var(--accent-color); color: #121212; border-color: var(--accent-color); }

#respond { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border-color); }
#reply-title { font-size: 1.2rem; margin-bottom: 1em; }
#reply-title small { font-size: 0.7em; margin-left: 10px; }
#reply-title small a { color: var(--secondary-text-color); }
#respond p { margin-bottom: 15px; }
#respond label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9em; color: var(--secondary-text-color); }
#respond input[type="text"], #respond input[type="email"], #respond textarea { width: 100%; background-color: #121212; border: 1px solid var(--border-color); border-radius: 6px; padding: 10px 12px; color: var(--primary-text-color); font-size: 1em; transition: border-color 0.2s ease; box-sizing: border-box; }
#respond input[type="text"]:focus, #respond input[type="email"]:focus, #respond textarea:focus { outline: none; border-color: var(--accent-color); }
#respond .comment-form-cookies-consent { display: flex; align-items: center; gap: 10px; }
#respond .comment-form-cookies-consent input { width: auto; margin: 0; }
#respond .comment-form-cookies-consent label { margin: 0; font-weight: 400; font-size: 0.85em; }
.form-submit.with-login-button { display: flex; gap: 10px; align-items: center; }
.form-submit.with-login-button > * { flex: 1; }
#respond .form-submit input[type="submit"] { background-color: var(--progress-color); color: #121212; border: none; border-radius: 6px; padding: 10px 25px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; }
#respond .form-submit input[type="submit"]:hover { filter: brightness(1.1); }
#respond .comment-login-button { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.4); color: var(--primary-text-color); padding: 9px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9em; transition: all 0.2s ease; text-align: center; }
#respond .comment-login-button:hover { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.8); }
.logged-in-as { background-color: var(--surface-color); padding: 15px; border-radius: 8px; font-size: 0.9em; }
.logged-in-as a { color: var(--accent-color); font-weight: 600; }
.pagination.comments-pagination { margin: 30px 0 10px 0; }


.post-content-box .entry-content {
    font-size: 1em;
    line-height: 1.65;
}

.comment-content {
    font-size: 0.875em;
}

.post-content-box .entry-title {
    font-size: 24px;
}

.post-card-subtitle-home {
    font-size: 1em;
    line-height: 1.35;
}

.post-card-excerpt {
    font-size: 0.875em;
}

.post-card-meta {
    font-size: 0.8125em;
}

.post-content-box .entry-meta {
    font-size: 14px;
}

.entry-content details.ac > summary {
    font-size: 1em;
    padding: 12px 20px;
}

.entry-content .button {
    font-size: 14px;
    padding: 10px 22px;
}

.comments-trigger-button {
    font-size: 1em;
    padding: 30px 30px;
}

.comments-modal-title {
    font-size: 1.0rem;
}

.comment-author .fn, .comment-author .fn a {
    font-size: 1.0em;
}

.comment-metadata, .comment-metadata a {
    font-size: 0.8125em;
}

.reply .comment-reply-link {
    font-size: 0.875em;
    padding: 5px 10px;
}

#reply-title {
    font-size: 1.1rem;
}

#respond label {
    font-size: 0.875em;
}

#respond .form-submit input[type="submit"], 
#respond .comment-login-button {
    font-size: 14px;
    padding-top: 9px;
    padding-bottom: 9px;
}

.header-btn {
    font-size: 14px;
    gap: 6px;
    padding: 7px 10px;
}
.header-btn-login {
    padding: 6px 14px 6px 10px;
}

@media (max-width: 768px) {
    .header-btn {
        font-size: 18px;
        gap: 6px;
        padding: 7px 10px;
    }
}


@media (max-width: 768px) {
    .comments-modal-overlay {
        padding: 0;
        align-items: flex-start;
    }

    .comments-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        border: none;
        
        transform: none;
        animation: slideInFromBottom 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .comments-modal-header {
        padding-top: 25px;
    }
    .comments-modal-body {
        padding-left: 1px;
        padding-right: 1px;
    }	
    .comment-main-content > .avatar {
        width: 36px;
        height: 36px;
    }

    .comment-main-content {
        gap: 12px;
    }

    .comment-list .children {
        margin-left: 0;
        padding-left: 20px;
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.comments-modal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comments-sort-button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--secondary-text-color);
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comments-sort-button i {
    font-size: 14px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.comments-sort-button:hover {
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    color: var(--primary-text-color);
}

.comments-sort-button:hover i {
    transform: rotate(270deg);
}

.comments-sort-button:hover {
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    color: var(--primary-text-color);
}


.comment-main-content {
    flex-wrap: wrap;
}

.comment-main-content > #respond {
    flex-basis: 100%;
    width: 100%;
    margin-top: 20px;
    
    border-top: none;
    padding-top: 0;

    margin-left: 63px; 
}

.comment-main-content > #respond #reply-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .comment-main-content > #respond {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .reply {
        text-align: left;
    }
}


.single-layout-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.single-post-wrapper {
    flex: 1;
    min-width: 0;
}

.related-posts-sidebar-desktop {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}

.related-posts-widget {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.related-posts-title {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 20px 20px 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts-list {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post-item .related-post-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.related-post-item .related-post-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.related-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #333;
}

.related-post-title {
    font-size: 0.875em;
    font-weight: 600;
    color: var(--primary-text-color);
    line-height: 1.4;
    margin: 0 0 5px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-post-date {
    font-size: 0.8em;
    color: var(--secondary-text-color);
}

.related-posts-trigger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    width: 25px;
    height: 25px;
    background-color: var(--surface-color);
    color: var(--primary-text-color);
    
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;

    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.related-posts-trigger:hover {
    background-color: var(--accent-color);
    color: #121212;
}

.related-posts-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: #1a1a1a;
    border-left: 1px solid var(--border-color);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

body.related-panel-is-open .related-posts-panel {
    transform: translateX(0);
}

body.related-panel-is-open {
    overflow: hidden;
}

.related-posts-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.related-posts-panel-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.related-posts-panel-header .header-icon-btn {
    font-size: 24px;
}

.related-posts-panel-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--progress-color) transparent;
}
.related-posts-panel-body::-webkit-scrollbar { width: 6px; }
.related-posts-panel-body::-webkit-scrollbar-track { background: transparent; }
.related-posts-panel-body::-webkit-scrollbar-thumb { background-color: var(--progress-color); border-radius: 10px; }


.desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}


@media (max-width: 786px) {
    .single-layout-container {
        flex-direction: column;
        max-width: 800px;
    }

    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
    }

    .related-posts-panel {
        width: 100%;
        max-width: none;
        border-left: none;
        border-radius: 0;
        transform: translateX(100%);
    }

    body.related-panel-is-open .related-posts-panel {
        transform: translateX(0);
    }
    
    .related-posts-panel-header {
        padding-top: 25px;
    }
}


@media (max-width: 786px) {

    .related-post-title {
        font-size: 0.685em;
    }

    .related-post-date {
        font-size: 0.6em;
    }
    
    .related-post-thumb {
        width: 50px;
        height: 50px;
    }

}


.section-header-main-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
}

.content-filter-toggle {
    display: flex;
    align-items: center;
}

.filter-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

#filter-toggle-checkbox {
    display: none;
}

.filter-toggle-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text-color);
    transition: color 0.2s ease;
}

.filter-toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    transition: background-color 0.3s ease;
}

.filter-toggle-switch::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondary-text-color);
    top: 2px;
    left: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#filter-toggle-checkbox:checked + .filter-toggle-switch {
    background-color: var(--progress-color);
    border-color: var(--progress-color);
}

#filter-toggle-checkbox:checked + .filter-toggle-switch::before {
    transform: translateX(19px);
    background-color: #121212;
}

#filter-toggle-checkbox:checked ~ .filter-toggle-text {
    color: var(--primary-text-color);
}

.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.filter-modal-content {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomInComments 0.3s forwards;
}

.filter-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.filter-modal-text {
    color: var(--secondary-text-color);
    line-height: 1.6;
    font-size: 0.95em;
    margin: 0 0 25px 0;
}

.filter-modal-actions {
    display: flex;
    gap: 15px;
}

.filter-modal-btn {
    flex: 1;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-modal-btn-cancel {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
}
.filter-modal-btn-cancel:hover {
    background-color: var(--border-color);
}

.filter-modal-btn-confirm {
    background-color: var(--progress-color);
    color: #121212;
}
.filter-modal-btn-confirm:hover {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .section-header-main-content {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .section-header-main-content .section-title {
        order: 2;
    }

    .section-header-main-content .content-filter-toggle {
        order: 1;
    }
    
    .filter-toggle-text {
        display: none;
    }
}


.rating-summary-top {
    text-align: right;
    margin-bottom: 15px;
}

.rating-summary-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
    padding: 5px 12px;
    background-color: var(--surface-color);
    border-radius: 6px;
    display: inline-block;
}

.rating-overwhelmingly-positive,
.rating-very-positive,
.rating-mostly-positive {
    color: #66c0f4;
}

.rating-mixed {
    color: #b99e23;
}

.rating-mostly-negative {
    color: #c75646;
}

.rating-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.rating-vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2a2a2a;
    border: 1px solid transparent;
    color: var(--secondary-text-color);
    padding: 4px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.rating-vote-btn:hover {
    color: var(--primary-text-color);
    background-color: #333;
}

.rating-vote-btn .vote-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-text-color);
}

.rating-vote-btn.is-active[data-vote-type="positive"] {
    background-color: #2a4e69;
    color: #66c0f4;
}

.rating-vote-btn.is-active[data-vote-type="positive"] .vote-count {
    color: #66c0f4;
}

.rating-vote-btn.is-active[data-vote-type="negative"] {
    background-color: #4b2f2f;
    color: #c75646;
}
.rating-vote-btn.is-active[data-vote-type="negative"] .vote-count {
    color: #c75646;
}



.content-blocked-message {
    padding: 60px 40px;
    text-align: center;
    color: var(--secondary-text-color);
    background-color: var(--surface-color);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px solid var(--border-color);
}

.content-blocked-message i {
    font-size: 48px;
    color: var(--secondary-text-color);
    margin-bottom: 25px;
    display: block;
}

.content-blocked-message h2 {
    font-size: 1.5rem;
    color: var(--primary-text-color);
    margin: 0 0 15px 0;
}

.content-blocked-message p {
    line-height: 1.7;
    margin-bottom: 0;
}

.content-blocked-message strong {
    color: var(--progress-color);
    font-weight: 600;
}



.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

div.lazyload[data-bg] {
    background-color: var(--surface-color);
}

img.lazyload {
    background-color: #2c2c2c;
    min-height: 50px;
}


.post-card-gallery > div {
    position: relative;
    overflow: hidden;
}

.post-card-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #2c2c2c;
}

.single-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #333;
}


.featured-card .featured-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-color: #2c2c2c;
    border-radius: 12px;
    
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-img {
    transform: scale(1.05);
}


.entry-content .spoilers-slider-post .featured-card-img {
    object-fit: contain;
    transition: none;
    transform: none;
}

.entry-content .spoilers-slider-post .featured-card:hover .featured-card-img {
    transform: none;
}


.subs-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    position: relative;
    z-index: 2;
    margin-top: 300px;
}

.subs-header-banner {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: 300px;
    background-image: url('../images/subs/banner.webp');
    background-size: cover;
    background-position: center 14%;
    z-index: 1;
}

.subs-profile-section {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -85px;
}

.subs-profile-logo-wrapper {
    display: inline-block;
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background-color: var(--surface-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.subs-profile-logo-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.subs-profile-details {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    width: 90%;
    box-sizing: border-box;
    margin: 20px auto 0 auto;
}

.subs-profile-details h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.subs-profile-details p {
    color: var(--secondary-text-color);
    margin: 5px 0 0 0;
}
.subs-tiers-section {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.subs-tier-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subs-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.subs-tier-content {
    padding: 20px;
    flex-grow: 1;
}

.subs-tier-image {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #2c2c2c;
}

.subs-tier-card h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.subs-tier-price {
    display: flex;
    align-items: baseline;
    margin: 10px 0 20px 0;
    color: var(--primary-text-color);
}

.subs-tier-price .price-amount {
    font-size: 1.4em;
    font-weight: 700;
}

.subs-tier-price .price-period {
    font-size: 1em;
    color: var(--secondary-text-color);
    margin-left: 5px;
}

.subs-tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    color: var(--secondary-text-color);
}

.subs-tier-features li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.5;
}

.subs-tier-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--progress-color);
}

.subs-tier-button {
    display: block;
    margin: 0 20px 20px 20px;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.subs-tier-button:hover {
    background-color: var(--progress-color);
    border-color: var(--progress-color);
    color: #121212;
}

@media (max-width: 768px) {
    .subs-page-container {
        margin-top: 180px; 
    }

    .subs-header-banner {
        height: 180px;
    }
    
    .subs-profile-section {
        margin-top: -65px;
    }
    
    .subs-profile-logo-wrapper {
        width: 98px;
        height: 98px;
    }
    
    .subs-profile-logo-wrapper img {
        width: 90px;
        height: 90px;
    }

    .subs-dots-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 25px; 
        margin-bottom: 15px; 
    }

    .subs-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--surface-color);
        border: 1px solid var(--border-color);
        padding: 0;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .subs-dot.active {
        background-color: var(--progress-color);
        border-color: var(--progress-color);
        transform: scale(1.2);
    }
    
    .subs-tiers-section {
        position: relative;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 70%;
        gap: 15px;
        
        overflow-x: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        
        padding: 10px 0 20px 0;
        margin: 0;
    }

    .subs-tiers-section::before,
    .subs-tiers-section::after {
        content: '';
        width: 15px;
    }

    .subs-tiers-section::-webkit-scrollbar {
        display: none;
    }

    .subs-tier-card {
        scroll-snap-align: center;
        min-height: 560px;
    }
    
    .subs-tier-features {
        font-size: 0.85em;
    }

    .subs-tier-features li {
        text-wrap: pretty;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}


@media (max-width: 768px) {
    body.page-template-template-creadores .main-content-area {
        padding-left: 0;
        padding-right: 0;
    }

    body.page-template-template-creadores .subs-tiers-section {
        margin-left: -20px;
        margin-right: -20px;
    }
}

.pmpro .pmpro_card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
}

.pmpro .pmpro_card_content {
    padding: 25px 30px;
}

.pmpro .pmpro_form_heading,
.pmpro .pmpro_card_title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.pmpro_section > .pmpro_form_heading {
    padding: 0;
    border: none;
    margin-bottom: 20px;
}

.pmpro p, .pmpro_level_name_text, .pmpro_level_cost_text, .pmpro_level_expiration_text, .pmpro_account_loggedin {
    color: var(--primary-text-color);
    line-height: 1.6;
}

.pmpro_account_loggedin a {
    color: var(--accent-color);
    font-weight: 600;
}

.pmpro .pmpro_form_label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--secondary-text-color);
}

.pmpro .pmpro_form_input-text,
.pmpro .pmpro_form_input-email,
.pmpro .pmpro_form_input-select,
.pmpro .pmpro_form_input[type="text"],
.pmpro .pmpro_form_input[type="email"],
.pmpro .pmpro_form_input[type="tel"],
.pmpro .pmpro_form_input[type="password"],
.pmpro select.pmpro_form_input {
    width: 100%;
    background-color: #121212;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--primary-text-color);
    font-size: 1em;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    height: 42px;
}

.pmpro .pmpro_form_input:focus,
.pmpro select.pmpro_form_input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.pmpro .pmpro_cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .pmpro .pmpro_cols-2 {
        grid-template-columns: 1fr;
    }
}


.pmpro .pmpro_form_submit {
    text-align: center;
    margin-top: 20px;
}

.pmpro .pmpro_btn.pmpro_btn-submit-checkout {
    display: inline-block;
    width: auto;
    padding: 12px 40px;
    background: var(--progress-color);
    color: #121212;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.pmpro .pmpro_btn.pmpro_btn-submit-checkout:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.pmpro .pmpro_message,
.pmpro .pmpro_error,
.pmpro .pmpro_success {
    padding: 15px 20px;
    margin: 0 0 25px 0;
    border-radius: 8px;
    line-height: 1.6;
    border: 1px solid;
}

.pmpro .pmpro_message a { color: inherit; font-weight: 600; text-decoration: underline; }
.pmpro .pmpro_message { background-color: rgba(102, 192, 244, 0.1); border-color: #66c0f4; color: #8bcff6; }
.pmpro .pmpro_error { background-color: rgba(199, 86, 70, 0.1); border-color: #c75646; color: #d17a6e; }
.pmpro .pmpro_success { background-color: rgba(94, 185, 94, 0.1); border-color: #5eb95e; color: #88c988; }

.pmpro .select2-container--default .select2-selection--single { background-color: #121212; border: 1px solid var(--border-color); border-radius: 6px; height: 42px; }
.pmpro .select2-container--default.select2-container--open .select2-selection--single { border-color: var(--accent-color); }
.pmpro .select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--primary-text-color); line-height: 40px; padding-left: 12px; }
.pmpro .select2-container--default .select2-selection--single .select2-selection__arrow { height: 40px; color: var(--secondary-text-color); }
.pmpro .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: var(--secondary-text-color) transparent transparent transparent; border-width: 6px 5px 0 5px; }
.pmpro .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent var(--secondary-text-color) transparent; border-width: 0 5px 6px 5px; }
.select2-dropdown { background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 6px; }
.select2-search--dropdown .select2-search__field { background-color: #121212; border: 1px solid var(--border-color); color: var(--primary-text-color); }
.select2-results__option { color: var(--primary-text-color); }
.select2-results__option--highlighted, .select2-results__option--selected { background-color: var(--progress-color) !important; color: #121212 !important; }

.pmpro .pmpro_table { width: 100%; border-collapse: collapse; margin: 25px 0; background-color: var(--surface-color); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.pmpro .pmpro_table th, .pmpro .pmpro_table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border-color); }
.pmpro .pmpro_table th { background-color: #2a2a2a; font-weight: 700; color: var(--primary-text-color); }
.pmpro .pmpro_table tbody tr:last-child td { border-bottom: none; }
.pmpro .pmpro_table tbody tr:hover { background-color: rgba(255, 255, 255, 0.03); }

@media (max-width: 600px) {
    .select2-dropdown {
        width: 95vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        max-width: 400px;
    }
}



.pmpro .pmpro_card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    padding: 25px 30px;
}

.pmpro .pmpro_form_fieldset {
    border: none;
    padding: 0;
    margin: 0;
}


.pmpro .pmpro_card_content {
    padding: 0;
}

.pmpro .pmpro_form_heading,
.pmpro .pmpro_card_title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}


.pmpro_login_wrap {
    font-size: 14px;
}

.pmpro_login_wrap .login-username input[type="text"],
.pmpro_login_wrap .login-password input[type="password"],
.pmpro_login_wrap .login-password input[type="text"] {
    width: 100%;
    background-color: #121212;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    color: var(--primary-text-color);
    font-size: 1em;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    margin-top: 8px;
}

.pmpro_login_wrap .login-username input[type="text"]:focus,
.pmpro_login_wrap .login-password input[type="password"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.pmpro_login_wrap .login-username label,
.pmpro_login_wrap .login-password label {
    font-weight: 600;
    color: var(--secondary-text-color);
}

.pmpro_login_wrap .login-remember {
    margin-top: 15px;
    margin-bottom: 25px;
}

.pmpro_login_wrap .login-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-text-color);
    font-weight: 500;
    cursor: pointer;
}

.pmpro_login_wrap .login-remember input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #121212;
    margin: 0;
    font: inherit;
    color: var(--primary-text-color);
    width: 1.15em;
    height: 1.15em;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}

.pmpro_login_wrap .login-remember input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--progress-color);
    background-color: CanvasText;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.pmpro_login_wrap .login-remember input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.pmpro_login_wrap .login-submit {
    text-align: left;
}

.pmpro_login_wrap .login-submit input[type="submit"] {
    display: inline-block;
    width: auto;
    padding: 12px 45px;
    background: var(--progress-color);
    color: #121212;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.pmpro_login_wrap .login-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.pmpro_card_actions {
    text-align: left;
    padding-top: 20px;
}
.pmpro_card_actions a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.2s ease;
}
.pmpro_card_actions a:hover {
    color: var(--accent-color);
}


.pmpro_form_field-password-toggle {
    margin-top: 10px;
}

.pmpro_form_field-password-toggle button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-text-color);
    transition: color 0.2s ease;
}

.pmpro_form_field-password-toggle button:hover {
    color: var(--accent-color);
}

.pmpro_form_field-password-toggle .pmpro_form_field-password-toggle-state {
    font-size: 0.9em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pmpro_login_wrap .login-submit input[type="submit"] {
        width: 100%;
    }
}


.pmpro .pmpro_lost_password_wrap .pmpro_form_submit {
    text-align: center;
    margin-top: 20px;
}

.pmpro .pmpro_lost_password_wrap .pmpro_btn.pmpro_btn-submit {
    display: inline-block;
    width: auto;
    padding: 12px 40px;
    background: var(--progress-color);
    color: #121212;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.pmpro .pmpro_lost_password_wrap .pmpro_btn.pmpro_btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


.pmpro .pmpro_btn-submit-checkout-paypal {
    background-color: #0070BA;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
}

.pmpro .pmpro_btn-submit-checkout-paypal:hover {
    background-color: #005ea6;
    transform: translateY(-2px);
    filter: none;
}

.pmpro .pmpro_btn-submit-checkout-paypal-image {
    height: 20px;
    vertical-align: middle;
}


.pmpro .pmpro_form_submit {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.pmpro .pmpro_btn {
    padding: 9px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pmpro .pmpro_btn-submit-update-profile {
    background-color: var(--progress-color);
    color: #121212;
    border-color: var(--progress-color);
}

.pmpro .pmpro_btn-submit-update-profile:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.pmpro .pmpro_btn-cancel {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--primary-text-color);
}

.pmpro .pmpro_btn-cancel:hover {
    background-color: var(--border-color);
}


.pmpro_form_field-password-toggle {
    margin-top: 12px;
    text-align: left;
}

.pmpro_form_field-password-toggle .pmpro_btn {
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--secondary-text-color);
    transition: color 0.2s ease;
}

.pmpro_form_field-password-toggle .pmpro_btn:hover {
    color: var(--accent-color);
}

.pmpro_form_field-password-toggle .pmpro_form_field-password-toggle-state {
    font-size: 0.9em;
    font-weight: 500;
    white-space: nowrap;
}

.pmpro_form_field-password-toggle .pmpro_icon svg {
    vertical-align: middle;
    flex-shrink: 0;
}


.cta-membership-widget {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    padding: 20px 25px;
    margin-top: 20px;
}

.cta-membership-widget .cta-icon {
    font-size: 24px;
    color: var(--progress-color);
    margin-bottom: 12px;
    display: block;
}

.cta-membership-widget .cta-title {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--primary-text-color);
}

.cta-membership-widget .cta-text {
    color: var(--secondary-text-color);
    line-height: 1.5;
    font-size: 0.9em;
    max-width: 500px;
    margin: 0 auto 20px auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.cta-buttons .cta-btn {
    flex: 1;
    text-align: center;
    padding: 9px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.cta-buttons .cta-btn-primary {
    background-color: var(--progress-color);
    color: #121212;
}

.cta-buttons .cta-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.cta-buttons .cta-btn-secondary {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--primary-text-color);
}

.cta-buttons .cta-btn-secondary:hover {
    background-color: var(--border-color);
}


#cta-floating-widget {
    position: fixed;
    bottom: 20px;
    z-index: 900;
    
    left: 20px;
    right: 20px;
    width: auto;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;

    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-out;

    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
}

#cta-floating-widget.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cta-floating-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#cta-floating-widget .cta-title {
    font-size: 1.1em;
    margin: 0;
    padding: 0;
    border: none;
}

#cta-floating-widget .cta-icon {
    font-size: 20px;
    margin: 0 10px 0 0;
    display: inline;
}

.cta-floating-close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--secondary-text-color);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.cta-floating-close-btn:hover {
    color: var(--primary-text-color);
    transform: scale(1.1);
}

#cta-floating-widget .cta-text {
    font-size: 0.95em;
    margin-bottom: 20px;
    text-align: center;
}

#cta-floating-widget .cta-buttons {
    gap: 12px;
}

#cta-floating-widget .cta-btn {
    flex-grow: 1;
}

@media (max-width: 400px) {
    #cta-floating-widget .cta-buttons {
        flex-direction: column;
    }
}


.pmpro #pass-strength-result {
    text-align: center;
    font-weight: 600;
    font-size: 0.85em;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-color: var(--surface-color);
    color: var(--secondary-text-color);
}

.pmpro #pass-strength-result.short,
.pmpro #pass-strength-result.bad {
    background-color: rgba(199, 86, 70, 0.15);
    border-color: rgba(199, 86, 70, 0.5);
    color: #d17a6e;
}

.pmpro #pass-strength-result.good {
    background-color: rgba(185, 158, 35, 0.15);
    border-color: rgba(185, 158, 35, 0.5);
    color: #d9c054;
}

.pmpro #pass-strength-result.strong {
    background-color: rgba(102, 192, 244, 0.15);
    border-color: rgba(102, 192, 244, 0.5);
    color: #66c0f4;
}

.pmpro .pmpro_message.pmpro_success {
    background-color: rgba(94, 185, 94, 0.1);
    border-color: #5eb95e;
    color: #88c988;
}
.pmpro .pmpro_message.pmpro_success a {
	color: #9ee09e;
	font-weight: 600;
}

.pmpro .pmpro_message.pmpro_error {
    background-color: rgba(199, 86, 70, 0.1);
    border-color: #c75646;
    color: #d17a6e;
}

.pmpro_form_submit {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.pmpro .pmpro_btn.pmpro_btn-submit-change-password {
    background-color: var(--progress-color);
    color: #121212;
    border: 1px solid var(--progress-color);
}
.pmpro .pmpro_btn.pmpro_btn-submit-change-password:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.pmpro .pmpro_btn.pmpro_btn-cancel {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
}
.pmpro .pmpro_btn.pmpro_btn-cancel:hover {
    background-color: var(--border-color);
}

.pmpro_form_field-password-toggle .pmpro_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--secondary-text-color);
    transition: color 0.2s ease;
}
.pmpro_form_field-password-toggle .pmpro_btn:hover {
    color: var(--accent-color);
}
.pmpro_form_field-password-toggle .pmpro_icon svg {
    stroke: currentColor;
}


.pmpro .pmpro_card_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.pmpro .pmpro_card_actions span.pmpro_card_action_separator {
    display: none;
}

.pmpro .pmpro_card_actions a {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.pmpro .pmpro_card_actions a:hover {
    background-color: var(--surface-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}


.pmpro .pmpro_heading-with-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pmpro .pmpro_heading-with-avatar .avatar {
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .pmpro_login_wrap .pmpro_actions_nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .pmpro_login_wrap .pmpro_actions_nav span.pmpro_card_action_separator {
        display: inline;
        color: var(--secondary-text-color);
        flex-shrink: 0;
    }

    .pmpro_login_wrap .pmpro_actions_nav a {
        flex-grow: 1;
        background-color: transparent;
        border: 1px solid var(--border-color);
        color: var(--primary-text-color);
        padding: 10px 5px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.8em;
        text-align: center;
        white-space: nowrap;
        transition: all 0.2s ease;
    }

    .pmpro_login_wrap .pmpro_actions_nav a:hover {
        background-color: var(--surface-color);
        border-color: var(--accent-color);
    }
}


.comments-trigger-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.cta-trigger-button {
    position: absolute;
    z-index: 2;

    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
    font-size: 22px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-trigger-button:hover {
    background-color: var(--progress-color);
    border-color: var(--progress-color);
    color: #121212;
    transform: translateY(-50%) scale(1.05);
}

#open-comments-modal.comments-trigger-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;

    padding-left: 65px; 
}

@media (min-width: 769px) {
    .comments-trigger-wrapper {
        margin-bottom: 0px;
    }
}


.cta-membership-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: #1a1a1a;
    border-left: 1px solid var(--border-color);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

body.cta-panel-is-open .cta-membership-panel {
    transform: translateX(0);
}

body.cta-panel-is-open {
    overflow: hidden;
}

.cta-membership-panel .related-posts-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.cta-membership-panel .related-posts-panel-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-membership-panel .related-posts-panel-header .header-icon-btn {
    font-size: 24px;
}

.cta-membership-panel .related-posts-panel-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--progress-color) transparent;
}

.cta-membership-panel .related-posts-panel-body::-webkit-scrollbar { width: 6px; }
.cta-membership-panel .related-posts-panel-body::-webkit-scrollbar-track { background: transparent; }
.cta-membership-panel .related-posts-panel-body::-webkit-scrollbar-thumb { background-color: var(--progress-color); border-radius: 10px; }

.cta-membership-panel .cta-membership-widget {
    margin-top: 0;
}

@media (max-width: 786px) {
    .cta-membership-panel {
        width: 100%;
        max-width: none;
        border-left: none;
        border-radius: 0;
    }

    .cta-membership-panel .related-posts-panel-header {
        padding-top: 25px;
    }
}


.cta-membership-panel .related-posts-panel-body {
    display: flex;
    align-items: center;
    padding: 20px;
}

.cta-membership-panel .cta-membership-widget {
    flex-grow: 1;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-membership-panel .cta-icon {
    font-size: 22px;
    margin-bottom: 15px;
}

.cta-membership-panel .cta-title {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.cta-membership-panel .cta-text {
    font-size: 0.0.875em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.cta-membership-panel .cta-btn {
    font-size: 0.875em;
    padding: 8px 13px;
}


.cta-trigger-button {
    box-shadow: 0 0 12px rgba(200, 135, 224, 0.5), 
                inset 0 0 5px rgba(200, 135, 224, 0.3);

    color: var(--progress-color);
}

.cta-trigger-button::after {
    content: '';
    position: absolute;
    z-index: -1;

    inset: -3px; 
    border-radius: 50%;
    
    border: 2px solid rgba(200, 135, 224, 0.7);
    
    animation: pulseGlow 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.cta-trigger-button:hover {
    box-shadow: 0 0 20px rgba(200, 135, 224, 0.8);
}


#top-info-banner {
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    
    background: linear-gradient(to top, #232323, transparent 10%), #1e1e1ee8;

    border: 1px solid var(--border-color);
    border-radius: 12px;
    
    padding: 12px 60px 12px 20px;
    margin: 0 auto 20px auto;
    max-width: 1200px;
    width: 100%;
}

.info-banner-slides-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.info-banner-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-banner-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-sizing: border-box;
    padding: 0 0px;
}

.info-banner-text {
    margin: 0;
    color: var(--primary-text-color);
    font-size: 14px;
    font-weight: 500;
}

.info-banner-btn {
    background-color: var(--progress-color);
    color: #121212;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.info-banner-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

#close-info-banner-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-text-color);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease, transform 0.2s ease;
}

#close-info-banner-btn:hover {
    color: var(--primary-text-color);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    #top-info-banner {
        margin-left: 0px;
        margin-right: 0px;
        width: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .info-banner-slide {
        flex-direction: row; 
        align-items: center; 
        text-align: left;    
        gap: 12px;           
    }

    .info-banner-text {
        font-size: 13px;
        flex-grow: 1; 
    }

    .info-banner-btn {
        flex-shrink: 0;
    }
}

.most-viewed-widget {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    min-height: 424px;
    box-sizing: border-box;
}

.most-viewed-title {
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 10px 10px 9.4px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.most-viewed-list {
    list-style: none;
    padding: 0 10px 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6.11px;
}

.most-viewed-item .most-viewed-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 1px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.most-viewed-item .most-viewed-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.most-viewed-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #333;
}

.most-viewed-post-title {
    font-size: 0.875em;
    font-weight: 600;
    color: var(--primary-text-color);
    line-height: 1.4;
    margin: 0 0 5px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.most-viewed-views {
    font-size: 0.8em;
    color: var(--secondary-text-color);
    font-weight: 500;
}
.most-viewed-views i {
    margin-right: 5px;
}

@media (max-width: 786px) {
  .widget-featured-vertical-grid { 
      grid-template-columns: 1fr; 
  }

  .featured-content-main {
      grid-template-columns: 1fr;
  }
  .featured-side-col { 
      flex-direction: row; 
  }
}

.hz-foto-wrapper {
    overflow: visible;
}

.hz-foto-wrapper .pmpro_card_content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.hz-foto-main-content {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.hz-foto-preview-wrapper {
    position: relative;
    flex-shrink: 0;
}

.hz-avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    background-color: var(--surface-color);
}

.hz-avatar-edit-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hz-foto-preview-wrapper:hover .hz-avatar-edit-overlay {
    opacity: 1;
}

.hz-foto-instructions {
    flex-grow: 1;
}

.hz-foto-info-text {
    font-size: 1em;
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.hz-foto-info-text strong {
    color: var(--primary-text-color);
    font-weight: 600;
}

.hz-foto-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.hz-foto-remove-link {
    background: none;
    border: none;
    color: var(--secondary-text-color);
    text-decoration: underline;
    font-size: 0.85em;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    transition: color 0.2s ease;
}
.hz-foto-remove-link:hover {
    color: #ff4d4d;
}

.hz-foto-limit-text {
    font-size: 0.9em;
    color: var(--secondary-text-color);
    background-color: transparent;
    padding: 15px 0 0 0;
    border-top: 1px solid var(--border-color);
    text-align: left;
    margin-top: 25px;
    border-radius: 0;
}

.hz-foto-limit-text i {
    margin-right: 8px;
    color: var(--accent-color);
}

.hz-foto-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9em;
    display: none;
}
.hz-foto-message.success, .hz-foto-message.error {
    display: block;
}
.hz-foto-message.success {
    background-color: rgba(94, 185, 94, 0.1);
    border: 1px solid #5eb95e;
    color: #88c988;
}
.hz-foto-message.error {
    background-color: rgba(199, 86, 70, 0.1);
    border: 1px solid #c75646;
    color: #d17a6e;
}

@media (max-width: 600px) {
    .hz-foto-main-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .hz-foto-actions {
        flex-direction: column;
    }
    .hz-foto-actions .pmpro_btn {
        width: 100%;
    }
}


.error-404-wrapper {
    max-width: 900px;
    margin: 10px auto;
    padding: 0 20px;
}

.error-404-content.content-blocked-message {
    padding: 50px 40px;
}

.error-404-icon-text {
    font-size: 90px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    line-height: 1;
}

.error-404-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.error-404-countdown {
    margin-top: 30px;
    font-size: 0.9em;
    color: var(--secondary-text-color);
}

.error-404-countdown #countdown-timer {
    font-weight: 700;
    color: var(--primary-text-color);
    display: inline-block;
    min-width: 12px;
    text-align: center;
}



.header-btn-avatar {
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn-avatar:hover {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.header-btn-avatar .avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--surface-color);
}

@media (max-width: 768px) {
    .header-btn-login span, 
    .header-btn-favorites span:not(.favorites-count),
    .header-btn-categories span {
        display: none; 
    }
    
    .header-btn-login,
    .header-btn-favorites,
    .header-btn-categories,
    .header-btn-avatar {
        padding: 8px;
    }

    .header-btn-avatar {
        width: 32px;
        height: 32px;
        padding: 0;
    }
    .header-btn-avatar .avatar {
        display: block;
        width: 80%;
        height: 80%;
        border-radius: 50%;
        object-fit: cover;
        background-color: var(--surface-color);
    }
}



#hz-livechat-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    z-index: 490;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease, bottom 0.3s ease;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
#hz-livechat-trigger:hover {
    background-color: var(--progress-color);
    border-color: var(--progress-color);
    transform: translateY(-3px) scale(1.05);
    color: #121212;
}

#hz-livechat-trigger::before {
    content: '\f086';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
}

#scroll-progress-container.visible ~ #hz-livechat-trigger {
    bottom: 95px;
}

@media (max-width: 480px) {
    #hz-livechat-trigger {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    #hz-livechat-trigger::before {
        font-size: 20px;
    }
    #scroll-progress-container.visible ~ #hz-livechat-trigger {
        bottom: 88px;
    }
}


.pmpro-error-support-text {
    margin-top: 15px;
    font-size: 0.95em;
    line-height: 1.6;
}

.pmpro-error-support-text .chat-highlight {
    color: var(--progress-color);
}

.pmpro-error-support-actions {
    margin-top: 20px;
    text-align: left;
}

.pmpro-error-support-button {
    width: auto;
    padding: 10px 25px !important;
}


.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 24px;
    margin-top: 1.5rem;
}

.tutorial-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.tutorial-card .tutorial-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 10px 0;
}

.tutorial-card .tutorial-description {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 0.95em;
}

.tutorial-card .video-tamano-personalizado {
    margin: 0 0 15px 0;
}
.tutorial-card .video-tamano-personalizado video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-content details.ac,
.tutorial-card details.ac {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.entry-content details.ac > summary,
.tutorial-card details.ac > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 0.875em;
    font-weight: 600;
    color: var(--primary-text-color);
    cursor: pointer;
    list-style: none;
    transition: background-color 0.2s ease;
}

.entry-content details.ac > summary::-webkit-details-marker,
.tutorial-card details.ac > summary::-webkit-details-marker {
    display: none;
}

.entry-content details[open].ac > summary,
.tutorial-card details[open].ac > summary {
    background-color: #2a2a2a;
    border-bottom: 1px solid var(--border-color);
}

.entry-content details.ac > summary::after,
.tutorial-card details.ac > summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9em;
    color: var(--secondary-text-color);
    transition: transform 0.3s ease, color 0.2s ease;
}

.entry-content details[open].ac > summary::after,
.tutorial-card details[open].ac > summary::after {
    transform: rotate(180deg);
    color: var(--primary-text-color);
}

@media (max-width: 768px) {
    .tutorials-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}


.contact-intro-text {
    text-align: center;
    color: var(--secondary-text-color);
    max-width: 700px;
    margin: 10px auto 40px auto;
    font-size: 1.05em;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: var(--progress-color);
}

.contact-card-icon {
    font-size: 42px;
    color: var(--progress-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-content {
    flex-grow: 1;
}

.contact-card-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 15px 0;
}

.contact-card-content p {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.contact-card-action {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1em;
    transition: color 0.2s ease;
}

.contact-card:hover .contact-card-action {
    color: var(--primary-text-color);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-intro-text {
        font-size: 1em;
    }
}

@media (min-width: 769px) {
    body.page-template-template-contacto .main-content-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - var(--header-height) - 40px);
    }
}

.sidebar-menu-icon-svg {
    width: 25px;
    height: 25px;
    margin-right: 14px;
    vertical-align: middle;
}

.header-logo-icon {
    height: 25px;
}

.header-logo-container {
    display: flex;
    align-items: center;
    padding-top: 5px;
    gap: 10px;
    margin-left: -26px;
}
.header-logo-text {
    font-size: 1rem;
    font-weight: 100;
    white-space: nowrap;
    

    background: linear-gradient(
        105deg,
        #F5F5F5 30.9%,
        #ff4848 69.1%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .header-logo-container {
        display: none;
    }

    .header-content-wrapper {
        justify-content: space-between;
    }

    #mobile-menu-toggle {
        order: -1;
    }
}


#report-post-trigger {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    z-index: 495;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease, bottom 0.3s ease;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--primary-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

#report-modal-content .form-submit input.pmpro_btn-submit {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--progress-color) !important;
    color: #121212 !important;
    border: none !important;
    font-size: 1em;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

#report-post-trigger:hover {
    background-color: #c75646;
    border-color: #c75646;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}

#scroll-progress-container.visible ~ #report-post-trigger {
    bottom: 95px;
}

.livechat_button.hz-livechat-button ~ #report-post-trigger {
    right: 95px;
}

#scroll-progress-container.visible ~ .livechat_button.hz-livechat-button ~ #report-post-trigger {
    bottom: 95px;
}

#report-modal-content textarea.pmpro_form_input {
    min-height: 100px;
    font-size: 1em;
    padding: 12px;
    font-family: inherit;
    resize: vertical;
    background-color: #121212 !important;
    border: 1px solid var(--border-color) !important;
    color: var(--primary-text-color) !important;
    border-radius: 6px;
}
#report-modal-content textarea.pmpro_form_input:focus {
    border-color: var(--accent-color) !important;
    outline: none;
}


@media (max-width: 480px) {
    #report-post-trigger {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    #scroll-progress-container.visible ~ #report-post-trigger {
        bottom: 88px;
    }
    .livechat_button.hz-livechat-button ~ #report-post-trigger {
        right: 88px;
    }
}


#report-modal-content .hz-foto-info-text {
    font-size: 1em;
    line-height: 1.6;
    color: var(--primary-text-color);
    margin-bottom: 20px;
}
#report-modal-content .hz-foto-info-text strong {
    color: var(--accent-color);
}

#report-modal-content .hz-foto-info-text[style*="font-size: 0.8em"] {
    font-size: 0.9em !important;
    opacity: 0.9;
    padding: 12px 15px;
    background-color: rgba(185, 158, 35, 0.08);
    border-left: 3px solid #b99e23;
    border-radius: 0 6px 6px 0;
    margin-top: 20px;
    margin-bottom: 25px;
}


#report-modal-content #report-post-form {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#report-modal-content #report-post-form .pmpro_form_field,
#report-modal-content #report-post-form .comment-form-cookies-consent {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0;
    margin-top: 0;
}

#report-modal-content #report-post-form textarea.pmpro_form_input {
    width: 100%;
    box-sizing: border-box;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    resize: none;
}
#report-modal-content label.pmpro_form_label {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 20px;
}
#report-modal-content textarea.pmpro_form_input {
    min-height: 100px;
    font-size: 1em;
    padding: 12px;
}

#report-modal-content .comment-form-cookies-consent {
    padding: 15px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
    background-color: rgba(0,0,0,0.1);
}
#report-modal-content .comment-form-cookies-consent label {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--primary-text-color);
    line-height: 1.4;
}
#report-modal-content .comment-form-cookies-consent input[type="checkbox"] {
    transform: scale(1.1);
}

#report-modal-content .form-submit {
    text-align: right;
    margin-top: 0;
}
#report-modal-content .form-submit input.pmpro_btn-submit {
    font-size: 1em;
    padding: 12px 30px;
    border-radius: 8px;
}

#report-step-2 p.hz-foto-info-text {
    font-size: 1.1em;
    font-weight: 600;
}
#report-message-container.hz-foto-message {
    padding: 15px;
    font-size: 1em;
}


@media (max-width: 768px) {
    #report-modal-overlay { padding: 0; align-items: flex-start; }
    #report-modal-content {
        width: 100%; height: 100%; max-width: none; max-height: none;
        border-radius: 0; border: none; transform: none;
        animation: slideInFromBottom 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    #report-modal-content .comments-modal-header { padding-top: 30px; }
    #report-modal-content .comments-modal-body { padding-left: 20px; padding-right: 20px; }
    #report-modal-content #report-post-form { padding: 20px 15px; }
    #report-modal-content .form-submit { text-align: center; }
    #report-modal-content .form-submit input.pmpro_btn-submit { width: 100%; }
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.featured-slider {
    position: relative;
}

.homepage-trigger i {
    transform: none;
}

body.top-monthly-panel-is-open .related-posts-panel {
    transform: translateX(0);
}

body.top-monthly-panel-is-open {
    overflow: hidden;
}
.related-posts-trigger.homepage-trigger {
    top: 100%; 

    margin-top: 10px; 

    transform: none; 

    left: -20px; 

    right: auto;
    border-right: 1px solid var(--border-color);
    border-left: none;
    border-radius: 0 10px 10px 0;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.related-posts-trigger.homepage-trigger.is-visible {
    opacity: 1;
    visibility: visible;
}


#top-monthly-panel .most-viewed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#top-monthly-panel .most-viewed-item .most-viewed-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

#top-monthly-panel .most-viewed-item .most-viewed-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

#top-monthly-panel .most-viewed-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #333;
}

#top-monthly-panel .most-viewed-post-title {
    font-size: 0.685em;
    font-weight: 600;
    color: var(--primary-text-color);
    line-height: 1.4;
    margin: 0 0 5px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#top-monthly-panel .most-viewed-views {
    font-size: 0.6em;
    color: var(--secondary-text-color);
}


.exclusive-content-message {
    max-width: 650px;
    margin: 2em auto;
    padding: 30px 35px;
}

.exclusive-content-message .cta-text strong {
    color: var(--primary-text-color);
    font-weight: 600;
}


.section-title-link {
    text-decoration: none;
    display: inline-block;
}

.section-title-link .section-title {
    color: var(--primary-text-color);
    transition: color 0.2s ease;
}

.section-title-link:hover .section-title {
    color: var(--accent-color);
}
.section-title-link:hover .section-arrow {
    transform: translateX(5px);
    color: var(--accent-color);
}

.exclusive-posts-grid {
    margin-bottom: 2.5rem;
}


.section-separator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-header-main-content {
    flex-grow: 1;
}

.section-view-all-btn {
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    color: #121212;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.section-view-all-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #121212;
}



.homepage-cta-diamond {
    position: fixed;
    bottom: 95px; 
    right: 25px;
    z-index: 498;
    
    width: 55px;
    height: 55px;
    border-radius: 50%;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;

    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 12px rgba(200, 135, 224, 0.5), 
                inset 0 0 5px rgba(200, 135, 224, 0.3);
}

.homepage-cta-diamond.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.homepage-cta-diamond::before {
    content: '\f3a5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 22px;
    color: var(--progress-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.homepage-cta-diamond::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -3px; 
    border-radius: 50%;
    border: 2px solid rgba(200, 135, 224, 0.7);
    animation: pulseGlow 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.homepage-cta-diamond:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(200, 135, 224, 0.8);
}


@media (max-width: 480px) {
    .homepage-cta-diamond {
        bottom: 88px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    .homepage-cta-diamond::before {
        font-size: 20px;
    }
}



.post-content-box .entry-meta {
    align-items: baseline;
}


.post-rating-block {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.post-rating-block .rating-summary-top {
    margin-bottom: 0;
}

.post-rating-block .rating-actions {
    margin-left: 0;
}

.entry-content div:has(> .ets-connection-lbl) {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 25px;
}

.ets-connection-lbl {
    display: block;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

body .pmpro-btn-connect.ets-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background-color: var(--progress-color);
    color: #121212;
    font-weight: 700;
    font-size: 1em;

    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

body .pmpro-btn-connect.ets-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.ets_assigned_role {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.9em;
    color: var(--secondary-text-color);
    line-height: 1.5;
}

.ets_assigned_role i {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9em;
    line-height: 1.2;
    vertical-align: middle;
    background-color: rgba(94, 185, 94, 0.1) !important;
    border: 1px solid #5eb95e;
    color: #88c988;
}

.rating-super-positive {
    color: #FFD700;
    font-weight: 400;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.rating-hiper-positive {
    font-weight: 400;
    background: -webkit-linear-gradient(45deg, #FFA500, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 100, 0, 0.6);
}

.rating-ultra-positive {
    font-weight: 400;
    background: -webkit-linear-gradient(45deg, #00FFFF, #8A2BE2, #00FFFF);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(138, 43, 226, 0.5);
    animation: shine-ultra 3s linear infinite;
}

@keyframes shine-ultra {
    to {
        background-position: 200% center;
    }
}

.entry-meta-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1px;
    flex-wrap: wrap;
}

.post-rating-block {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-rating-block .rating-summary-top {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .entry-meta-bottom-row.mobile-stacked {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
}

.metodo-pago-container {
    max-width: 900px;
    margin: 40px auto;
}
.metodo-pago-summary-box {
    text-align: center;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 0 auto 40px auto;
    max-width: 480px;
}
.metodo-pago-summary-box .summary-line {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.metodo-pago-summary-box .summary-intro {
    font-size: 1em;
    color: var(--secondary-text-color);
}
.metodo-pago-summary-box .summary-level-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-text-color);
}
.metodo-pago-summary-box .summary-level-cost {
    font-size: 1.1em;
    color: var(--secondary-text-color);
    margin: 8px 0 0 0;
}

.metodo-pago-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.metodo-pago-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.metodo-pago-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.metodo-pago-card-icon {
    font-size: 42px;
    color: var(--secondary-text-color);
    margin-bottom: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.metodo-pago-card:hover .metodo-pago-card-icon {
    transform: scale(1.1);
}

@media (min-width: 769px) {
    #metodo-paypal:hover .metodo-pago-card-icon {
        color: #0070BA;
    }
    #metodo-patreon:hover .metodo-pago-card-icon {
        color: #F96854;
    }
}

.metodo-pago-card-content {
    flex-grow: 1;
}

.metodo-pago-card-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-text-color);
    margin: 0 0 15px 0;
}

.metodo-pago-card-content p {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.metodo-pago-card-action {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--primary-text-color);
    font-weight: 600;
    font-size: 1em;
    transition: color 0.2s ease;
}

.metodo-pago-card:hover .metodo-pago-card-action {
    color: var(--primary-text-color);
}

@media (max-width: 768px) {
    .metodo-pago-grid {
        grid-template-columns: 1fr;
    }
    #metodo-paypal .metodo-pago-card-icon {
        color: #0070BA;
    }
    #metodo-patreon .metodo-pago-card-icon {
        color: #F96854;
    }
}

@media (min-width: 769px) {
    body.page-template-template-metododepago .main-content-area {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - var(--header-height) - 40px);
    }
    .metodo-pago-container {
        margin-top: 0;
        margin-bottom: 0;
    }
}

body.pmpro-login .pmpro a.ptrn-button img {
    display: none !important;
}

body.pmpro-login .pmpro a.ptrn-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    background-color: #1e1e1e;
    color: #ffffff;
    
    border: 1px solid #F96854;
    border-radius: 8px;
    
    width: 100%;
    max-width: 336px;
    height: auto;
    padding: 12px 20px;
    margin: 25px auto 0 auto !important;
    
    font-size: 1.0em;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

body.pmpro-login .pmpro a.ptrn-button:hover {
    background-color: #F96854;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 104, 84, 0.2);
}

body.pmpro-login .pmpro a.ptrn-button::before {
    font-family: "Font Awesome 6 Brands";
    content: "\f3d9";
    font-weight: 400;
    font-size: 1.2em;
}

body.pmpro-login .pmpro a.ptrn-button::after {
    content: "Acceder con Patreon";
}

@media (min-width: 769px) {
    body.pmpro-login .pmpro a.ptrn-button {
        margin: 25px 0 0 0 !important;
    }
}

.patreon-info-container {
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.patreon-info-header-card {
    text-align: center;
    padding: 40px 30px;
    margin-top: 20px;
}

.patreon-info-header-card .patreon-icon-large {
    font-size: 42px;
    color: var(--progress-color);
    margin-bottom: 20px;
}

.patreon-info-header-card h2 {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    color: var(--primary-text-color);
}

.patreon-info-header-card .patreon-info-subtitle {
    color: var(--secondary-text-color);
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

.patreon-info-container .pmpro_card_title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.patreon-info-container .pmpro_card_title i {
    font-size: 1.1em;
}

.patreon-info-container .icon-cancel { color: #c75646; }
.patreon-info-container .icon-sync { color: #66c0f4; }
.patreon-info-container .icon-password { color: var(--accent-color); }
.patreon-info-container .icon-date { color: var(--secondary-text-color); }

.patreon-warning-box.hz-foto-info-text {
    font-size: 0.9em !important;
    opacity: 0.9;
    padding: 12px 15px;
    background-color: rgba(185, 158, 35, 0.08);
    border-left: 3px solid #b99e23;
    border-radius: 0 6px 6px 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.patreon-info-actions.pmpro_card_actions {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
    justify-content: flex-start;
}

.patreon-info-actions .cta-btn {
    flex: 0 1 auto;
}