/**
 * GoQueer Review Creator - Base Styles
 * Shared styles for overview pages (Reviews & Videos)
 *
 * CSS Variables (set via PHP):
 * --gqrc-accent-color: Accent color from settings
 * --gqrc-primary-color: Primary color from settings
 *
 * @package GoQueer_Review_Creator
 * @since 1.2.0
 */

/* =====================================================
   Page-level horizontal scroll prevention
   ===================================================== */
body:has(.gqrc-overview-container),
body:has(.gqrc-videos-overview) {
    overflow-x: hidden;
}

/* Fallback for browsers without :has() support */
.gqrc-no-page-scroll {
    overflow-x: hidden;
}

/* =====================================================
   Container
   ===================================================== */
.gqrc-overview-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    background: #141414;
    color: #fff;
    font-family: "Arvo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-bottom: 50px;
    overflow-x: hidden;
}

/* =====================================================
   Hero Section
   ===================================================== */
.gqrc-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    margin-bottom: 50px;
    overflow: hidden;
}

.gqrc-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.gqrc-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.gqrc-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.gqrc-hero-backdrop {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gqrc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #141414 0%, transparent 50%, #141414 100%),
                linear-gradient(to right, #141414 0%, transparent 50%);
}

.gqrc-hero-copyright {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.gqrc-hero-content {
    position: absolute;
    bottom: 35%;
    left: 4%;
    max-width: 500px;
    z-index: 2;
}

.gqrc-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-family: "Arvo", serif;
}

.gqrc-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gqrc-hero-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--gqrc-accent-color, #9b59b6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-family: "Arvo", serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.gqrc-hero-badge-current {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    color: #000 !important;
    text-shadow: none !important;
    font-weight: 700;
}

.gqrc-hero-meta-stars .gqrc-stars {
    gap: 3px;
    display: flex;
    align-items: center;
}

.gqrc-hero-meta-stars .gqrc-star {
    font-size: 1rem;
}

.gqrc-hero-meta-stars .gqrc-star-full,
.gqrc-hero-meta-stars .gqrc-star-half,
.gqrc-hero-meta-stars .gqrc-star-empty {
    color: #fff;
}

.gqrc-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: calc(1.1rem * 1.6 * 4);
    max-height: calc(1.1rem * 1.6 * 4);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}

.gqrc-hero-buttons {
    display: flex;
    gap: 15px;
}

.gqrc-hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gqrc-hero-btn-primary {
    background: #fff;
    color: #000;
}

.gqrc-hero-btn-primary:hover {
    background: rgba(255,255,255,0.8);
}

.gqrc-hero-btn-secondary {
    background: rgba(109,109,110,0.7);
    color: #fff;
}

.gqrc-hero-btn-secondary:hover {
    background: rgba(109,109,110,0.4);
}

/* Hero Indicators */
.gqrc-hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.gqrc-hero-indicator {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gqrc-hero-indicator:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.gqrc-hero-indicator.active {
    background: rgba(255,255,255,0.3);
    width: 30px;
    border-radius: 6px;
}

.gqrc-hero-indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 6px;
    transition: none;
}

.gqrc-hero-indicator.active .gqrc-hero-indicator-progress {
    animation: gqrcIndicatorProgress 15s linear forwards;
}

@keyframes gqrcIndicatorProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Pause animation on hover */
.gqrc-hero-section:hover .gqrc-hero-indicator.active .gqrc-hero-indicator-progress {
    animation-play-state: paused;
}

/* =====================================================
   Category Sections
   ===================================================== */
.gqrc-category-section {
    margin-bottom: 30px;
    padding: 0 4%;
    overflow: visible;
    padding-bottom: 0;
}

.gqrc-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gqrc-primary-color, #006aff);
    font-family: "Arvo", serif;
    text-transform: lowercase;
}

.gqrc-cards-wrapper {
    position: relative;
    padding: 0 50px;
    overflow: visible;
}

.gqrc-cards-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 50px 50px 0 0;
    margin: -50px -50px 0 -50px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #555 #2a2a2a;
    -ms-overflow-style: none;
}

.gqrc-cards-row::-webkit-scrollbar {
    display: none;
}

/* Scroll Buttons */
.gqrc-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 150;
    transition: all 0.3s ease;
    opacity: 0;
}

.gqrc-category-section:hover .gqrc-scroll-btn {
    opacity: 1;
}

.gqrc-scroll-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gqrc-scroll-left {
    left: -55px;
    border-radius: 0 4px 4px 0;
}

.gqrc-scroll-right {
    right: -55px;
    border-radius: 4px 0 0 4px;
}

/* =====================================================
   Cards - Base Styles
   ===================================================== */
.gqrc-review-card {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.gqrc-review-card:hover {
    transform: scale(1.025);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    transition-delay: 0.3s;
}

.gqrc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.gqrc-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
    background-repeat: no-repeat;
    cursor: pointer;
}

.gqrc-card-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.gqrc-card-no-image::before {
    content: "\f03e";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 3rem;
    color: #666;
    opacity: 0.3;
}

.gqrc-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #9b59b6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 5px;
    z-index: 5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    height: auto;
    max-height: fit-content;
}

.gqrc-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gqrc-review-card:hover .gqrc-card-overlay {
    opacity: 1;
    transition-delay: 0.3s;
}

.gqrc-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    font-family: "Arvo", serif;
    line-height: 1.3;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gqrc-card-tags {
    margin-top: 5px;
}

.gqrc-card-tag-text {
    font-size: 0.75rem;
    color: #ddd;
    font-family: "Arvo", serif;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.gqrc-card-meta {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 12px;
}

.gqrc-card-buttons {
    display: flex;
    gap: 10px;
}

.gqrc-card-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.gqrc-card-btn:hover {
    background: #fff;
    color: #000;
}

/* =====================================================
   Modal - Base Styles
   ===================================================== */

.gqrc-modal-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background: rgba(0,0,0,0.95);
    z-index: 999999 !important;
    overflow-y: auto;
    overflow-x: hidden;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gqrc-modal-overlay.active {
    display: block;
}

.gqrc-modal-content {
    position: relative;
    background: #181818;
    width: 100%;
    min-height: 100%;
    overflow-y: auto;
}

.gqrc-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.2s ease;
}

.gqrc-modal-close:hover {
    background: #000;
    transform: scale(1.1);
}

.gqrc-modal-body {
    width: 100%;
    min-height: auto;
}

.gqrc-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-size: 1.5rem;
    color: #ccc;
}

.gqrc-modal-main-container {
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.gqrc-modal-content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.gqrc-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: "Arvo", serif;
}

/* =====================================================
   Stars Rating
   ===================================================== */
.gqrc-stars {
    display: flex;
    gap: 5px;
}

.gqrc-star {
    font-size: 1.5rem;
}

