.cvwp-tournaments-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 20px 0;
    background: #0f1419;
    color: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

.cvwp-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cvwp-tournament-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #242b3d 100%);
    border: 1px solid #2d3748;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cvwp-tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.cvwp-tournament-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
    position: relative;
    overflow: hidden;
}

.cvwp-tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cvwp-tournament-card:hover .cvwp-tournament-image img {
    transform: scale(1.1);
}

.cvwp-tournament-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
    font-size: 3rem;
    color: #0f1419;
    font-weight: 700;
}

.cvwp-tournament-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 20, 25, 0.8) 100%);
    z-index: 1;
}

.cvwp-tournament-content {
    padding: 20px;
    position: relative;
}

.cvwp-tournament-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #8b98a5;
}

.cvwp-tournament-round {
    font-weight: 600;
    color: #00d4ff;
}

.cvwp-tournament-time {
    color: #ffd700;
}

.cvwp-tournament-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    margin: 8px 0 16px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Playfair Display", Sans-serif;
}

.cvwp-tournament-participants {
    margin-bottom: 16px;
}

.cvwp-tournament-players {
    font-size: 0.9rem;
    color: #b8c5d1;
    line-height: 1.4;
}

.cvwp-tournament-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #2d3748;
}

.cvwp-tournament-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #8b98a5;
}

.cvwp-tournament-stat-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.cvwp-tournament-categories {
    margin: 12px 0;
}

.cvwp-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cvwp-category-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.cvwp-tournaments-header {
    text-align: center;
    margin-bottom: 30px;
}

.cvwp-tournaments-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #c1a98f;
    background-clip: text;
    margin: 0 0 10px 0;
}

.cvwp-tournaments-subtitle {
    font-size: 1.1rem;
    color: #8b98a5;
    margin-bottom: 20px;
}

.cvwp-tournaments-count {
    background: #c1a98f;
    color: #0f1419;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-block;
    font-family: "Playfair Display", Sans-serif;
}

/* Efectos especiales */
.cvwp-tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.cvwp-tournament-card:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .cvwp-tournaments-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .cvwp-tournament-image {
        height: 150px;
    }
    
    .cvwp-tournament-title {
        font-size: 1.1rem;
    }
    
    .cvwp-tournament-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .cvwp-tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .cvwp-tournaments-title {
        font-size: 2rem;
    }
}

.cvwp-no-tournaments {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1f2e 0%, #242b3d 100%);
    border-radius: 16px;
    color: #8b98a5;
    border: 1px solid #2d3748;
}

.cvwp-no-tournaments p {
    font-size: 1.1rem;
    margin: 0;
}