.waw-poke-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.waw-poke-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #e3350d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top 3 Grid */
.waw-poke-top3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.waw-poke-top-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.waw-poke-top-card:hover {
    transform: translateY(-5px);
}

.waw-poke-top-card.first-place {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.waw-poke-top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e3350d;
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 2;
}

.first-place .waw-poke-top-badge {
    background: #ffd700;
    color: #333;
}

.waw-poke-top-screen {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
}

.waw-poke-top-info {
    padding: 20px;
    text-align: center;
}

.waw-poke-top-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.waw-poke-rating {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 10px;
}

.waw-poke-top-logo-small {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
    margin: 0 auto 15px auto;
    display: block;
}

.waw-poke-btn {
    display: inline-block;
    background: transparent;
    color: #3b4cca;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #3b4cca;
    transition: all 0.2s;
}

.waw-poke-btn:hover {
    background: #3b4cca;
    color: white;
}

/* Controls */
.waw-poke-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.waw-poke-filters, .waw-poke-sort {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

#waw-poke-filter-tags {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    outline: none;
    width: 200px;
}

.waw-poke-filters label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.waw-poke-controls select {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
    outline: none;
}

/* List */
.waw-poke-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waw-poke-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.waw-poke-card-header {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 20px 20px;
    gap: 15px;
}

.waw-poke-card-header a {
    display: block;
    text-align: center;
}

.waw-poke-card-logo {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.2s;
}

.waw-poke-card-header a:hover .waw-poke-card-logo {
    transform: scale(1.05);
}

.waw-poke-card-header .waw-poke-card-meta {
    justify-content: center;
    margin-bottom: 0;
    gap: 8px;
}

.waw-poke-stars {
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #f59e0b;
}

.waw-poke-card-rating-under-logo {
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #f59e0b;
    margin-top: 10px;
}

.waw-poke-recommended-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.waw-poke-not-recommended-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #555;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
}

.waw-poke-card-body {
    padding: 25px;
    flex-grow: 1;
}

.waw-poke-card-title {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #222;
}

.waw-poke-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.waw-poke-card-title a:hover {
    color: #3b4cca;
}

.waw-poke-top-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.waw-poke-top-info h3 a:hover {
    color: #3b4cca;
}

.waw-poke-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.waw-poke-tag {
    background: #f0f2f5;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.waw-poke-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.waw-poke-card-meta span {
    background: #f0f2f5;
    padding: 4px 10px;
    border-radius: 6px;
}

.waw-poke-rating-small {
    font-weight: bold;
    color: #f59e0b;
    background: #fffbeb !important;
}

.waw-poke-card-desc {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.waw-poke-card-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.waw-poke-link-btn {
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    background: #e4e6eb;
    color: #333;
    transition: all 0.2s;
}

.waw-poke-link-btn:hover {
    background: #d8dadf;
}

.waw-poke-link-btn.primary {
    background: #3b4cca;
    color: white;
}

.waw-poke-link-btn.primary:hover {
    background: #2a3899;
}

/* Screens Gallery */
.waw-poke-screens-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.waw-poke-screen-thumb {
    width: 160px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: transform 0.2s, box-shadow 0.2s;
}

.waw-poke-screen-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Lightbox */
.waw-poke-lightbox {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.waw-poke-lightbox.show {
    visibility: visible;
    opacity: 1;
}

.waw-poke-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.waw-poke-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 100000;
}

.waw-poke-lightbox-close:hover {
    color: #ccc;
}

/* DLC Section */
.waw-poke-dlc-section {
    background: #f8f9fa;
    border-left: 4px solid #9c27b0;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
}

.waw-poke-dlc-section h4 {
    margin: 0 0 10px 0;
    color: #9c27b0;
    font-size: 1rem;
}

.waw-poke-dlc-content {
    display: flex;
    gap: 15px;
}

.waw-poke-dlc-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 4px;
    padding: 5px;
}

.waw-poke-dlc-info p {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .waw-poke-card {
        flex-direction: column;
    }
    .waw-poke-card-header {
        width: 100%;
        height: 200px;
    }
}