.gqrc-star-full {
    color: var(--gqrc-primary-color, #006aff);
}

.gqrc-star-half {
    color: var(--gqrc-primary-color, #006aff);
}

.gqrc-star-empty {
    color: #d1d5db;
}

.gqrc-rating-text {
    font-size: 0.9rem;
    color: #666;
}

/* =====================================================
   Responsive - Base
   ===================================================== */
@media (max-width: 900px) {
    .gqrc-hero-title {
        font-size: 2rem;
    }

    .gqrc-hero-meta {
        gap: 8px;
    }

    .gqrc-hero-meta-badge {
        padding: 5px 12px;
        font-size: 1rem;
    }

    .gqrc-hero-meta-stars .gqrc-star {
        font-size: 0.9rem;
    }

    .gqrc-hero-content {
        max-width: 400px;
    }

    .gqrc-cards-wrapper {
        padding: 0 40px;
    }

    .gqrc-scroll-btn {
        width: 35px;
        height: 80px;
        font-size: 1.2rem;
    }

    .gqrc-modal-main-container {
        padding: 60px 15px 30px;
    }

    .gqrc-modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .gqrc-hero-title {
        font-size: 1.5rem;
    }

    .gqrc-hero-meta {
        gap: 6px;
    }

    .gqrc-hero-meta-badge {
        padding: 4px 10px;
        font-size: 0.9rem;
    }

    .gqrc-hero-meta-stars .gqrc-star {
        font-size: 0.85rem;
    }

    .gqrc-hero-copyright {
        font-size: 0.65rem;
        bottom: 5px;
        right: 10px;
    }

    .gqrc-hero-description {
        font-size: 0.95rem;
        height: calc(0.95rem * 1.6 * 4);
        max-height: calc(0.95rem * 1.6 * 4);
    }

    .gqrc-hero-buttons {
        flex-direction: column;
    }

    .gqrc-cards-wrapper {
        padding: 0 30px;
    }

    .gqrc-scroll-btn {
        width: 28px;
        height: 60px;
        font-size: 1rem;
    }

    .gqrc-category-section {
        padding: 0 2%;
    }

    .gqrc-modal-title {
        font-size: 1.5rem;
    }
}
/**
 * Global UX Enhancements CSS
 * Back to top, scroll progress, modal navigation, etc.
 */

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.gqrc-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4ade80;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gqrc-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.gqrc-back-to-top:hover {
    background: #22c55e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.6);
}

.gqrc-back-to-top:active {
    transform: translateY(-1px) scale(0.95);
}

.gqrc-back-to-top:focus-visible {
    outline: 3px solid #4ade80;
    outline-offset: 3px;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.gqrc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4ade80 0%, #006aff 100%);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
}

/* ============================================
   MODAL NAVIGATION BUTTONS
   ============================================ */

.gqrc-modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 100px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.gqrc-modal-overlay.active .gqrc-modal-nav {
    opacity: 0.7;
    pointer-events: auto;
}

.gqrc-modal-nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

.gqrc-modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gqrc-modal-prev {
    left: 20px;
    border-radius: 0 8px 8px 0;
}

.gqrc-modal-next {
    right: 20px;
    border-radius: 8px 0 0 8px;
}

.gqrc-modal-nav:focus-visible {
    outline: 3px solid #4ade80;
    outline-offset: 3px;
}

/* Pulse animation on first appearance */
@keyframes gqrc-nav-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
}

.gqrc-modal-overlay.active .gqrc-modal-nav:first-of-type {
    animation: gqrc-nav-pulse 1s ease 0.5s;
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* Override for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   MOBILE SWIPE HINT
   ============================================ */

.gqrc-swipe-hint {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    z-index: 10002;
    opacity: 0;
    animation: gqrc-swipe-hint-fade 3s ease-in-out;
    pointer-events: none;
}

.gqrc-modal-overlay.active .gqrc-swipe-hint {
    opacity: 1;
}

@keyframes gqrc-swipe-hint-fade {
    0%, 80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.gqrc-swipe-hint i {
    margin: 0 4px;
}

/* ============================================
   LOADING STATES
   ============================================ */

.gqrc-preloading {
    opacity: 0.6;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .gqrc-back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }

    .gqrc-modal-nav {
        width: 40px;
        height: 80px;
        font-size: 20px;
    }

    .gqrc-modal-prev {
        left: 10px;
    }

    .gqrc-modal-next {
        right: 10px;
    }
}

@media (max-width: 600px) {
    .gqrc-back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }

    .gqrc-scroll-progress {
        height: 2px;
    }

    /* Make modal nav buttons smaller on mobile */
    .gqrc-modal-nav {
        width: 35px;
        height: 70px;
        font-size: 18px;
        opacity: 0.5;
    }

    .gqrc-modal-nav:active {
        opacity: 1;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip to main content link */
.gqrc-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4ade80;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.gqrc-skip-link:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gqrc-back-to-top,
    .gqrc-modal-nav {
        border: 2px solid currentColor;
    }

    .gqrc-scroll-progress {
        height: 4px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .gqrc-back-to-top,
    .gqrc-scroll-progress,
    .gqrc-modal-nav,
    .gqrc-swipe-hint {
        display: none !important;
    }
}
/**
 * UI Enhancements for GQRC Plugin
 * Smooth transitions, animations, and improved visual feedback
 */

/* ============================================
   MODAL ANIMATIONS
   ============================================ */

.gqrc-modal-overlay {
    animation: gqrc-fade-in 0.3s ease;
}

.gqrc-modal-overlay.active .gqrc-modal-content {
    animation: gqrc-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gqrc-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gqrc-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Close with Scale */
.gqrc-modal-close {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-modal-close:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ============================================
   CARD HOVER ENHANCEMENTS
   ============================================ */

.gqrc-review-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.gqrc-review-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gqrc-review-card:active {
    transform: scale(1.02) translateY(-4px);
}

/* Card Image Zoom Effect - DISABLED to prevent double zoom */
/* Only the card itself should scale, not the content inside */

/* Badge Pulse on Hover - DISABLED */
.gqrc-card-badge {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

/* ============================================
   HERO SLIDER ENHANCEMENTS
   ============================================ */

.gqrc-hero-slide {
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Button Animations */
.gqrc-hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gqrc-hero-btn:hover::before {
    left: 100%;
}

.gqrc-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gqrc-hero-btn:active {
    transform: translateY(0);
}

/* Hero Indicators Enhanced */
.gqrc-hero-indicator {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-hero-indicator:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL BUTTON ANIMATIONS
   ============================================ */

.gqrc-scroll-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.gqrc-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gqrc-scroll-left:hover {
    animation: gqrc-pulse-left 0.8s ease infinite;
}

.gqrc-scroll-right:hover {
    animation: gqrc-pulse-right 0.8s ease infinite;
}

@keyframes gqrc-pulse-left {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-5px); }
}

@keyframes gqrc-pulse-right {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* ============================================
   SEARCH ANIMATIONS
   ============================================ */

/* Search Toggle Ripple Effect */
.gqrc-search-toggle {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-search-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.gqrc-search-toggle:active::after {
    width: 100%;
    height: 100%;
}

/* Search Input Slide In */
.gqrc-search-input-wrapper {
    animation: gqrc-slide-in-right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gqrc-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Search Results Stagger Animation */
.gqrc-search-results-grid .gqrc-review-card {
    animation: gqrc-fade-in-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.gqrc-search-results-grid .gqrc-review-card:nth-child(1) { animation-delay: 0.05s; }
.gqrc-search-results-grid .gqrc-review-card:nth-child(2) { animation-delay: 0.1s; }
.gqrc-search-results-grid .gqrc-review-card:nth-child(3) { animation-delay: 0.15s; }
.gqrc-search-results-grid .gqrc-review-card:nth-child(4) { animation-delay: 0.2s; }
.gqrc-search-results-grid .gqrc-review-card:nth-child(5) { animation-delay: 0.25s; }
.gqrc-search-results-grid .gqrc-review-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes gqrc-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sort Buttons */
.gqrc-sort-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gqrc-sort-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(74, 222, 128, 0.1);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gqrc-sort-btn:hover::before {
    transform: scale(1);
}

.gqrc-sort-btn.active {
    animation: gqrc-bounce-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes gqrc-bounce-in {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ============================================
   FOCUS STATES (ACCESSIBILITY)
   ============================================ */

/* Remove default outline and add custom focus */
.gqrc-review-card:focus,
.gqrc-search-toggle:focus,
.gqrc-hero-btn:focus,
.gqrc-sort-btn:focus,
.gqrc-scroll-btn:focus {
    outline: none;
}

.gqrc-review-card:focus-visible {
    outline: 3px solid #4ade80;
    outline-offset: 4px;
    border-radius: 8px;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.2);
}

.gqrc-search-toggle:focus-visible {
    outline: 3px solid #4ade80;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.2);
}

.gqrc-hero-btn:focus-visible {
    outline: 3px solid #4ade80;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.3);
}

.gqrc-sort-btn:focus-visible {
    outline: 2px solid #4ade80;
    outline-offset: 2px;
}

.gqrc-search-input:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */

/* Spinner Rotation */
.fa-spinner {
    animation: gqrc-spin 1s linear infinite;
}

@keyframes gqrc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulsing Effect for Loading States */
.gqrc-modal-loading {
    animation: gqrc-pulse-opacity 1.5s ease-in-out infinite;
}

@keyframes gqrc-pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 900px) {
    /* Reduce animation intensity on mobile */
    .gqrc-review-card:hover {
        transform: scale(1.02) translateY(-4px);
    }

    /* Faster animations on mobile */
    .gqrc-modal-overlay.active .gqrc-modal-content {
        animation-duration: 0.3s;
    }

    .gqrc-search-results-grid .gqrc-review-card {
        animation-duration: 0.3s;
    }
}

@media (max-width: 600px) {
    /* Minimal animations on small screens */
    .gqrc-review-card:hover {
        transform: scale(1.01);
    }
}

/* ============================================
   REDUCED MOTION (ACCESSIBILITY)
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .gqrc-review-card:hover,
    .gqrc-hero-btn:hover,
    .gqrc-scroll-btn:hover {
        transform: none;
    }
}
/**
 * Hero Section Enhancements
 * Video backgrounds, loading skeleton
 */

/* ============================================
   VIDEO BACKGROUND SUPPORT
   ============================================ */

.gqrc-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* YouTube Player Sizing */
.gqrc-hero-video-wrapper > div,
.gqrc-hero-video-wrapper iframe,
.gqrc-hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.gqrc-hero-video-wrapper video {
    object-fit: cover;
}

/* Overlay for better text readability */
.gqrc-hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Ensure backdrop content stays on top when video is active */
.gqrc-hero-backdrop.gqrc-video-active {
    background: transparent !important;
    /* Keep original position to maintain layout */
    position: relative;
    z-index: 2;
}

/* Keep overlay and content positioning consistent */
.gqrc-hero-backdrop.gqrc-video-active .gqrc-hero-overlay {
    position: absolute;
    z-index: 2;
}

.gqrc-hero-backdrop.gqrc-video-active .gqrc-hero-content {
    position: absolute;
    z-index: 3;
}

/* Ensure slider indicators and navigation are above everything */
.gqrc-hero-indicators {
    z-index: 200 !important;
}

.gqrc-hero-indicator {
    z-index: 200 !important;
}

.gqrc-hero-prev,
.gqrc-hero-next {
    z-index: 200 !important;
}

/* Hide copyright when video is active */
.gqrc-hero-backdrop.gqrc-video-active .gqrc-hero-copyright {
    display: none !important;
}

/* YouTube attribution - subtle like copyright */
.gqrc-hero-youtube-credit {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: nowrap;
    text-align: right;
}

.gqrc-hero-youtube-credit span {
    flex-shrink: 0;
    white-space: nowrap;
}

.gqrc-hero-youtube-logo {
    height: auto;
    width: 100px;
    min-width: 100px;
    max-width: 150px;
    display: block;
    flex-shrink: 1;
    opacity: 0.8;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.8));
}

/* Video control button */
.gqrc-hero-video-sound {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gqrc-hero-video-sound:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gqrc-hero-video-sound:active {
    transform: scale(0.95);
}

.gqrc-hero-video-sound:focus-visible {
    outline: 2px solid #4ade80;
    outline-offset: 3px;
}

/* Hide video on mobile for performance */
@media (max-width: 900px) {
    .gqrc-hero-video-wrapper {
        display: none !important;
    }

    /* Show backdrop image instead */
    .gqrc-hero-video-wrapper + .gqrc-hero-backdrop {
        display: block !important;
    }
}

/* ============================================
   HERO LOADING SKELETON
   ============================================ */

.gqrc-hero-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: gqrc-skeleton-fade-in 0.3s ease;
}

.gqrc-hero-skeleton.hidden {
    animation: gqrc-skeleton-fade-out 0.5s ease forwards;
}

@keyframes gqrc-skeleton-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gqrc-skeleton-fade-out {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.gqrc-hero-skeleton-content {
    max-width: 800px;
    width: 100%;
}

.gqrc-hero-skeleton-title {
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gqrc-hero-skeleton-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.gqrc-hero-skeleton-badge {
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.gqrc-hero-skeleton-description {
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.gqrc-hero-skeleton-button {
    width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect */
.gqrc-hero-skeleton-title::before,
.gqrc-hero-skeleton-badge::before,
.gqrc-hero-skeleton-description::before,
.gqrc-hero-skeleton-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: gqrc-hero-shimmer 2s infinite;
}

@keyframes gqrc-hero-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Stagger animation delays */
.gqrc-hero-skeleton-title::before {
    animation-delay: 0s;
}

.gqrc-hero-skeleton-badge:nth-child(1)::before {
    animation-delay: 0.1s;
}

.gqrc-hero-skeleton-badge:nth-child(2)::before {
    animation-delay: 0.2s;
}

.gqrc-hero-skeleton-badge:nth-child(3)::before {
    animation-delay: 0.3s;
}

.gqrc-hero-skeleton-description::before {
    animation-delay: 0.4s;
}

.gqrc-hero-skeleton-button::before {
    animation-delay: 0.5s;
}

/* Responsive skeleton */
@media (max-width: 900px) {
    .gqrc-hero-skeleton {
        padding: 20px;
    }

    .gqrc-hero-skeleton-title {
        height: 40px;
    }

    .gqrc-hero-skeleton-description {
        height: 60px;
    }

    .gqrc-hero-skeleton-button {
        width: 150px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .gqrc-hero-skeleton-title {
        height: 32px;
    }

    .gqrc-hero-skeleton-badge {
        width: 60px;
        height: 24px;
    }

    .gqrc-hero-skeleton-description {
        height: 50px;
    }

    .gqrc-hero-skeleton-button {
        width: 130px;
        height: 40px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gqrc-hero-skeleton-title::before,
    .gqrc-hero-skeleton-badge::before,
    .gqrc-hero-skeleton-description::before,
    .gqrc-hero-skeleton-button::before {
        animation: none;
    }
}
/**
 * Skeleton Screens for GQRC Plugin
 * Professional loading states
 */

/* ============================================
   BASE SKELETON STYLES
   ============================================ */

.gqrc-skeleton {
    display: block;
    background: linear-gradient(
        90deg,
        rgba(42, 42, 42, 1) 0%,
        rgba(60, 60, 60, 1) 50%,
        rgba(42, 42, 42, 1) 100%
    );
    background-size: 200% 100%;
    animation: gqrc-skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes gqrc-skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   MODAL SKELETON
   ============================================ */

.gqrc-modal-skeleton {
    padding: 20px;
    max-width: 1400px;
    margin: 80px auto 40px;
}

.gqrc-modal-skeleton-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.gqrc-modal-skeleton-left {
    flex: 0 0 65%;
    max-width: 65%;
}

.gqrc-modal-skeleton-right {
    flex: 0 0 calc(35% - 30px);
    max-width: calc(35% - 30px);
}

/* Video Player Skeleton */
.gqrc-skeleton-video {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gqrc-skeleton-video::after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Details Skeleton */
.gqrc-skeleton-title {
    height: 48px;
    width: 80%;
    margin-bottom: 25px;
    border-radius: 6px;
}

.gqrc-skeleton-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.gqrc-skeleton-meta-item {
    height: 36px;
    width: 100px;
    border-radius: 6px;
}

.gqrc-skeleton-section-title {
    height: 28px;
    width: 150px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.gqrc-skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.gqrc-skeleton-text:last-child {
    width: 60%;
}

.gqrc-skeleton-text-block {
    margin-bottom: 25px;
}

/* ============================================
   SEARCH RESULTS SKELETON
   ============================================ */

.gqrc-search-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gqrc-search-skeleton-card {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gqrc-search-skeleton-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.gqrc-search-skeleton-card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 24px;
    border-radius: 4px;
    z-index: 2;
}

/* ============================================
   HERO SKELETON
   ============================================ */

.gqrc-hero-skeleton {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    margin-bottom: 50px;
    border-radius: 0;
    overflow: hidden;
}

.gqrc-hero-skeleton-content {
    position: absolute;
    bottom: 35%;
    left: 4%;
    max-width: 500px;
    z-index: 2;
}

.gqrc-hero-skeleton-title {
    height: 60px;
    width: 400px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.gqrc-hero-skeleton-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.gqrc-hero-skeleton-badge {
    height: 32px;
    width: 80px;
    border-radius: 20px;
}

.gqrc-hero-skeleton-description {
    height: 16px;
    margin-bottom: 8px;
    border-radius: 3px;
}

.gqrc-hero-skeleton-description:nth-child(1) {
    width: 100%;
}

.gqrc-hero-skeleton-description:nth-child(2) {
    width: 90%;
}

.gqrc-hero-skeleton-description:nth-child(3) {
    width: 70%;
    margin-bottom: 25px;
}

.gqrc-hero-skeleton-button {
    height: 48px;
    width: 180px;
    border-radius: 4px;
}

/* ============================================
   CATEGORY SECTION SKELETON
   ============================================ */

.gqrc-category-skeleton {
    margin-bottom: 30px;
    padding: 0 4%;
}

.gqrc-category-skeleton-title {
    height: 32px;
    width: 200px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.gqrc-category-skeleton-cards {
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.gqrc-category-skeleton-card {
    flex: 0 0 300px;
    aspect-ratio: 16/9;
    border-radius: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .gqrc-modal-skeleton-layout {
        flex-direction: column;
    }

    .gqrc-modal-skeleton-left,
    .gqrc-modal-skeleton-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gqrc-search-skeleton-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .gqrc-hero-skeleton-title {
        height: 40px;
        width: 300px;
    }

    .gqrc-category-skeleton-card {
        flex: 0 0 220px;
    }
}

@media (max-width: 600px) {
    .gqrc-modal-skeleton {
        padding: 10px;
        margin-top: 60px;
    }

    .gqrc-search-skeleton-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gqrc-hero-skeleton {
        min-height: 300px;
    }

    .gqrc-hero-skeleton-title {
        height: 32px;
        width: 250px;
    }

    .gqrc-hero-skeleton-button {
        height: 40px;
        width: 150px;
    }

    .gqrc-category-skeleton-card {
        flex: 0 0 180px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.gqrc-skeleton-pulse {
    animation: gqrc-skeleton-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes gqrc-skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.gqrc-skeleton-wave {
    position: relative;
    overflow: hidden;
}

.gqrc-skeleton-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: gqrc-skeleton-wave 2s ease-in-out infinite;
}

@keyframes gqrc-skeleton-wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
/**
 * Lazy Loading Styles for GQRC Plugin
 */

/* Shimmer Animation */
@keyframes gqrc-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Loading State - shimmer effect */
.gqrc-lazy-loading {
    background: linear-gradient(
        90deg,
        #2a2a2a 25%,
        #3a3a3a 50%,
        #2a2a2a 75%
    ) !important;
    background-size: 200% 100%;
    animation: gqrc-shimmer 1.5s infinite;
}

/* Loaded State - fade in */
.gqrc-lazy-loaded {
    animation: gqrc-fade-in 0.3s ease-out;
}

@keyframes gqrc-fade-in {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* Error State */
.gqrc-lazy-error {
    background-color: #1a1a1a !important;
    position: relative;
}

.gqrc-lazy-error::after {
    content: '\f071';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Prevent layout shift during loading */
.gqrc-card-image[data-bg-image] {
    min-height: 169px; /* 16:9 aspect ratio for 300px width */
}

/* Hero slide lazy loading */
.gqrc-hero-backdrop[data-bg-image] {
    min-height: 500px;
}
/**
 * Toast Notification Styles
 */

.gqrc-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10010;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.gqrc-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    pointer-events: auto;
    transform: translateX(calc(100% + 30px));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.gqrc-toast-show {
    transform: translateX(0);
    opacity: 1;
}

.gqrc-toast-hide {
    transform: translateX(calc(100% + 30px));
    opacity: 0;
}

/* Toast Types */
.gqrc-toast-success {
    border-left: 4px solid #4ade80;
}

.gqrc-toast-success .gqrc-toast-icon {
    color: #4ade80;
}

.gqrc-toast-error {
    border-left: 4px solid #ef4444;
}

.gqrc-toast-error .gqrc-toast-icon {
    color: #ef4444;
}

.gqrc-toast-warning {
    border-left: 4px solid #f59e0b;
}

.gqrc-toast-warning .gqrc-toast-icon {
    color: #f59e0b;
}

.gqrc-toast-info {
    border-left: 4px solid #006aff;
}

.gqrc-toast-info .gqrc-toast-icon {
    color: #006aff;
}

/* Icon */
.gqrc-toast-icon {
    flex-shrink: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Message */
.gqrc-toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* Close Button */
.gqrc-toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 12px;
}

.gqrc-toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Paused State */
.gqrc-toast-paused {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    transform: scale(1.02);
}

/* Progress Bar (optional enhancement) */
.gqrc-toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
    transform-origin: left;
    animation: gqrc-toast-progress 3s linear;
}

.gqrc-toast-paused::after {
    animation-play-state: paused;
}

@keyframes gqrc-toast-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
    .gqrc-toast-container {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .gqrc-toast {
        min-width: auto;
        max-width: none;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .gqrc-toast {
        transition-duration: 0.01ms;
    }

    .gqrc-toast::after {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .gqrc-toast {
        border: 2px solid currentColor;
    }
}
/**
 * Empty State Improvements for GQRC Plugin
 * Better "no results" and empty state designs
 */

/* ============================================
   ENHANCED NO RESULTS STATE
   ============================================ */

.gqrc-search-no-results {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Animated Icon Container */
.gqrc-empty-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.gqrc-empty-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: gqrc-empty-pulse 2s ease-in-out infinite;
}

.gqrc-empty-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(74, 222, 128, 0.2);
    animation: gqrc-empty-ring 2s ease-in-out infinite;
}

.gqrc-empty-icon i {
    font-size: 48px;
    color: rgba(74, 222, 128, 0.6);
    animation: gqrc-empty-icon-float 3s ease-in-out infinite;
}

@keyframes gqrc-empty-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes gqrc-empty-ring {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes gqrc-empty-icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Text Content */
.gqrc-empty-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: "Arvo", serif;
}

.gqrc-empty-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.gqrc-empty-query {
    color: #4ade80;
    font-weight: 600;
}

/* ============================================
   SUGGESTIONS
   ============================================ */

.gqrc-empty-suggestions {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    text-align: left;
}

.gqrc-suggestions-title {
    font-size: 18px;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Arvo", serif;
}

.gqrc-suggestions-title i {
    font-size: 20px;
}

.gqrc-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gqrc-suggestions-list li {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.gqrc-suggestions-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.gqrc-suggestions-list li::before {
    content: '→';
    color: #4ade80;
    font-weight: bold;
    font-size: 18px;
}

.gqrc-suggestions-list li:last-child {
    margin-bottom: 0;
}

/* ============================================
   POPULAR CONTENT (FALLBACK)
   ============================================ */

.gqrc-empty-popular {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gqrc-popular-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-family: "Arvo", serif;
}

.gqrc-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gqrc-popular-card {
    aspect-ratio: 16/9;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gqrc-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 222, 128, 0.3);
}

/* ============================================
   ERROR STATE
   ============================================ */

.gqrc-error-state {
    text-align: center;
    padding: 60px 20px;
}

.gqrc-error-icon {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 20px;
    animation: gqrc-error-shake 0.5s ease-in-out;
}

@keyframes gqrc-error-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.gqrc-error-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.gqrc-error-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.gqrc-error-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #4ade80;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gqrc-error-action:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.4);
}

/* ============================================
   LOADING STATE ENHANCEMENT
   ============================================ */

.gqrc-loading-state {
    text-align: center;
    padding: 60px 20px;
}

.gqrc-loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid rgba(74, 222, 128, 0.1);
    border-top-color: #4ade80;
    border-radius: 50%;
    animation: gqrc-loading-spin 1s linear infinite;
}

@keyframes gqrc-loading-spin {
    to { transform: rotate(360deg); }
}

.gqrc-loading-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    animation: gqrc-loading-pulse 1.5s ease-in-out infinite;
}

@keyframes gqrc-loading-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .gqrc-empty-icon-container {
        width: 100px;
        height: 100px;
    }

    .gqrc-empty-icon i {
        font-size: 40px;
    }

    .gqrc-empty-title {
        font-size: 24px;
    }

    .gqrc-empty-description {
        font-size: 15px;
    }

    .gqrc-popular-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gqrc-search-no-results {
        padding: 40px 15px;
    }

    .gqrc-empty-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .gqrc-empty-icon i {
        font-size: 32px;
    }

    .gqrc-empty-title {
        font-size: 20px;
    }

    .gqrc-empty-description {
        font-size: 14px;
    }

    .gqrc-empty-suggestions {
        padding: 20px;
    }

    .gqrc-suggestions-list li {
        padding: 10px 12px;
        font-size: 14px;
    }

    .gqrc-popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
/**
 * GQRC Search Styles
 * Netflix-style live search with slide-in animation
 */

/* ============================================
   SEARCH CONTAINER - Fixed Top-Right
   ============================================ */

.gqrc-search-container {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 200;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
}

/* ============================================
   SEARCH TOGGLE BUTTON (Magnifying Glass Icon)
   ============================================ */

.gqrc-search-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gqrc-search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.gqrc-search-toggle:active {
    transform: scale(0.95);
}

/* ============================================
   SEARCH INPUT WRAPPER - Slide-In Animation
   ============================================ */

.gqrc-search-input-wrapper {
    opacity: 0;
    transform: translateX(100px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gqrc-search-input-wrapper[data-active="true"] {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

/* ============================================
   SEARCH INPUT CONTAINER
   ============================================ */

.gqrc-search-input-container {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 20px;
    backdrop-filter: blur(15px);
    width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gqrc-search-input-container .fa-search {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
    font-size: 16px;
}

.gqrc-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.gqrc-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.gqrc-search-clear {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 10px;
}

.gqrc-search-clear:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ============================================
   RESULTS COUNT
   ============================================ */

.gqrc-search-results-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
    padding-left: 50px;
}

.gqrc-search-count {
    font-weight: bold;
    color: #fff;
}

/* ============================================
   LOADING INDICATOR
   ============================================ */

.gqrc-search-loading-indicator {
    color: #4ade80;
    font-size: 14px;
    margin-top: 8px;
    padding-left: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: gqrc-pulse 1.5s ease-in-out infinite;
}

.gqrc-search-loading-indicator i {
    font-size: 12px;
}

@keyframes gqrc-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   SEARCH RESULTS CONTAINER
   ============================================ */

.gqrc-search-results-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 40px;
    padding: 4rem;
}

.gqrc-search-results-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.gqrc-search-query {
    color: #4ade80;
}

/* ============================================
   SORT CONTROLS
   ============================================ */

.gqrc-search-sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gqrc-sort-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}

.gqrc-sort-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.gqrc-sort-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.gqrc-sort-btn.active {
    background: #4ade80;
    border-color: #4ade80;
    color: #000;
    font-weight: 600;
}

.gqrc-sort-btn i {
    font-size: 12px;
}

/* ============================================
   RESULTS GRID
   ============================================ */

.gqrc-search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding: 0;
}

/* Reuse existing card styles */
.gqrc-search-results-grid .gqrc-card,
.gqrc-search-results-grid .gqrc-review-card {
    width: 100%;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gqrc-search-results-grid .gqrc-card:hover,
.gqrc-search-results-grid .gqrc-review-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ============================================
   NO RESULTS MESSAGE
   ============================================ */

.gqrc-search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.gqrc-search-no-results .fa-search {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.gqrc-search-no-results p {
    font-size: 18px;
    margin: 0;
}

/* ============================================
   HIDE NORMAL CONTENT WHEN SEARCHING
   ============================================ */

body.gqrc-search-active .gqrc-hero-section,
body.gqrc-search-active .gqrc-category-section {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (600-900px) */
@media (max-width: 900px) {
    .gqrc-search-container {
        top: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .gqrc-search-toggle {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.125rem;
    }

    .gqrc-search-input-container {
        width: 18.75rem;
        padding: 0.5rem 0.9375rem;
    }

    .gqrc-search-input {
        font-size: 0.9375rem;
    }

    .gqrc-search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
        gap: 1.5rem;
    }

    .gqrc-search-results-title {
        font-size: 1.5rem;
    }

    .gqrc-sort-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .gqrc-sort-label {
        font-size: 13px;
    }
}

/* Mobile (<600px) */
@media (max-width: 600px) {
    .gqrc-search-container {
        top: 0.75rem;
        right: 0.75rem;
        gap: 0.625rem;
    }

    .gqrc-search-toggle {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    /* Full-Screen Overlay on Mobile */
    .gqrc-search-container {
        position: fixed;
        top: 0.75rem;
        right: 0.75rem;
    }

    .gqrc-search-input-wrapper[data-active="true"] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px 20px;
        transform: translateX(0);
    }

    .gqrc-search-input-container {
        width: 100%;
        max-width: 500px;
    }

    .gqrc-search-results-count {
        padding-left: 0;
        text-align: center;
    }

    .gqrc-search-loading-indicator {
        padding-left: 0;
        justify-content: center;
    }

    .gqrc-search-results-container {
        margin-top: 20px;
    }

    .gqrc-search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gqrc-search-results-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .gqrc-search-sort-controls {
        justify-content: center;
        margin-bottom: 15px;
    }

    .gqrc-sort-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .gqrc-sort-label {
        font-size: 12px;
        display: none;
    }

    .gqrc-search-no-results .fa-search {
        font-size: 50px;
    }

    .gqrc-search-no-results p {
        font-size: 16px;
    }
}

/* Very Small Mobile (<375px) */
@media (max-width: 375px) {
    .gqrc-search-results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   DARK THEME INTEGRATION
   ============================================ */

body.dark-mode .gqrc-search-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .gqrc-search-input-container {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.gqrc-search-toggle:focus,
.gqrc-search-input:focus,
.gqrc-search-clear:focus {
    outline: 2px solid #4ade80;
    outline-offset: 2px;
}

/* Touch Targets for Mobile */
@media (max-width: 600px) {
    .gqrc-search-toggle,
    .gqrc-search-clear {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ============================================
   LOADING STATE
   ============================================ */

.gqrc-search-loading {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.gqrc-search-loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: gqrc-spin 0.8s linear infinite;
}

@keyframes gqrc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   SMOOTH TRANSITIONS
   ============================================ */

.gqrc-search-results-container,
.gqrc-search-no-results,
.gqrc-search-results-count {
    transition: opacity 0.3s ease, display 0s 0.3s;
}

.gqrc-search-results-container[style*="display: none"],
.gqrc-search-no-results[style*="display: none"],
.gqrc-search-results-count[style*="display: none"] {
    opacity: 0;
}
/**
 * GoQueer Review Creator - Review Styles
 * Styles specific to review overview and detail pages
 *
 * @package GoQueer_Review_Creator
 * @since 1.2.0
 */

/* =====================================================
   Review Cards - Poster Style (2:3 aspect ratio)
   ===================================================== */
.gqrc-overview-container .gqrc-review-card {
    flex: 0 0 200px;
    width: 200px;
    aspect-ratio: 2/3;
}

@media (max-width: 900px) {
    .gqrc-overview-container .gqrc-review-card {
        flex: 0 0 150px;
        width: 150px;
    }

    .gqrc-overview-container .gqrc-review-card:hover {
        transform: scale(1.015);
    }
}

@media (max-width: 600px) {
    .gqrc-overview-container .gqrc-review-card {
        flex: 0 0 120px;
        width: 120px;
    }

    .gqrc-overview-container .gqrc-review-card:hover {
        transform: scale(1.005);
    }
}

/* =====================================================
   Single Review Container
   ===================================================== */
.gqrc-container {
    max-width: 1100px;
    margin: 0 auto;
    font-family: "Arvo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gqrc-content-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.gqrc-poster-section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gqrc-info-section {
    display: flex;
    flex-direction: column;
}

.gqrc-section-title {
    font-size: 1.8rem;
    color: var(--gqrc-primary-color, #006aff);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: lowercase;
    font-family: "Arvo", serif;
}

.gqrc-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
}

/* =====================================================
   Meta Grid (Technical Data)
   ===================================================== */
.gqrc-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 25%);
    gap: 20px;
    margin-bottom: 30px;
}

.gqrc-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.gqrc-meta-icon {
    width: 38px;
    height: 38px;
    background: var(--gqrc-accent-color, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
}

.gqrc-meta-icon i {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

.gqrc-fsk-icon {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gqrc-meta-content h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.gqrc-meta-content p {
    font-size: 0.95rem;
    color: #666;
}

/* =====================================================
   Rating Box
   ===================================================== */
.gqrc-rating-box {
    margin-top: auto;
}

.gqrc-rating-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.gqrc-stars-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =====================================================
   Review Video Section
   ===================================================== */
.gqrc-review-section {
    margin-top: 50px;
}

.gqrc-review-title {
    font-size: 2rem;
    color: var(--gqrc-primary-color, #006aff);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: lowercase;
}

.gqrc-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.gqrc-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gqrc-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
}

.gqrc-copyright-icon {
    width: 35px;
    height: 35px;
    background: var(--gqrc-accent-color, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

/* =====================================================
   Modal - Review Specific
   ===================================================== */
.gqrc-modal-video-container {
    flex: 0 0 55%;
    width: 55%;
}

.gqrc-modal-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.gqrc-modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Streaming Sources */
.gqrc-sources-container {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.gqrc-sources-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gqrc-sources-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gqrc-source-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #9b59b6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gqrc-source-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    color: #fff;
}

.gqrc-source-button i {
    font-size: 1.2rem;
}

.gqrc-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #9b59b6;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    cursor: default;
}

.gqrc-source-badge i {
    font-size: 1.2rem;
}

/* Modal Details Panel */
.gqrc-modal-details {
    overflow: visible;
}

.gqrc-modal-details .gqrc-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.gqrc-modal-details .gqrc-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.gqrc-modal-details .gqrc-poster-section {
    display: none;
}

.gqrc-modal-details .gqrc-section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.gqrc-modal-details .gqrc-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.gqrc-modal-details .gqrc-meta-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 0;
}

.gqrc-modal-details .gqrc-meta-item {
    gap: 10px;
}

.gqrc-modal-details .gqrc-meta-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.gqrc-modal-details .gqrc-meta-content h6 {
    color: #fff;
    font-size: 0.9rem;
}

.gqrc-modal-details .gqrc-meta-content p {
    color: #ccc;
    font-size: 0.9rem;
}

.gqrc-modal-details .gqrc-rating-box {
    margin-top: 20px;
}

.gqrc-modal-details .gqrc-rating-title {
    color: #fff;
}

/* =====================================================
   Back Button Overlay
   ===================================================== */
.gqrc-back-overlay {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    animation: gqrcFadeIn 0.5s ease;
}

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

.gqrc-back-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(20, 20, 20, 0.85);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gqrc-back-button:hover {
    background: rgba(0, 106, 255, 0.9);
    color: #fff;
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 106, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.gqrc-back-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.gqrc-back-button:hover i {
    transform: translateX(-3px);
}

.gqrc-back-button span {
    white-space: nowrap;
}

/* Edit Button */
.gqrc-edit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(155, 89, 182, 0.85);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 10px;
}

.gqrc-edit-button:hover {
    background: rgba(155, 89, 182, 1);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.gqrc-edit-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.gqrc-edit-button:hover i {
    transform: rotate(15deg);
}

.gqrc-edit-button span {
    white-space: nowrap;
}

/* Back overlay with multiple buttons */
.gqrc-back-overlay {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =====================================================
   Single Review Page Styles
   ===================================================== */
.gqrc-single-review {
    background: #1a1a1a !important;
}

/* Single post view - same classes as modal but inline */
.gqrc-modal-overlay.gqrc-single-post-view {
    position: relative !important;
    display: block !important;
    z-index: auto !important;
}

.gqrc-single-post-view .gqrc-modal-close,
.gqrc-single-post-view .gqrc-back-button,
.gqrc-single-post-view .gqrc-back-overlay,
.gqrc-single-post-view .gqrc-edit-button {
    display: none !important;
}

/* Make iframe visible on single post view */
.gqrc-single-post-view .gqrc-modal-video-wrapper iframe {
    opacity: 1 !important;
}

/* Hide sidebar, page header and comments on single review pages */
.gqrc-single-review #secondary,
.gqrc-single-review .sidebar,
.gqrc-single-review aside,
.gqrc-single-review .page-header,
.gqrc-single-review #comments {
    display: none !important;
}

/* Single review post layout */
.gqrc-single-post-view .gqrc-modal-details {
    flex: 0 0 45% !important;
    width: 45% !important;
    overflow: visible !important;
    padding-right: 40px !important;
    max-height: none !important;
    overflow-y: visible !important;
}

/* =====================================================
   Responsive - Review Specific
   ===================================================== */
@media (max-width: 1200px) {
    .gqrc-modal-content-wrapper {
        flex-direction: column;
    }

    .gqrc-modal-video-container {
        flex: 1;
        width: 100%;
    }

    .gqrc-modal-details {
        flex: 1;
        width: 100%;
        overflow: visible;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .gqrc-sources-buttons {
        flex-direction: column;
    }

    .gqrc-source-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .gqrc-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gqrc-poster-section {
        max-width: 400px;
        margin: 0 auto;
    }

    .gqrc-meta-grid {
        grid-template-columns: repeat(2, 50%);
    }

    /* Back button responsive */
    .gqrc-back-overlay {
        bottom: 15px;
        left: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .gqrc-back-button,
    .gqrc-edit-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .gqrc-edit-button {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .gqrc-meta-grid {
        grid-template-columns: 1fr;
    }

    /* Compact back button on mobile */
    .gqrc-back-overlay {
        bottom: 10px;
        left: 10px;
    }

    .gqrc-back-button {
        padding: 10px 16px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .gqrc-back-button span {
        display: none;
    }

    .gqrc-back-button i {
        font-size: 1.2rem;
        margin: 0;
    }

    .gqrc-back-button {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }
}

/* =====================================================
   Related Films Section - Modal
   Uses same card structure as review-home
   ===================================================== */
.gqrc-related-films {
    margin-top: 30px;
    padding: 25px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gqrc-related-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gqrc-accent-color, #61ff70);
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Arvo", serif;
}

.gqrc-related-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--gqrc-accent-color, #61ff70) transparent;
}

.gqrc-related-scroll::-webkit-scrollbar {
    height: 4px;
}

.gqrc-related-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.gqrc-related-scroll::-webkit-scrollbar-thumb {
    background: var(--gqrc-accent-color, #61ff70);
    border-radius: 2px;
}

/* Related cards - same as review-home but smaller */
.gqrc-related-scroll .gqrc-review-card {
    flex: 0 0 150px;
    width: 150px;
    aspect-ratio: 2/3;
}

.gqrc-related-scroll .gqrc-review-card:hover {
    transform: scale(1.025);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* Responsive adjustments for related films */
@media (max-width: 900px) {
    .gqrc-related-scroll .gqrc-review-card {
        flex: 0 0 130px;
        width: 130px;
    }

    .gqrc-related-scroll .gqrc-review-card:hover {
        transform: scale(1.015);
    }
}

@media (max-width: 600px) {
    .gqrc-related-films {
        padding: 20px 15px;
    }

    .gqrc-related-scroll {
        gap: 12px;
    }

    .gqrc-related-scroll .gqrc-review-card {
        flex: 0 0 110px;
        width: 110px;
    }

    .gqrc-related-scroll .gqrc-review-card:hover {
        transform: scale(1.005);
    }
}
/**
 * GoQueer Review Creator - Video Styles
 * Styles specific to video overview, feed, and modal pages
 *
 * @package GoQueer_Review_Creator
 * @since 1.2.0
 */

/* =====================================================
   Page-level horizontal scroll prevention
   ===================================================== */
.gqrc-videos-overview,
.gqrc-video-feed {
    max-width: 100vw;
    overflow-x: hidden;
}

/* =====================================================
   Video Cards - Thumbnail Style (16:9 aspect ratio)
   ===================================================== */
.gqrc-videos-overview .gqrc-review-card,
.gqrc-video-feed .gqrc-review-card {
    flex: 0 0 300px;
    width: 300px;
    aspect-ratio: 16/9;
}

.gqrc-video-feed .gqrc-review-card {
    flex: 0 0 calc(20% - 12px);
    width: calc(20% - 12px);
    min-height: 150px;
}

/* Card inner absolute positioning for videos */
.gqrc-videos-overview .gqrc-card-inner,
.gqrc-video-feed .gqrc-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video badge position at bottom */
.gqrc-videos-overview .gqrc-card-badge,
.gqrc-video-feed .gqrc-card-badge {
    top: auto;
    bottom: 10px;
    right: 10px;
    height: auto;
    max-height: fit-content;
    align-self: flex-end;
}

/* Video card title styling */
.gqrc-videos-overview .gqrc-card-title {
    font-size: 1.1rem;
}

/* Video card no-image icon */
.gqrc-videos-overview .gqrc-card-no-image::before,
.gqrc-video-feed .gqrc-card-no-image::before {
    content: '\f03d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* =====================================================
   Video Card Meta Badges
   ===================================================== */
.gqrc-card-meta-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.gqrc-card-meta-badge {
    font-size: 0.75rem;
    color: #fff;
    padding: 3px 8px;
    background: #9b59b6;
    border-radius: 3px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    font-family: "Arvo", serif;
}

/* =====================================================
   Video Card Buttons
   ===================================================== */
.gqrc-videos-overview .gqrc-card-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gqrc-videos-overview .gqrc-card-btn {
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(42,42,42,0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.gqrc-videos-overview .gqrc-card-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

/* Play Button (Large) */
.gqrc-card-btn-play-large {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-color: #fff;
}

.gqrc-card-btn-play-large:hover {
    background: rgba(255,255,255,0.85);
}

.gqrc-card-btn-play-large i {
    font-size: 1rem;
    margin-left: 2px;
}

/* Small Action Buttons */
.gqrc-card-btn-add,
.gqrc-card-btn-like,
.gqrc-card-btn-expand {
    width: 32px;
    height: 32px;
}

.gqrc-card-btn-add i,
.gqrc-card-btn-like i,
.gqrc-card-btn-expand i {
    font-size: 0.85rem;
}

/* Expand button on the right */
.gqrc-card-btn-expand {
    margin-left: auto;
}

/* =====================================================
   Video Modal Layout
   ===================================================== */
.gqrc-video-modal .gqrc-modal-content-wrapper {
    align-items: flex-start;
}

.gqrc-video-modal .gqrc-modal-main-container {
}

.gqrc-video-modal .gqrc-modal-left {
    flex: 0 0 65%;
    max-width: 65%;
    width: 65%;
}

.gqrc-video-modal .gqrc-modal-right {
    flex: 0 0 calc(35% - 30px);
    max-width: calc(35% - 30px);
    width: calc(35% - 30px);
}

.gqrc-video-modal .gqrc-modal-video-container {
    position: relative;
    flex: 1;
    width: 100%;
}

.gqrc-video-modal .gqrc-modal-video-wrapper {
    width: 100%;
}

/* Video Unavailable Message (hidden by default, shown via JS when video fails to load) */
.gqrc-modal-video-wrapper .gqrc-video-unavailable {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: auto !important;
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    gap: 15px;
    z-index: 3;
}

.gqrc-modal-video-wrapper iframe {
    z-index: 2;
}

.gqrc-video-unavailable i {
    font-size: 3rem;
    opacity: 0.5;
    color: var(--gqrc-accent-color, #9b59b6);
}

.gqrc-video-unavailable p {
    font-size: 1rem;
    font-family: "Arvo", serif;
    margin: 0;
    padding: 0 20px;
}

/* =====================================================
   Video Timeline
   ===================================================== */
.gqrc-video-timeline-wrapper {
    margin-top: 25px;
}

.gqrc-timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gqrc-primary-color, #006aff);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gqrc-timeline-title i {
    color: var(--gqrc-accent-color, #9b59b6);
}

.gqrc-video-timeline-container {
    position: relative;
    padding: 30px 0;
    overflow-x: auto;
    overflow-y: visible;
}

.gqrc-video-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.gqrc-video-timeline-container::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.gqrc-video-timeline-container::-webkit-scrollbar-thumb {
    background: var(--gqrc-accent-color, #9b59b6);
    border-radius: 4px;
}

.gqrc-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gqrc-accent-color, #9b59b6) 0%, var(--gqrc-primary-color, #006aff) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.gqrc-video-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-width: max-content;
    padding: 0 20px;
    z-index: 2;
}

.gqrc-timeline-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.gqrc-point-marker {
    position: relative;
    width: 16px;
    height: 16px;
    background: var(--gqrc-accent-color, #9b59b6);
    border: 3px solid #181818;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
}

.gqrc-timeline-point:hover .gqrc-point-marker {
    width: 20px;
    height: 20px;
    background: var(--gqrc-primary-color, #006aff);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.2);
}

.gqrc-point-content {
    position: absolute;
    top: 30px;
    min-width: 180px;
    max-width: 200px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.gqrc-timeline-point:hover .gqrc-point-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gqrc-point-time {
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gqrc-primary-color, #006aff);
    margin-bottom: 6px;
}

.gqrc-point-desc {
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.gqrc-timeline-point:hover .gqrc-point-desc {
    color: #fff;
}

/* =====================================================
   Video Modal Details (Sidebar)
   ===================================================== */
.gqrc-video-modal .gqrc-modal-details {
    overflow-y: auto;
    max-height: calc(100vh - 160px);
    padding-right: 10px;
}

.gqrc-video-modal .gqrc-section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gqrc-primary-color, #006aff);
    text-transform: lowercase;
    font-weight: 600;
    font-family: "Arvo", serif;
}

.gqrc-video-modal .gqrc-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-family: "Arvo", serif;
}

/* Timeline List in Sidebar */
.gqrc-timeline {
    margin: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gqrc-timeline + .gqrc-section-title,
.gqrc-section-title + .gqrc-timeline {
    margin-top: 30px;
}

.gqrc-timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.gqrc-timeline-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gqrc-accent-color, #9b59b6);
}

.gqrc-timeline-time {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    color: var(--gqrc-primary-color, #006aff);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: monospace;
}

.gqrc-timeline-time i {
    color: var(--gqrc-accent-color, #9b59b6);
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.gqrc-timeline-item:hover .gqrc-timeline-time i {
    opacity: 1;
    transform: scale(1.1);
}

.gqrc-timeline-desc {
    flex: 1;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: "Arvo", serif;
}

.gqrc-timeline-item:hover .gqrc-timeline-desc {
    color: #fff;
}

/* Compact Meta Grid */
.gqrc-meta-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.gqrc-meta-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: "Arvo", serif;
}

.gqrc-meta-compact i {
    color: var(--gqrc-accent-color, #9b59b6);
    font-size: 1rem;
}

.gqrc-meta-compact span {
    color: #e0e0e0;
}

/* =====================================================
   Video Feed Specific
   ===================================================== */
.gqrc-video-feed .gqrc-cards-row {
    overflow-y: hidden;
    padding: 50px 0 0 0;
    margin: -50px 0 0 0;
}

.gqrc-video-feed .gqrc-scroll-left {
    left: -45px;
}

.gqrc-video-feed .gqrc-scroll-right {
    right: -45px;
}

/* =====================================================
   Single Video Post View
   ===================================================== */
.gqrc-single-video #secondary,
.gqrc-single-video .sidebar,
.gqrc-single-video aside,
.gqrc-single-video .page-header,
.gqrc-single-video #comments {
    display: none !important;
}

/* Single video post layout */
.gqrc-single-post-view.gqrc-video-modal .gqrc-modal-details {
    flex: 0 0 35% !important;
    width: 35% !important;
    overflow: visible !important;
    padding-right: 40px !important;
    max-height: none !important;
    overflow-y: visible !important;
}

.gqrc-single-post-view.gqrc-video-modal .gqrc-modal-left {
    flex: 0 0 65% !important;
    width: 65% !important;
}

/* =====================================================
   Responsive - Video Specific
   ===================================================== */
@media (max-width: 1200px) {
    .gqrc-videos-overview .gqrc-review-card {
        flex: 0 0 250px;
        width: 250px;
    }

    .gqrc-videos-overview .gqrc-review-card:hover {
        transform: scale(1.015);
    }

    .gqrc-video-feed .gqrc-review-card {
        flex: 0 0 250px;
        width: 250px;
    }

    .gqrc-video-feed .gqrc-review-card:hover {
        transform: scale(1.015);
    }
}

@media (max-width: 900px) {
    .gqrc-videos-overview .gqrc-review-card,
    .gqrc-video-feed .gqrc-review-card {
        flex: 0 0 220px;
        width: 220px;
    }

    .gqrc-videos-overview .gqrc-review-card:hover,
    .gqrc-video-feed .gqrc-review-card:hover {
        transform: scale(1.01);
    }

    .gqrc-video-modal .gqrc-modal-content-wrapper {
        flex-direction: column;
    }

    .gqrc-modal-left,
    .gqrc-modal-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gqrc-video-modal .gqrc-modal-details {
        position: static;
    }

    .gqrc-timeline-point {
        padding: 0 10px;
    }

    .gqrc-point-content {
        min-width: 150px;
        max-width: 170px;
    }
}

@media (max-width: 600px) {
    .gqrc-videos-overview .gqrc-review-card,
    .gqrc-video-feed .gqrc-review-card {
        flex: 0 0 180px;
        width: 180px;
    }

    .gqrc-videos-overview .gqrc-review-card:hover,
    .gqrc-video-feed .gqrc-review-card:hover {
        transform: scale(1.005);
    }

    .gqrc-card-btn-play-large {
        width: 35px;
        height: 35px;
    }

    .gqrc-card-btn-add,
    .gqrc-card-btn-like,
    .gqrc-card-btn-expand {
        width: 28px;
        height: 28px;
    }

    .gqrc-video-meta {
        font-size: 0.85rem;
    }

    .gqrc-youtube-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/**
 * GOQUEER Blocks - Styles
 *
 * VHS/Glitch Effects and Block Components
 */

/* ========== CSS VARIABLES ========== */
:root {
    --gq-primary: #6962FE;
    --gq-green: #61FF70;
    --gq-green-dark: #52EE61;
    --gq-pink: #FF1493;
    --gq-cyan: #00FFFF;
    --gq-purple: #9D00FF;
    --gq-glow-intensity: 0.4;
}

/* ========== TYPOGRAPHY ========== */
.gq-heading {
    font-family: 'Arvo', serif;
}

.gq-text-white {
    color: white;
}

.gq-text-green {
    color: var(--gq-green);
    text-shadow: 0 0 10px rgba(97, 255, 112, 0.6);
}

.gq-text-gray {
    color: rgba(255, 255, 255, 0.9);
}

.gq-text-center {
    text-align: center;
}

.gq-rainbow {
    background: linear-gradient(90deg, #FF0000 0%, #FF7F00 16%, #FFFF00 33%, #00FF00 50%, #0000FF 66%, #8B00FF 83%, #FF0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== GLITCH EFFECTS ========== */

/* Standard Glitch (quick effect at start, then 30s pause) */
.glitch {
    display: inline-block;
    animation: distortion-1 30s infinite;
}

@keyframes distortion-1 {
    0%, 3%, 100% {
        transform: skew(0deg) scaleX(1) scaleY(1);
        filter: blur(0);
    }
    0.5% {
        transform: skew(-5deg) scaleX(1.1) scaleY(0.95);
        filter: blur(1px);
    }
    1% {
        transform: skew(5deg) scaleX(0.9) scaleY(1.1);
        filter: blur(0);
    }
    1.5% {
        transform: skew(-3deg) scaleX(1.05) scaleY(0.98);
        filter: blur(1px);
    }
    2% {
        transform: skew(0deg) scaleX(1) scaleY(1);
        filter: blur(0);
    }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.glitch::before {
    color: var(--gq-green);
    animation: distortion-layer-1 30s infinite;
}

.glitch::after {
    color: var(--gq-pink);
    animation: distortion-layer-2 30s infinite 0.05s;
}

@keyframes distortion-layer-1 {
    0%, 3%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0) scaleY(1);
        opacity: 0;
    }
    0.5% {
        clip-path: inset(25% 0 35% 0);
        transform: translateX(-15px) scaleY(1.3);
        opacity: 0.8;
    }
    1% {
        clip-path: inset(60% 0 10% 0);
        transform: translateX(10px) scaleY(0.7);
        opacity: 0.9;
    }
    1.5% {
        clip-path: inset(40% 0 45% 0);
        transform: translateX(-8px) scaleY(1.1);
        opacity: 0.7;
    }
}

@keyframes distortion-layer-2 {
    0%, 3%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0) scaleY(1);
        opacity: 0;
    }
    0.5% {
        clip-path: inset(15% 0 55% 0);
        transform: translateX(12px) scaleY(0.8);
        opacity: 0.7;
    }
    1% {
        clip-path: inset(70% 0 5% 0);
        transform: translateX(-14px) scaleY(1.4);
        opacity: 0.8;
    }
    1.5% {
        clip-path: inset(35% 0 50% 0);
        transform: translateX(9px) scaleY(0.9);
        opacity: 0.6;
    }
}

/* Fast Glitch */
.glitch-fast {
    position: relative;
    display: inline-block;
    animation: distortion-2 2s infinite;
}

@keyframes distortion-2 {
    0%, 85%, 100% {
        transform: skew(0deg) scaleX(1);
    }
    87% {
        transform: skew(-8deg) scaleX(1.15);
    }
    89% {
        transform: skew(8deg) scaleX(0.85);
    }
    91% {
        transform: skew(-4deg) scaleX(1.08);
    }
}

.glitch-fast::before,
.glitch-fast::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.glitch-fast::before {
    color: var(--gq-cyan);
    animation: distortion-fast-1 2s infinite;
}

.glitch-fast::after {
    color: #FFFF00;
    animation: distortion-fast-2 2s infinite 0.1s;
}

@keyframes distortion-fast-1 {
    0%, 85%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateY(0);
        opacity: 0;
    }
    87% {
        clip-path: inset(20% 0 60% 0);
        transform: translateY(-8px);
        opacity: 0.7;
    }
    89% {
        clip-path: inset(55% 0 25% 0);
        transform: translateY(8px);
        opacity: 0.8;
    }
}

@keyframes distortion-fast-2 {
    0%, 85%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateY(0);
        opacity: 0;
    }
    87% {
        clip-path: inset(30% 0 45% 0);
        transform: translateY(10px);
        opacity: 0.6;
    }
    89% {
        clip-path: inset(65% 0 15% 0);
        transform: translateY(-10px);
        opacity: 0.7;
    }
}

/* Slow Glitch - quick effect at start, then 64s pause */
.glitch-slow {
    position: relative;
    display: inline-block;
    animation: distortion-3 64s infinite;
}

@keyframes distortion-3 {
    0%, 2.5%, 100% {
        transform: skew(0deg) scaleY(1);
        filter: blur(0);
    }
    0.4% {
        transform: skew(-6deg) scaleY(1.2);
        filter: blur(2px);
    }
    0.8% {
        transform: skew(6deg) scaleY(0.8);
        filter: blur(1px);
    }
    1.2% {
        transform: skew(-3deg) scaleY(1.1);
        filter: blur(2px);
    }
    1.6% {
        transform: skew(0deg) scaleY(1);
        filter: blur(0);
    }
}

.glitch-slow::before,
.glitch-slow::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.glitch-slow::before {
    color: var(--gq-green);
    animation: distortion-slow-1 64s infinite;
}

.glitch-slow::after {
    color: var(--gq-purple);
    animation: distortion-slow-2 64s infinite 0.05s;
}

/* 64s total, quick effect at start */
@keyframes distortion-slow-1 {
    0%, 2.5%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0) scaleX(1);
        opacity: 0;
    }
    0.4% {
        clip-path: inset(10% 0 70% 0);
        transform: translateX(-20px) scaleX(1.3);
        opacity: 0.9;
    }
    0.8% {
        clip-path: inset(50% 0 30% 0);
        transform: translateX(15px) scaleX(0.7);
        opacity: 0.8;
    }
    1.2% {
        clip-path: inset(25% 0 55% 0);
        transform: translateX(-10px) scaleX(1.15);
        opacity: 0.7;
    }
}

@keyframes distortion-slow-2 {
    0%, 2.5%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0) scaleX(1);
        opacity: 0;
    }
    0.4% {
        clip-path: inset(35% 0 45% 0);
        transform: translateX(18px) scaleX(0.8);
        opacity: 0.8;
    }
    0.8% {
        clip-path: inset(65% 0 15% 0);
        transform: translateX(-22px) scaleX(1.4);
        opacity: 0.9;
    }
    1.2% {
        clip-path: inset(40% 0 40% 0);
        transform: translateX(12px) scaleX(1.1);
        opacity: 0.7;
    }
}

/* Subtle Glitch */
.glitch-subtle {
    position: relative;
    display: inline-block;
    animation: distortion-4 5s infinite;
}

@keyframes distortion-4 {
    0%, 96%, 100% {
        transform: skew(0deg);
    }
    97% {
        transform: skew(-2deg) scaleX(1.03);
    }
    98% {
        transform: skew(2deg) scaleX(0.97);
    }
}

.glitch-subtle::before,
.glitch-subtle::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

.glitch-subtle::before {
    color: var(--gq-pink);
    animation: distortion-subtle-1 5s infinite;
}

.glitch-subtle::after {
    color: var(--gq-cyan);
    animation: distortion-subtle-2 5s infinite 0.3s;
}

@keyframes distortion-subtle-1 {
    0%, 96%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0);
        opacity: 0;
    }
    97% {
        clip-path: inset(30% 0 50% 0);
        transform: translateX(-6px);
        opacity: 0.5;
    }
}

@keyframes distortion-subtle-2 {
    0%, 96%, 100% {
        clip-path: inset(0 0 100% 0);
        transform: translateX(0);
        opacity: 0;
    }
    97.5% {
        clip-path: inset(45% 0 35% 0);
        transform: translateX(6px);
        opacity: 0.4;
    }
}

/* ========== GLASS CARD ========== */
.gq-glass-card {
    background: rgba(105, 98, 254, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(97, 255, 112, calc(var(--gq-glow-intensity)));
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(97, 255, 112, calc(var(--gq-glow-intensity) * 0.375));
    transition: all 0.3s;
}

.gq-glass-card--hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 48px rgba(97, 255, 112, calc(var(--gq-glow-intensity) * 1.5)), inset 0 0 30px rgba(97, 255, 112, calc(var(--gq-glow-intensity) * 0.5));
    border-color: rgba(97, 255, 112, calc(var(--gq-glow-intensity) * 1.5));
    background: rgba(105, 98, 254, 0.9);
}

/* ========== BUTTONS ========== */
.gq-btn {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gq-btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gq-primary);
    border: 2px solid rgba(97, 255, 112, 0.5);
}

.gq-btn-primary:hover {
    background: var(--gq-green);
    color: var(--gq-primary);
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 30px rgba(97, 255, 112, 0.5);
}

.gq-btn-secondary {
    background: var(--gq-green);
    color: var(--gq-primary);
    border: 2px solid rgba(97, 255, 112, 0.8);
}

.gq-btn-secondary:hover {
    background: var(--gq-green-dark);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 30px rgba(97, 255, 112, 0.6);
}

/* ========== GRID LAYOUTS ========== */
.gq-grid {
    display: grid;
    gap: 25px;
}

.gq-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gq-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gq-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== VIDEO FEED SECTION ========== */
.video-feed-section .video-feed-title {
    padding: 0 40px;
}

.video-feed-section .video-feed-grid {
    padding: 0 40px;
}

.video-feed-section .video-feed-slider {
    padding: 0 40px;
}

/* ========== HERO SECTION ========== */
.gq-hero {
    padding: 60px 0;
}

.gq-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gq-hero__badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.gq-hero__title {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
}

.gq-hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.gq-hero__buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.gq-hero__stats {
    display: flex;
    gap: 20px;
}

.gq-hero__card {
    padding: 40px;
    text-align: center;
}

.gq-hero__card-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.gq-hero__card-date {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== STAT BOX ========== */
.gq-stat-box {
    background: rgba(105, 98, 254, 0.7);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(97, 255, 112, 0.6);
    box-shadow: 0 4px 20px rgba(97, 255, 112, 0.3);
    transition: all 0.3s;
}

.gq-stat-box:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 30px rgba(97, 255, 112, 0.5);
    background: rgba(105, 98, 254, 0.85);
}

.gq-stat-box__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(97, 255, 112, 0.8);
}

.gq-stat-box__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ========== FEATURE CARD ========== */
.gq-feature-card {
    background: rgba(105, 98, 254, 0.75);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 35px;
    text-align: center;
    border: 2px solid rgba(97, 255, 112, 0.5);
    box-shadow: 0 8px 32px rgba(97, 255, 112, 0.3);
    transition: all 0.4s;
}

.gq-feature-card:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.05);
    box-shadow: 0 16px 48px rgba(97, 255, 112, 0.5), 0 0 50px rgba(97, 255, 112, 0.4);
    border-color: rgba(97, 255, 112, 0.8);
    background: rgba(105, 98, 254, 0.85);
}

.gq-feature-card__icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(97, 255, 112, 0.6));
}

.gq-feature-card__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(97, 255, 112, 0.8);
}

.gq-feature-card__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ========== EPISODE CARD ========== */
.gq-episode-card {
    background: rgba(105, 98, 254, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(97, 255, 112, 0.5);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(97, 255, 112, 0.3);
    transition: all 0.4s;
}

.gq-episode-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(97, 255, 112, 0.5), 0 0 60px rgba(97, 255, 112, 0.3);
    border-color: rgba(97, 255, 112, 0.8);
}

.gq-episode-card__thumbnail {
    background: var(--gq-green);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    filter: drop-shadow(0 4px 15px rgba(97, 255, 112, 0.3));
}

.gq-episode-card__icon {
    font-size: 4rem;
}

.gq-episode-card__views {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gq-primary);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gq-episode-card__content {
    padding: 25px;
    background: rgba(105, 98, 254, 0.55);
}

.gq-episode-card__date {
    color: var(--gq-green);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(97, 255, 112, 0.6);
}

.gq-episode-card__title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gq-episode-card__button {
    width: 100%;
    text-align: center;
}

/* ========== CONTACT ITEM ========== */
.gq-contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.gq-contact-item:hover {
    transform: translateX(5px);
}

.gq-contact-item__icon {
    background: var(--gq-green);
    color: var(--gq-primary);
    padding: 12px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.gq-contact-item__title {
    font-weight: 700;
    color: white;
}

.gq-contact-item__text {
    color: rgba(255, 255, 255, 0.9);
}

/* ========== TEAM MEMBER ========== */
.gq-team-member {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--gq-primary);
    border-radius: 8px;
    transition: transform 0.3s;
}

.gq-team-member:hover {
    transform: translateX(5px);
}

.gq-team-member__name {
    font-weight: 700;
    color: #333;
}

.gq-team-member__role {
    color: var(--gq-primary);
    font-size: 0.95rem;
}

.gq-team-member__pronouns {
    color: #999;
    font-size: 0.85rem;
}

/* ========== CTA SECTION ========== */
.gq-cta-section__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gq-cta-section__title {
    margin-bottom: 20px;
}

.gq-cta-section__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .gq-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gq-hero__title {
        font-size: 3.5rem;
    }

    .gq-hero__stats {
        flex-wrap: wrap;
    }

    .gq-hero__buttons {
        flex-direction: column;
    }
}

/* ========== SECTION & CONTAINER ========== */
.gq-section {
    padding: 60px 0;
}

.gq-section--full {
    width: 100%;
    max-width: none;
}

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

/* ========== TEXT ELEMENT ========== */
.gq-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 1em 0;
}

/* ========== IMAGE ELEMENT ========== */
.gq-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.gq-image-placeholder {
    background: rgba(105, 98, 254, 0.5);
    border: 2px dashed rgba(97, 255, 112, 0.4);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
}

/* ========== SPACER ELEMENT ========== */
.gq-spacer {
    display: block;
    width: 100%;
}

/* ========== PAGE SECTION ========== */
.page-section--full {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.page-section--full > * {
    max-width: none;
}

/* ========== FULL WIDTH ELEMENT ========== */
.element-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.element-full-width > * {
    width: 100%;
}

/* ========== EDITOR STYLES ========== */
.editor-styles-wrapper .gq-glass-card,
.editor-styles-wrapper .gq-feature-card,
.editor-styles-wrapper .gq-episode-card,
.editor-styles-wrapper .gq-stat-box {
    background: rgba(105, 98, 254, 0.85);
}

/* ========== RESPONSIVE VISIBILITY ========== */
/* Hide on specific devices */
@media (min-width: 1025px) {
    .gqrc-hide-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gqrc-hide-tablet {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .gqrc-hide-mobile {
        display: none !important;
    }
}

/* ========== ENTRANCE ANIMATIONS ========== */
.gqrc-animate {
    animation-fill-mode: both;
}

.gqrc-animate--fadeIn {
    animation-name: gqrc-fadeIn;
    animation-duration: 1s;
}

.gqrc-animate--fadeInUp {
    animation-name: gqrc-fadeInUp;
    animation-duration: 1s;
}

.gqrc-animate--fadeInDown {
    animation-name: gqrc-fadeInDown;
    animation-duration: 1s;
}

.gqrc-animate--fadeInLeft {
    animation-name: gqrc-fadeInLeft;
    animation-duration: 1s;
}

.gqrc-animate--fadeInRight {
    animation-name: gqrc-fadeInRight;
    animation-duration: 1s;
}

.gqrc-animate--zoomIn {
    animation-name: gqrc-zoomIn;
    animation-duration: 1s;
}

.gqrc-animate--zoomInUp {
    animation-name: gqrc-zoomInUp;
    animation-duration: 1s;
}

.gqrc-animate--zoomInDown {
    animation-name: gqrc-zoomInDown;
    animation-duration: 1s;
}

.gqrc-animate--slideInUp {
    animation-name: gqrc-slideInUp;
    animation-duration: 0.8s;
}

.gqrc-animate--slideInDown {
    animation-name: gqrc-slideInDown;
    animation-duration: 0.8s;
}

.gqrc-animate--slideInLeft {
    animation-name: gqrc-slideInLeft;
    animation-duration: 0.8s;
}

.gqrc-animate--slideInRight {
    animation-name: gqrc-slideInRight;
    animation-duration: 0.8s;
}

.gqrc-animate--bounceIn {
    animation-name: gqrc-bounceIn;
    animation-duration: 1s;
}

.gqrc-animate--pulse {
    animation-name: gqrc-pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.gqrc-animate--shake {
    animation-name: gqrc-shake;
    animation-duration: 0.5s;
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes gqrc-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gqrc-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gqrc-fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gqrc-fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes gqrc-fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes gqrc-zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gqrc-zoomInUp {
    from { opacity: 0; transform: scale(0.8) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gqrc-zoomInDown {
    from { opacity: 0; transform: scale(0.8) translateY(-30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes gqrc-slideInUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes gqrc-slideInDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes gqrc-slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes gqrc-slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes gqrc-bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes gqrc-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gqrc-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ========== ELEMENT BASE STYLES ========== */
.gqrc-text {
    line-height: 1.7;
}

.gqrc-image {
    margin: 0;
}

.gqrc-image__caption {
    text-align: center;
}

.gqrc-divider {
    padding: 10px 0;
}

.gqrc-video {
    width: 100%;
}

.gqrc-social-icons a:hover {
    opacity: 0.7;
}

/* ========== COUNTDOWN ELEMENT ========== */
.goqueer-countdown {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(97, 255, 112, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
}

.goqueer-countdown-inline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: baseline;
}

.goqueer-countdown-days,
.goqueer-countdown-hours,
.goqueer-countdown-minutes,
.goqueer-countdown-seconds {
    font-size: 4rem !important;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    display: inline-block !important;
    width: 2ch !important;
    min-width: 2ch !important;
    text-align: center !important;
    font-variant-numeric: tabular-nums;
    position: relative;
}

/* Countdown Glitch Effect on number change */
.goqueer-countdown-days.glitch-flash,
.goqueer-countdown-hours.glitch-flash,
.goqueer-countdown-minutes.glitch-flash,
.goqueer-countdown-seconds.glitch-flash {
    animation: countdown-glitch 0.15s ease-out;
}

@keyframes countdown-glitch {
    0% {
        transform: skew(0deg);
        text-shadow: none;
    }
    20% {
        transform: skew(-5deg) translateX(-2px);
        text-shadow:
            -2px 0 #FF1493,
            2px 0 #00FFFF;
        filter: brightness(1.5);
    }
    40% {
        transform: skew(3deg) translateX(2px);
        text-shadow:
            2px 0 #FF1493,
            -2px 0 #00FFFF;
    }
    60% {
        transform: skew(-2deg);
        text-shadow:
            -1px 0 #FF1493,
            1px 0 #00FFFF;
    }
    80% {
        transform: skew(1deg);
        text-shadow: none;
    }
    100% {
        transform: skew(0deg);
        text-shadow: none;
    }
}

/* Responsive countdown */
@media (max-width: 768px) {
    .goqueer-countdown {
        padding: 25px 30px;
    }

    .goqueer-countdown-inline {
        gap: 20px;
    }

    .goqueer-countdown-days,
    .goqueer-countdown-hours,
    .goqueer-countdown-minutes,
    .goqueer-countdown-seconds {
        font-size: 3rem;
        min-width: 2ch;
    }
}

@media (max-width: 480px) {
    .goqueer-countdown {
        padding: 20px;
        border-radius: 15px;
    }

    .goqueer-countdown-inline {
        gap: 12px;
    }

    .goqueer-countdown-days,
    .goqueer-countdown-hours,
    .goqueer-countdown-minutes,
    .goqueer-countdown-seconds {
        font-size: 2rem;
        min-width: 2ch;
    }
}
