.waw-fakes-container {
    font-family: inherit;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.waw-fakes-controls {
    display: flex;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.waw-fakes-search-input {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

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

@media (max-width: 1200px) {
    .waw-fakes-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .waw-fakes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .waw-fakes-list {
        grid-template-columns: 1fr;
    }
}

.waw-fakes-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    position: relative;
}

.waw-fakes-image-wrapper {
    padding: 15px;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.waw-fakes-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.2s, opacity 0.2s;
}

.waw-fakes-image-hover-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: calc(100% - 30px);
    max-height: 250px;
    object-fit: contain;
    opacity: 0;
    transition: transform 0.2s, opacity 0.2s;
    pointer-events: none;
}

.waw-fakes-image-wrapper.has-hover:hover .waw-fakes-image {
    opacity: 0;
    transform: scale(0.95);
}

.waw-fakes-image-wrapper.has-hover:hover .waw-fakes-image-hover-layer {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.waw-fakes-image-label {
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    padding: 8px 10px;
    text-transform: uppercase;
    transition: color 0.2s;
    pointer-events: none;
    z-index: 10;
    background: transparent;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.8), 0px 0px 4px rgba(255, 255, 255, 1);
}

.waw-fakes-image-label .label-fake {
    color: #f44336;
    display: block;
}

.waw-fakes-image-label .label-original {
    display: none;
    color: #4CAF50;
}

.waw-fakes-image-wrapper.has-hover:hover .waw-fakes-image-label {
    background: transparent;
}

.waw-fakes-image-wrapper.has-hover:hover .waw-fakes-image-label .label-fake {
    display: none;
}

.waw-fakes-image-wrapper.has-hover:hover .waw-fakes-image-label .label-original {
    display: block;
}

.waw-fakes-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.waw-fakes-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #222;
    text-align: center;
}

.waw-fakes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}

.waw-fakes-tag {
    background: #e0e0e0;
    color: #333;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

.waw-fakes-more-content {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #444;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.waw-fakes-detail-section {
    margin-bottom: 10px;
}

.waw-fakes-detail-section strong {
    display: block;
    color: #222;
    margin-bottom: 3px;
}

.waw-fakes-detail-section p {
    margin: 0;
    line-height: 1.4;
}

.waw-fakes-toggle-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    margin-top: auto;
    transition: background 0.2s;
    width: 100%;
}

.waw-fakes-toggle-btn:hover {
    background: #d32f2f;
}

.waw-fakes-card-footer {
    padding: 10px 15px;
    background: #fafafa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.waw-fakes-type-pill {
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Pagination */
.waw-fakes-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.waw-fakes-page-btn {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
}

.waw-fakes-page-btn:hover {
    background: #f0f2f5;
}

.waw-fakes-page-btn.active {
    background: #f44336;
    color: #fff;
    border-color: #f44336;
}

/* Lightbox */
#waw-fakes-lightbox {
    z-index: 100010; /* Ensure it is above the quiz modal */
}

.waw-fakes-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.waw-fakes-lightbox-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 5%;
}

.waw-fakes-lightbox-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 45%;
}

.waw-fakes-lightbox-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    animation-name: wawZoom;
    animation-duration: 0.3s;
}

#waw-quiz-results-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#waw-quiz-results-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

#waw-quiz-results-list li.correct {
    border-left: 5px solid #4CAF50;
    background: #f9fdf9;
}

#waw-quiz-results-list li.incorrect {
    border-left: 5px solid #f44336;
    background: #fff8f8;
}

@keyframes wawZoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.waw-fakes-lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.waw-fakes-lightbox-close:hover,
.waw-fakes-lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
